www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,42 @@
|
|||
package it.acxent.face.fr;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class FaceCR extends CRAdapter {
|
||||
private long id_face;
|
||||
|
||||
private String md5;
|
||||
|
||||
private String label;
|
||||
|
||||
public FaceCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public FaceCR() {}
|
||||
|
||||
public void setId_face(long newId_face) {
|
||||
this.id_face = newId_face;
|
||||
}
|
||||
|
||||
public void setMd5(String newMd5) {
|
||||
this.md5 = newMd5;
|
||||
}
|
||||
|
||||
public void setLabel(String newLabel) {
|
||||
this.label = newLabel;
|
||||
}
|
||||
|
||||
public long getId_face() {
|
||||
return this.id_face;
|
||||
}
|
||||
|
||||
public String getMd5() {
|
||||
return (this.md5 == null) ? "" : this.md5.trim();
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return (this.label == null) ? "" : this.label.trim();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue