/** * Copy one ValueObject to another * * @param valueObjectDest to be updated * @param valueObjectSrc to copy values from */ public static ims.clinicaladmin.vo.WorkflowInternalReferralsVo copy( ims.clinicaladmin.vo.WorkflowInternalReferralsVo valueObjectDest, ims.clinicaladmin.vo.WorkflowInternalReferralsVo valueObjectSrc) { if (null == valueObjectSrc) { return valueObjectSrc; } valueObjectDest.setID_WorkflowInternalReferrals( valueObjectSrc.getID_WorkflowInternalReferrals()); valueObjectDest.setIsRIE(valueObjectSrc.getIsRIE()); // InpatientActions valueObjectDest.setInpatientActions(valueObjectSrc.getInpatientActions()); // OutpatientActions valueObjectDest.setOutpatientActions(valueObjectSrc.getOutpatientActions()); return valueObjectDest; }
/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.clinical.configuration.domain.objects.WorkflowInternalReferrals */ public static ims.clinicaladmin.vo.WorkflowInternalReferralsVo insert( DomainObjectMap map, ims.clinicaladmin.vo.WorkflowInternalReferralsVo valueObject, ims.clinical.configuration.domain.objects.WorkflowInternalReferrals domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_WorkflowInternalReferrals(domainObject.getId()); valueObject.setIsRIE(domainObject.getIsRIE()); // If this is a recordedInError record, and the domainObject // value isIncludeRecord has not been set, then we return null and // not the value object if (valueObject.getIsRIE() != null && valueObject.getIsRIE().booleanValue() == true && !domainObject.isIncludeRecord()) return null; // If this is not a recordedInError record, and the domainObject // value isIncludeRecord has been set, then we return null and // not the value object if ((valueObject.getIsRIE() == null || valueObject.getIsRIE().booleanValue() == false) && domainObject.isIncludeRecord()) return null; // InpatientActions valueObject.setInpatientActions( ims.clinicaladmin.vo.domain.WorkflowActionInternalReferalVoAssembler .createWorkflowActionInternalReferalVoCollectionFromWorkflowActionInternalRef( map, domainObject.getInpatientActions())); // OutpatientActions valueObject.setOutpatientActions( ims.clinicaladmin.vo.domain.WorkflowActionInternalReferalVoAssembler .createWorkflowActionInternalReferalVoCollectionFromWorkflowActionInternalRef( map, domainObject.getOutpatientActions())); return valueObject; }