www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,32 @@
package it.acxent.face;
import it.acxent.db.ApplParmFull;
import it.acxent.db.CRAdapter;
public class FaceRemotaCR extends CRAdapter {
private long id_faceRemota;
private String md5;
public FaceRemotaCR(ApplParmFull newApplParmFull) {
super(newApplParmFull);
}
public FaceRemotaCR() {}
public void setId_faceRemota(long newId_faceRemota) {
this.id_faceRemota = newId_faceRemota;
}
public void setMd5(String newMd5) {
this.md5 = newMd5;
}
public long getId_faceRemota() {
return this.id_faceRemota;
}
public String getMd5() {
return (this.md5 == null) ? "" : this.md5.trim();
}
}