@Override public final TechnicalInterventionRequestDocument modelToXml() { Calendar calendar = Calendar.getInstance(); LocalTime localTime = new LocalTime(); Date date = null; TechnicalInterventionRequestDocument technicalInterventionRequestDoc = TechnicalInterventionRequestDocument.Factory.newInstance(); TechnicalInterventionRequestDocument.TechnicalInterventionRequest technicalInterventionRequest = technicalInterventionRequestDoc.addNewTechnicalInterventionRequest(); super.fillCommonXmlInfo(technicalInterventionRequest); int i = 0; technicalInterventionRequest.setInterventionDescription(getInterventionDescription()); if (getInterventionPlace() != null) technicalInterventionRequest.setInterventionPlace(Address.modelToXml(getInterventionPlace())); i = 0; if (getInterventionType() != null) { fr.cg95.cvq.xml.common.LocalReferentialDataType[] interventionTypeTypeTab = new fr.cg95.cvq.xml.common.LocalReferentialDataType[getInterventionType().size()]; for (LocalReferentialData object : getInterventionType()) { interventionTypeTypeTab[i++] = LocalReferentialData.modelToXml(object); } technicalInterventionRequest.setInterventionTypeArray(interventionTypeTypeTab); } technicalInterventionRequest.setOtherInterventionLabel(getOtherInterventionLabel()); return technicalInterventionRequestDoc; }
@Override public final CompostableWasteCollectionRequestDocument modelToXml() { Calendar calendar = Calendar.getInstance(); LocalTime localTime = new LocalTime(); Date date = null; CompostableWasteCollectionRequestDocument compostableWasteCollectionRequestDoc = CompostableWasteCollectionRequestDocument.Factory.newInstance(); CompostableWasteCollectionRequestDocument.CompostableWasteCollectionRequest compostableWasteCollectionRequest = compostableWasteCollectionRequestDoc.addNewCompostableWasteCollectionRequest(); super.fillCommonXmlInfo(compostableWasteCollectionRequest); int i = 0; if (getCollectionAddress() != null) compostableWasteCollectionRequest.setCollectionAddress( Address.modelToXml(getCollectionAddress())); i = 0; if (getCompostableWasteType() != null) { fr.cg95.cvq.xml.common.LocalReferentialDataType[] compostableWasteTypeTypeTab = new fr.cg95.cvq.xml.common.LocalReferentialDataType[getCompostableWasteType().size()]; for (LocalReferentialData object : getCompostableWasteType()) { compostableWasteTypeTypeTab[i++] = LocalReferentialData.modelToXml(object); } compostableWasteCollectionRequest.setCompostableWasteTypeArray(compostableWasteTypeTypeTab); } compostableWasteCollectionRequest.setOtherWaste(getOtherWaste()); return compostableWasteCollectionRequestDoc; }