org.milyn.edi.unedifact.d13a.GOVCBR.SegmentGroup68 Maven / Gradle / Ivy
The newest version!
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d13a.GOVCBR;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d13a.common.TODTermsOfDeliveryOrTransport;
import java.util.List;
import org.milyn.edi.unedifact.d13a.common.LOCPlaceLocationIdentification;
import org.milyn.edi.unedifact.d13a.common.GEIProcessingInformation;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup68 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private TODTermsOfDeliveryOrTransport tODTermsOfDeliveryOrTransport;
private List lOCPlaceLocationIdentification;
private List gEIProcessingInformation;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(tODTermsOfDeliveryOrTransport != null) {
nodeWriter.write("TOD");
nodeWriter.write(delimiters.getField());
tODTermsOfDeliveryOrTransport.write(nodeWriter, delimiters);
}
if(lOCPlaceLocationIdentification != null && !lOCPlaceLocationIdentification.isEmpty()) {
for(LOCPlaceLocationIdentification lOCPlaceLocationIdentificationInst : lOCPlaceLocationIdentification) {
nodeWriter.write("LOC");
nodeWriter.write(delimiters.getField());
lOCPlaceLocationIdentificationInst.write(nodeWriter, delimiters);
}
}
if(gEIProcessingInformation != null && !gEIProcessingInformation.isEmpty()) {
for(GEIProcessingInformation gEIProcessingInformationInst : gEIProcessingInformation) {
nodeWriter.write("GEI");
nodeWriter.write(delimiters.getField());
gEIProcessingInformationInst.write(nodeWriter, delimiters);
}
}
}
public TODTermsOfDeliveryOrTransport getTODTermsOfDeliveryOrTransport() {
return tODTermsOfDeliveryOrTransport;
}
public SegmentGroup68 setTODTermsOfDeliveryOrTransport(TODTermsOfDeliveryOrTransport tODTermsOfDeliveryOrTransport) {
this.tODTermsOfDeliveryOrTransport = tODTermsOfDeliveryOrTransport; return this;
}
public List getLOCPlaceLocationIdentification() {
return lOCPlaceLocationIdentification;
}
public SegmentGroup68 setLOCPlaceLocationIdentification(List lOCPlaceLocationIdentification) {
this.lOCPlaceLocationIdentification = lOCPlaceLocationIdentification; return this;
}
public List getGEIProcessingInformation() {
return gEIProcessingInformation;
}
public SegmentGroup68 setGEIProcessingInformation(List gEIProcessingInformation) {
this.gEIProcessingInformation = gEIProcessingInformation; return this;
}
}