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

org.milyn.edi.unedifact.d05a.REGENT.SegmentGroup1 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.d05a.REGENT;

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

public class SegmentGroup1 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private PartyIdentification partyIdentification;
    private List reference;
    private List attribute;
    private List
address; private List communicationContact; 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(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(address != null && !address.isEmpty()) { for(Address addressInst : address) { nodeWriter.write("ADR"); nodeWriter.write(delimiters.getField()); addressInst.write(nodeWriter, delimiters); } } if(communicationContact != null && !communicationContact.isEmpty()) { for(CommunicationContact communicationContactInst : communicationContact) { nodeWriter.write("COM"); nodeWriter.write(delimiters.getField()); communicationContactInst.write(nodeWriter, delimiters); } } } public PartyIdentification getPartyIdentification() { return partyIdentification; } public SegmentGroup1 setPartyIdentification(PartyIdentification partyIdentification) { this.partyIdentification = partyIdentification; return this; } public List getReference() { return reference; } public SegmentGroup1 setReference(List reference) { this.reference = reference; return this; } public List getAttribute() { return attribute; } public SegmentGroup1 setAttribute(List attribute) { this.attribute = attribute; return this; } public List
getAddress() { return address; } public SegmentGroup1 setAddress(List
address) { this.address = address; return this; } public List getCommunicationContact() { return communicationContact; } public SegmentGroup1 setCommunicationContact(List communicationContact) { this.communicationContact = communicationContact; return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy