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,43 @@
package it.acxent.face;
import it.acxent.db.ApplParmFull;
import it.acxent.db.CRAdapter;
import java.sql.Timestamp;
public class SelfieCR extends CRAdapter {
private long id_selfie;
private String md5;
private Timestamp tsCreation;
public SelfieCR(ApplParmFull newApplParmFull) {
super(newApplParmFull);
}
public SelfieCR() {}
public void setId_selfie(long newId_selfie) {
this.id_selfie = newId_selfie;
}
public void setMd5(String newMd5) {
this.md5 = newMd5;
}
public void setTsCreation(Timestamp newTsCreation) {
this.tsCreation = newTsCreation;
}
public long getId_selfie() {
return this.id_selfie;
}
public String getMd5() {
return (this.md5 == null) ? "" : this.md5.trim();
}
public Timestamp getTsCreation() {
return this.tsCreation;
}
}