32 lines
648 B
Java
32 lines
648 B
Java
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();
|
|
}
|
|
}
|