org.milyn.edi.unedifact.d99a.CONEST.SegmentGroup27 Maven / Gradle / Ivy
The newest version!
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d99a.CONEST;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d99a.common.QTYQuantity;
import java.util.List;
import org.milyn.edi.unedifact.d99a.common.GISGeneralIndicator;
import org.milyn.edi.unedifact.d99a.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 gISGeneralIndicator;
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(gISGeneralIndicator != null && !gISGeneralIndicator.isEmpty()) {
for(GISGeneralIndicator gISGeneralIndicatorInst : gISGeneralIndicator) {
nodeWriter.write("GIS");
nodeWriter.write(delimiters.getField());
gISGeneralIndicatorInst.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 getGISGeneralIndicator() {
return gISGeneralIndicator;
}
public SegmentGroup27 setGISGeneralIndicator(List gISGeneralIndicator) {
this.gISGeneralIndicator = gISGeneralIndicator; 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;
}
}