/** * Create the ValueObject from the * ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param domainObject */ public static ims.ocrr.vo.InvestigationQuestionAnswerVo create( DomainObjectMap map, ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer domainObject) { if (null == domainObject) { return null; } // check if the domainObject already has a valueObject created for it ims.ocrr.vo.InvestigationQuestionAnswerVo valueObject = (ims.ocrr.vo.InvestigationQuestionAnswerVo) map.getValueObject(domainObject, ims.ocrr.vo.InvestigationQuestionAnswerVo.class); if (null == valueObject) { valueObject = new ims.ocrr.vo.InvestigationQuestionAnswerVo( domainObject.getId(), domainObject.getVersion()); map.addValueObject(domainObject, valueObject); valueObject = insert(map, valueObject, domainObject); } return valueObject; }
/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer */ public static ims.ocrr.vo.InvestigationQuestionAnswerVo insert( DomainObjectMap map, ims.ocrr.vo.InvestigationQuestionAnswerVo valueObject, ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_InvestigationQuestionAnswer(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; // Investigation valueObject.setInvestigation( ims.ocrr.vo.domain.InvestigationLiteVoAssembler.create( map, domainObject.getInvestigation())); // InvestigationQuestionAnswers valueObject.setInvestigationQuestionAnswers( ims.core.vo.domain.GeneralQuestionAnswerVoAssembler .createGeneralQuestionAnswerVoCollectionFromGeneralQuestionAnswer( map, domainObject.getInvestigationQuestionAnswers())); return valueObject; }