org.milyn.edi.unedifact.d05a.MEDPID.SegmentGroup1 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d05a.MEDPID;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d05a.common.PNAPartyIdentification;
import java.util.List;
import org.milyn.edi.unedifact.d05a.common.ADRAddress;
import org.milyn.edi.unedifact.d05a.common.CTAContactInformation;
import org.milyn.edi.unedifact.d05a.common.COMCommunicationContact;
import org.milyn.edi.unedifact.d05a.common.RFFReference;
import org.milyn.edi.unedifact.d05a.common.LANLanguage;
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 PNAPartyIdentification pNAPartyIdentification;
private List aDRAddress;
private List cTAContactInformation;
private List cOMCommunicationContact;
private List rFFReference;
private List lANLanguage;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(pNAPartyIdentification != null) {
nodeWriter.write("PNA");
nodeWriter.write(delimiters.getField());
pNAPartyIdentification.write(nodeWriter, delimiters);
}
if(aDRAddress != null && !aDRAddress.isEmpty()) {
for(ADRAddress aDRAddressInst : aDRAddress) {
nodeWriter.write("ADR");
nodeWriter.write(delimiters.getField());
aDRAddressInst.write(nodeWriter, delimiters);
}
}
if(cTAContactInformation != null && !cTAContactInformation.isEmpty()) {
for(CTAContactInformation cTAContactInformationInst : cTAContactInformation) {
nodeWriter.write("CTA");
nodeWriter.write(delimiters.getField());
cTAContactInformationInst.write(nodeWriter, delimiters);
}
}
if(cOMCommunicationContact != null && !cOMCommunicationContact.isEmpty()) {
for(COMCommunicationContact cOMCommunicationContactInst : cOMCommunicationContact) {
nodeWriter.write("COM");
nodeWriter.write(delimiters.getField());
cOMCommunicationContactInst.write(nodeWriter, delimiters);
}
}
if(rFFReference != null && !rFFReference.isEmpty()) {
for(RFFReference rFFReferenceInst : rFFReference) {
nodeWriter.write("RFF");
nodeWriter.write(delimiters.getField());
rFFReferenceInst.write(nodeWriter, delimiters);
}
}
if(lANLanguage != null && !lANLanguage.isEmpty()) {
for(LANLanguage lANLanguageInst : lANLanguage) {
nodeWriter.write("LAN");
nodeWriter.write(delimiters.getField());
lANLanguageInst.write(nodeWriter, delimiters);
}
}
}
public PNAPartyIdentification getPNAPartyIdentification() {
return pNAPartyIdentification;
}
public SegmentGroup1 setPNAPartyIdentification(PNAPartyIdentification pNAPartyIdentification) {
this.pNAPartyIdentification = pNAPartyIdentification; return this;
}
public List getADRAddress() {
return aDRAddress;
}
public SegmentGroup1 setADRAddress(List aDRAddress) {
this.aDRAddress = aDRAddress; return this;
}
public List getCTAContactInformation() {
return cTAContactInformation;
}
public SegmentGroup1 setCTAContactInformation(List cTAContactInformation) {
this.cTAContactInformation = cTAContactInformation; return this;
}
public List getCOMCommunicationContact() {
return cOMCommunicationContact;
}
public SegmentGroup1 setCOMCommunicationContact(List cOMCommunicationContact) {
this.cOMCommunicationContact = cOMCommunicationContact; return this;
}
public List getRFFReference() {
return rFFReference;
}
public SegmentGroup1 setRFFReference(List rFFReference) {
this.rFFReference = rFFReference; return this;
}
public List getLANLanguage() {
return lANLanguage;
}
public SegmentGroup1 setLANLanguage(List lANLanguage) {
this.lANLanguage = lANLanguage; return this;
}
}