public PropertyChecklistVo get(PropertyChecklistRefVo record) { if(record == null || record.getID_PropertyChecklist() == null) { throw new DomainRuntimeException("Invalid record"); } DomainFactory factory = getDomainFactory(); PropertyChecklist domainRecord = (PropertyChecklist)factory.getDomainObject (PropertyChecklist.class, record.getID_PropertyChecklist().intValue()); return PropertyChecklistVoAssembler.create(domainRecord); }