42 lines
788 B
Java
42 lines
788 B
Java
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();
|
|
}
|
|
}
|