/** * Create the ValueObject collection to hold the set of DomainObjects. * * @param map - maps DomainObjects to created ValueObjects * @param domainObjectSet - Set of * ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer objects. */ public static ims.ocrr.vo.InvestigationQuestionAnswerVoCollection createInvestigationQuestionAnswerVoCollectionFromInvestigationQuestionAnswer( DomainObjectMap map, java.util.Set domainObjectSet) { ims.ocrr.vo.InvestigationQuestionAnswerVoCollection voList = new ims.ocrr.vo.InvestigationQuestionAnswerVoCollection(); if (null == domainObjectSet) { return voList; } int rieCount = 0; int activeCount = 0; java.util.Iterator iterator = domainObjectSet.iterator(); while (iterator.hasNext()) { ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer domainObject = (ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer) iterator.next(); ims.ocrr.vo.InvestigationQuestionAnswerVo vo = create(map, domainObject); if (vo != null) voList.add(vo); if (domainObject != null) { if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true) rieCount++; else activeCount++; } } voList.setRieCount(rieCount); voList.setActiveCount(activeCount); return voList; }
/** * Create the ValueObject collection to hold the list of DomainObjects. * * @param map - maps DomainObjects to created ValueObjects * @param domainObjectList - List of * ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer objects. */ public static ims.ocrr.vo.InvestigationQuestionAnswerVoCollection createInvestigationQuestionAnswerVoCollectionFromInvestigationQuestionAnswer( DomainObjectMap map, java.util.List domainObjectList) { ims.ocrr.vo.InvestigationQuestionAnswerVoCollection voList = new ims.ocrr.vo.InvestigationQuestionAnswerVoCollection(); if (null == domainObjectList) { return voList; } int rieCount = 0; int activeCount = 0; for (int i = 0; i < domainObjectList.size(); i++) { ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer domainObject = (ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer) domainObjectList.get(i); ims.ocrr.vo.InvestigationQuestionAnswerVo vo = create(map, domainObject); if (vo != null) voList.add(vo); if (domainObject != null) { if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true) rieCount++; else activeCount++; } } voList.setRieCount(rieCount); voList.setActiveCount(activeCount); return voList; }
/** * 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; }
public static ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer extractInvestigationQuestionAnswer( ims.domain.ILightweightDomainFactory domainFactory, ims.ocrr.vo.InvestigationQuestionAnswerVo valueObject, HashMap domMap) { if (null == valueObject) { return null; } Integer id = valueObject.getID_InvestigationQuestionAnswer(); ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer domainObject = null; if (null == id) { if (domMap.get(valueObject) != null) { return (ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer) domMap.get(valueObject); } // ims.ocrr.vo.InvestigationQuestionAnswerVo ID_InvestigationQuestionAnswer field is unknown domainObject = new ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer(); domMap.put(valueObject, domainObject); } else { String key = (valueObject.getClass().getName() + "__" + valueObject.getID_InvestigationQuestionAnswer()); if (domMap.get(key) != null) { return (ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer) domMap.get(key); } domainObject = (ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer) domainFactory.getDomainObject( ims.ocrr.orderingresults.domain.objects.InvestigationQuestionAnswer.class, id); // TODO: Not sure how this should be handled. Effectively it must be a staleobject exception, // but maybe should be handled as that further up. if (domainObject == null) return null; domMap.put(key, domainObject); } domainObject.setVersion(valueObject.getVersion_InvestigationQuestionAnswer()); // SaveAsRefVO - treated as a refVo in extract methods ims.ocrr.configuration.domain.objects.Investigation value1 = null; if (null != valueObject.getInvestigation()) { if (valueObject.getInvestigation().getBoId() == null) { if (domMap.get(valueObject.getInvestigation()) != null) { value1 = (ims.ocrr.configuration.domain.objects.Investigation) domMap.get(valueObject.getInvestigation()); } } else { value1 = (ims.ocrr.configuration.domain.objects.Investigation) domainFactory.getDomainObject( ims.ocrr.configuration.domain.objects.Investigation.class, valueObject.getInvestigation().getBoId()); } } domainObject.setInvestigation(value1); domainObject.setInvestigationQuestionAnswers( ims.core.vo.domain.GeneralQuestionAnswerVoAssembler.extractGeneralQuestionAnswerList( domainFactory, valueObject.getInvestigationQuestionAnswers(), domainObject.getInvestigationQuestionAnswers(), domMap)); return domainObject; }