/** * Create the ValueObject collection to hold the set of DomainObjects. * * @param map - maps DomainObjects to created ValueObjects * @param domainObjectSet - Set of ims.choose_book.domain.objects.Conversation objects. */ public static ims.chooseandbook.vo.ConversationVoCollection createConversationVoCollectionFromConversation( DomainObjectMap map, java.util.Set domainObjectSet) { ims.chooseandbook.vo.ConversationVoCollection voList = new ims.chooseandbook.vo.ConversationVoCollection(); if (null == domainObjectSet) { return voList; } int rieCount = 0; int activeCount = 0; java.util.Iterator iterator = domainObjectSet.iterator(); while (iterator.hasNext()) { ims.choose_book.domain.objects.Conversation domainObject = (ims.choose_book.domain.objects.Conversation) iterator.next(); ims.chooseandbook.vo.ConversationVo 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.choose_book.domain.objects.Conversation objects. */ public static ims.chooseandbook.vo.ConversationVoCollection createConversationVoCollectionFromConversation( DomainObjectMap map, java.util.List domainObjectList) { ims.chooseandbook.vo.ConversationVoCollection voList = new ims.chooseandbook.vo.ConversationVoCollection(); if (null == domainObjectList) { return voList; } int rieCount = 0; int activeCount = 0; for (int i = 0; i < domainObjectList.size(); i++) { ims.choose_book.domain.objects.Conversation domainObject = (ims.choose_book.domain.objects.Conversation) domainObjectList.get(i); ims.chooseandbook.vo.ConversationVo 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.choose_book.domain.objects.Conversation object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param domainObject */ public static ims.chooseandbook.vo.ConversationVo create( DomainObjectMap map, ims.choose_book.domain.objects.Conversation domainObject) { if (null == domainObject) { return null; } // check if the domainObject already has a valueObject created for it ims.chooseandbook.vo.ConversationVo valueObject = (ims.chooseandbook.vo.ConversationVo) map.getValueObject(domainObject, ims.chooseandbook.vo.ConversationVo.class); if (null == valueObject) { valueObject = new ims.chooseandbook.vo.ConversationVo(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.choose_book.domain.objects.Conversation */ public static ims.chooseandbook.vo.ConversationVo insert( DomainObjectMap map, ims.chooseandbook.vo.ConversationVo valueObject, ims.choose_book.domain.objects.Conversation domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_Conversation(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; // cid valueObject.setCid( ims.chooseandbook.vo.domain.ConvIdVoAssembler.create(map, domainObject.getCid())); // current valueObject.setCurrent( ims.chooseandbook.vo.domain.SeqPointVoAssembler.create(map, domainObject.getCurrent())); // points valueObject.setPoints( ims.chooseandbook.vo.domain.ConvPointVoAssembler.createConvPointVoCollectionFromConvPoint( map, domainObject.getPoints())); // msgUids valueObject.setMsgUids( ims.chooseandbook.vo.domain.ConvUidVoAssembler.createConvUidVoCollectionFromConvUid( map, domainObject.getMsgUids())); return valueObject; }
public static ims.choose_book.domain.objects.Conversation extractConversation( ims.domain.ILightweightDomainFactory domainFactory, ims.chooseandbook.vo.ConversationVo valueObject, HashMap domMap) { if (null == valueObject) { return null; } Integer id = valueObject.getID_Conversation(); ims.choose_book.domain.objects.Conversation domainObject = null; if (null == id) { if (domMap.get(valueObject) != null) { return (ims.choose_book.domain.objects.Conversation) domMap.get(valueObject); } // ims.chooseandbook.vo.ConversationVo ID_Conversation field is unknown domainObject = new ims.choose_book.domain.objects.Conversation(); domMap.put(valueObject, domainObject); } else { String key = (valueObject.getClass().getName() + "__" + valueObject.getID_Conversation()); if (domMap.get(key) != null) { return (ims.choose_book.domain.objects.Conversation) domMap.get(key); } domainObject = (ims.choose_book.domain.objects.Conversation) domainFactory.getDomainObject(ims.choose_book.domain.objects.Conversation.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_Conversation()); domainObject.setCid( ims.chooseandbook.vo.domain.ConvIdVoAssembler.extractConvId( domainFactory, valueObject.getCid(), domMap)); // SaveAsRefVO - treated as a refVo in extract methods ims.choose_book.domain.objects.SeqPoint value2 = null; if (null != valueObject.getCurrent()) { if (valueObject.getCurrent().getBoId() == null) { if (domMap.get(valueObject.getCurrent()) != null) { value2 = (ims.choose_book.domain.objects.SeqPoint) domMap.get(valueObject.getCurrent()); } } else { value2 = (ims.choose_book.domain.objects.SeqPoint) domainFactory.getDomainObject( ims.choose_book.domain.objects.SeqPoint.class, valueObject.getCurrent().getBoId()); } } domainObject.setCurrent(value2); domainObject.setPoints( ims.chooseandbook.vo.domain.ConvPointVoAssembler.extractConvPointList( domainFactory, valueObject.getPoints(), domainObject.getPoints(), domMap)); domainObject.setMsgUids( ims.chooseandbook.vo.domain.ConvUidVoAssembler.extractConvUidList( domainFactory, valueObject.getMsgUids(), domainObject.getMsgUids(), domMap)); return domainObject; }