org.milyn.edi.unedifact.d06b.PROTAP.SegmentGroup15 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d06b.PROTAP;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d06b.common.SchedulingConditions;
import java.util.List;
import org.milyn.edi.unedifact.d06b.common.Quantity;
import org.milyn.edi.unedifact.d06b.common.DateTimePeriod;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup15 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private SchedulingConditions schedulingConditions;
private List quantity;
private List dateTimePeriod;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(schedulingConditions != null) {
nodeWriter.write("SCC");
nodeWriter.write(delimiters.getField());
schedulingConditions.write(nodeWriter, delimiters);
}
if(quantity != null && !quantity.isEmpty()) {
for(Quantity quantityInst : quantity) {
nodeWriter.write("QTY");
nodeWriter.write(delimiters.getField());
quantityInst.write(nodeWriter, delimiters);
}
}
if(dateTimePeriod != null && !dateTimePeriod.isEmpty()) {
for(DateTimePeriod dateTimePeriodInst : dateTimePeriod) {
nodeWriter.write("DTM");
nodeWriter.write(delimiters.getField());
dateTimePeriodInst.write(nodeWriter, delimiters);
}
}
}
public SchedulingConditions getSchedulingConditions() {
return schedulingConditions;
}
public SegmentGroup15 setSchedulingConditions(SchedulingConditions schedulingConditions) {
this.schedulingConditions = schedulingConditions; return this;
}
public List getQuantity() {
return quantity;
}
public SegmentGroup15 setQuantity(List quantity) {
this.quantity = quantity; return this;
}
public List getDateTimePeriod() {
return dateTimePeriod;
}
public SegmentGroup15 setDateTimePeriod(List dateTimePeriod) {
this.dateTimePeriod = dateTimePeriod; return this;
}
}