org.milyn.edi.unedifact.d13a.CONEST.SegmentGroup27 Maven / Gradle / Ivy
The newest version!
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d13a.CONEST;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d13a.common.QTYQuantity;
import java.util.List;
import org.milyn.edi.unedifact.d13a.common.GEIProcessingInformation;
import org.milyn.edi.unedifact.d13a.common.APRAdditionalPriceInformation;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup27 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private QTYQuantity qTYQuantity;
private List gEIProcessingInformation;
private APRAdditionalPriceInformation aPRAdditionalPriceInformation;
private List segmentGroup28;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(qTYQuantity != null) {
nodeWriter.write("QTY");
nodeWriter.write(delimiters.getField());
qTYQuantity.write(nodeWriter, delimiters);
}
if(gEIProcessingInformation != null && !gEIProcessingInformation.isEmpty()) {
for(GEIProcessingInformation gEIProcessingInformationInst : gEIProcessingInformation) {
nodeWriter.write("GEI");
nodeWriter.write(delimiters.getField());
gEIProcessingInformationInst.write(nodeWriter, delimiters);
}
}
if(aPRAdditionalPriceInformation != null) {
nodeWriter.write("APR");
nodeWriter.write(delimiters.getField());
aPRAdditionalPriceInformation.write(nodeWriter, delimiters);
}
if(segmentGroup28 != null && !segmentGroup28.isEmpty()) {
for(SegmentGroup28 segmentGroup28Inst : segmentGroup28) {
segmentGroup28Inst.write(nodeWriter, delimiters);
}
}
}
public QTYQuantity getQTYQuantity() {
return qTYQuantity;
}
public SegmentGroup27 setQTYQuantity(QTYQuantity qTYQuantity) {
this.qTYQuantity = qTYQuantity; return this;
}
public List getGEIProcessingInformation() {
return gEIProcessingInformation;
}
public SegmentGroup27 setGEIProcessingInformation(List gEIProcessingInformation) {
this.gEIProcessingInformation = gEIProcessingInformation; return this;
}
public APRAdditionalPriceInformation getAPRAdditionalPriceInformation() {
return aPRAdditionalPriceInformation;
}
public SegmentGroup27 setAPRAdditionalPriceInformation(APRAdditionalPriceInformation aPRAdditionalPriceInformation) {
this.aPRAdditionalPriceInformation = aPRAdditionalPriceInformation; return this;
}
public List getSegmentGroup28() {
return segmentGroup28;
}
public SegmentGroup27 setSegmentGroup28(List segmentGroup28) {
this.segmentGroup28 = segmentGroup28; return this;
}
}