package it.acxent.face.fr; import it.acxent.db.ApplParmFull; import it.acxent.db.CRAdapter; public class FaceFaceRecognizerCR extends CRAdapter { private static final long serialVersionUID = 3284264235323747301L; private long id_faceFaceRecognizer; private long id_faceRecognizer; private long id_face; private long id_faceLabel; private long flgLock; private FaceRecognizer faceRecognizer; private Face face; private Face faceLabel; public FaceFaceRecognizerCR(ApplParmFull newApplParmFull) { super(newApplParmFull); } public FaceFaceRecognizerCR() {} public void setId_faceFaceRecognizer(long newId_faceFaceRecognizer) { this.id_faceFaceRecognizer = newId_faceFaceRecognizer; } public void setId_faceRecognizer(long newId_faceRecognizer) { this.id_faceRecognizer = newId_faceRecognizer; setFaceRecognizer(null); } public void setId_face(long newId_face) { this.id_face = newId_face; setFace(null); } public void setId_faceLabel(long newId_faceLabel) { this.id_faceLabel = newId_faceLabel; setFaceLabel(null); } public void setFlgLock(long newFlgLock) { this.flgLock = newFlgLock; } public long getId_faceFaceRecognizer() { return this.id_faceFaceRecognizer; } public long getId_faceRecognizer() { return this.id_faceRecognizer; } public long getId_face() { return this.id_face; } public long getId_faceLabel() { return this.id_faceLabel; } public long getFlgLock() { return this.flgLock; } public void setFaceRecognizer(FaceRecognizer newFaceRecognizer) { this.faceRecognizer = newFaceRecognizer; } public FaceRecognizer getFaceRecognizer() { this.faceRecognizer = (FaceRecognizer)getSecondaryObject(this.faceRecognizer, FaceRecognizer.class, getId_faceRecognizer()); return this.faceRecognizer; } public void setFace(Face newFace) { this.face = newFace; } public Face getFace() { this.face = (Face)getSecondaryObject(this.face, Face.class, getId_face()); return this.face; } public void setFaceLabel(Face newFaceLabel) { this.faceLabel = newFaceLabel; } public Face getFaceLabel() { this.faceLabel = (Face)getSecondaryObject(this.faceLabel, Face.class, getId_faceLabel()); return this.faceLabel; } }