org.milyn.edi.unedifact.d03b.ORDERS.SegmentGroup51 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d03b.ORDERS;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d03b.common.TermsOfDeliveryOrTransport;
import java.util.List;
import org.milyn.edi.unedifact.d03b.common.PlaceLocationIdentification;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup51 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private TermsOfDeliveryOrTransport termsOfDeliveryOrTransport;
private List placeLocationIdentification;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(termsOfDeliveryOrTransport != null) {
nodeWriter.write("TOD");
nodeWriter.write(delimiters.getField());
termsOfDeliveryOrTransport.write(nodeWriter, delimiters);
}
if(placeLocationIdentification != null && !placeLocationIdentification.isEmpty()) {
for(PlaceLocationIdentification placeLocationIdentificationInst : placeLocationIdentification) {
nodeWriter.write("LOC");
nodeWriter.write(delimiters.getField());
placeLocationIdentificationInst.write(nodeWriter, delimiters);
}
}
}
public TermsOfDeliveryOrTransport getTermsOfDeliveryOrTransport() {
return termsOfDeliveryOrTransport;
}
public SegmentGroup51 setTermsOfDeliveryOrTransport(TermsOfDeliveryOrTransport termsOfDeliveryOrTransport) {
this.termsOfDeliveryOrTransport = termsOfDeliveryOrTransport; return this;
}
public List getPlaceLocationIdentification() {
return placeLocationIdentification;
}
public SegmentGroup51 setPlaceLocationIdentification(List placeLocationIdentification) {
this.placeLocationIdentification = placeLocationIdentification; return this;
}
}