All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.edi.unedifact.d02a.COPAYM.SegmentGroup2 Maven / Gradle / Ivy

There is a newer version: 1.7.1.0
Show newest version
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d02a.COPAYM;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d02a.common.PartyIdentification;    
import java.util.List;    
import org.milyn.edi.unedifact.d02a.common.Address;    
import org.milyn.edi.unedifact.d02a.common.ContactInformation;    
import org.milyn.edi.unedifact.d02a.common.CommunicationContact;    
import org.milyn.edi.unedifact.d02a.common.DateTimePeriod;    
import org.milyn.edi.unedifact.d02a.common.MonetaryAmount;    
import org.milyn.edi.unedifact.d02a.common.Quantity;    
import org.milyn.edi.unedifact.d02a.common.Reference;    
import org.milyn.edi.unedifact.d02a.common.Attribute;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup2 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private PartyIdentification partyIdentification;
    private List
address; private ContactInformation contactInformation; private List communicationContact; private List dateTimePeriod; private List monetaryAmount; private List quantity; private List reference; private List attribute; private List segmentGroup3; private List segmentGroup4; public void write(Writer writer, Delimiters delimiters) throws IOException { Writer nodeWriter = writer; if(partyIdentification != null) { nodeWriter.write("PNA"); nodeWriter.write(delimiters.getField()); partyIdentification.write(nodeWriter, delimiters); } if(address != null && !address.isEmpty()) { for(Address addressInst : address) { nodeWriter.write("ADR"); nodeWriter.write(delimiters.getField()); addressInst.write(nodeWriter, delimiters); } } if(contactInformation != null) { nodeWriter.write("CTA"); nodeWriter.write(delimiters.getField()); contactInformation.write(nodeWriter, delimiters); } if(communicationContact != null && !communicationContact.isEmpty()) { for(CommunicationContact communicationContactInst : communicationContact) { nodeWriter.write("COM"); nodeWriter.write(delimiters.getField()); communicationContactInst.write(nodeWriter, delimiters); } } if(dateTimePeriod != null && !dateTimePeriod.isEmpty()) { for(DateTimePeriod dateTimePeriodInst : dateTimePeriod) { nodeWriter.write("DTM"); nodeWriter.write(delimiters.getField()); dateTimePeriodInst.write(nodeWriter, delimiters); } } if(monetaryAmount != null && !monetaryAmount.isEmpty()) { for(MonetaryAmount monetaryAmountInst : monetaryAmount) { nodeWriter.write("MOA"); nodeWriter.write(delimiters.getField()); monetaryAmountInst.write(nodeWriter, delimiters); } } if(quantity != null && !quantity.isEmpty()) { for(Quantity quantityInst : quantity) { nodeWriter.write("QTY"); nodeWriter.write(delimiters.getField()); quantityInst.write(nodeWriter, delimiters); } } if(reference != null && !reference.isEmpty()) { for(Reference referenceInst : reference) { nodeWriter.write("RFF"); nodeWriter.write(delimiters.getField()); referenceInst.write(nodeWriter, delimiters); } } if(attribute != null && !attribute.isEmpty()) { for(Attribute attributeInst : attribute) { nodeWriter.write("ATT"); nodeWriter.write(delimiters.getField()); attributeInst.write(nodeWriter, delimiters); } } if(segmentGroup3 != null && !segmentGroup3.isEmpty()) { for(SegmentGroup3 segmentGroup3Inst : segmentGroup3) { segmentGroup3Inst.write(nodeWriter, delimiters); } } if(segmentGroup4 != null && !segmentGroup4.isEmpty()) { for(SegmentGroup4 segmentGroup4Inst : segmentGroup4) { segmentGroup4Inst.write(nodeWriter, delimiters); } } } public PartyIdentification getPartyIdentification() { return partyIdentification; } public SegmentGroup2 setPartyIdentification(PartyIdentification partyIdentification) { this.partyIdentification = partyIdentification; return this; } public List
getAddress() { return address; } public SegmentGroup2 setAddress(List
address) { this.address = address; return this; } public ContactInformation getContactInformation() { return contactInformation; } public SegmentGroup2 setContactInformation(ContactInformation contactInformation) { this.contactInformation = contactInformation; return this; } public List getCommunicationContact() { return communicationContact; } public SegmentGroup2 setCommunicationContact(List communicationContact) { this.communicationContact = communicationContact; return this; } public List getDateTimePeriod() { return dateTimePeriod; } public SegmentGroup2 setDateTimePeriod(List dateTimePeriod) { this.dateTimePeriod = dateTimePeriod; return this; } public List getMonetaryAmount() { return monetaryAmount; } public SegmentGroup2 setMonetaryAmount(List monetaryAmount) { this.monetaryAmount = monetaryAmount; return this; } public List getQuantity() { return quantity; } public SegmentGroup2 setQuantity(List quantity) { this.quantity = quantity; return this; } public List getReference() { return reference; } public SegmentGroup2 setReference(List reference) { this.reference = reference; return this; } public List getAttribute() { return attribute; } public SegmentGroup2 setAttribute(List attribute) { this.attribute = attribute; return this; } public List getSegmentGroup3() { return segmentGroup3; } public SegmentGroup2 setSegmentGroup3(List segmentGroup3) { this.segmentGroup3 = segmentGroup3; return this; } public List getSegmentGroup4() { return segmentGroup4; } public SegmentGroup2 setSegmentGroup4(List segmentGroup4) { this.segmentGroup4 = segmentGroup4; return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy