/** * Create the ValueObject collection to hold the set of DomainObjects. * * @param map - maps DomainObjects to created ValueObjects * @param domainObjectSet - Set of ims.therapies.treatment.domain.objects.Mobilisations objects. */ public static ims.therapies.vo.MobilisationsShortVoCollection createMobilisationsShortVoCollectionFromMobilisations( DomainObjectMap map, java.util.Set domainObjectSet) { ims.therapies.vo.MobilisationsShortVoCollection voList = new ims.therapies.vo.MobilisationsShortVoCollection(); if (null == domainObjectSet) { return voList; } int rieCount = 0; int activeCount = 0; java.util.Iterator iterator = domainObjectSet.iterator(); while (iterator.hasNext()) { ims.therapies.treatment.domain.objects.Mobilisations domainObject = (ims.therapies.treatment.domain.objects.Mobilisations) iterator.next(); ims.therapies.vo.MobilisationsShortVo 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.therapies.treatment.domain.objects.Mobilisations objects. */ public static ims.therapies.vo.MobilisationsShortVoCollection createMobilisationsShortVoCollectionFromMobilisations( DomainObjectMap map, java.util.List domainObjectList) { ims.therapies.vo.MobilisationsShortVoCollection voList = new ims.therapies.vo.MobilisationsShortVoCollection(); if (null == domainObjectList) { return voList; } int rieCount = 0; int activeCount = 0; for (int i = 0; i < domainObjectList.size(); i++) { ims.therapies.treatment.domain.objects.Mobilisations domainObject = (ims.therapies.treatment.domain.objects.Mobilisations) domainObjectList.get(i); ims.therapies.vo.MobilisationsShortVo 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; }
/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.therapies.treatment.domain.objects.Mobilisations */ public static ims.therapies.vo.MobilisationsShortVo insert( DomainObjectMap map, ims.therapies.vo.MobilisationsShortVo valueObject, ims.therapies.treatment.domain.objects.Mobilisations domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_Mobilisations(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; // ClinicalContact valueObject.setClinicalContact( ims.core.vo.domain.ClinicalContactShortVoAssembler.create( map, domainObject.getClinicalContact())); // AuthoringCP valueObject.setAuthoringCP( ims.core.vo.domain.HcpAssembler.create(map, domainObject.getAuthoringCP())); // AuthoringDateTime java.util.Date AuthoringDateTime = domainObject.getAuthoringDateTime(); if (null != AuthoringDateTime) { valueObject.setAuthoringDateTime(new ims.framework.utils.DateTime(AuthoringDateTime)); } return valueObject; }