org.milyn.edi.unedifact.d96a.COPINO.SegmentGroup3 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d96a.COPINO;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d96a.common.GoodsItemDetails;
import java.util.List;
import org.milyn.edi.unedifact.d96a.common.HandlingInstructions;
import org.milyn.edi.unedifact.d96a.common.Temperature;
import org.milyn.edi.unedifact.d96a.common.RangeDetails;
import org.milyn.edi.unedifact.d96a.common.SplitGoodsPlacement;
import org.milyn.edi.unedifact.d96a.common.DangerousGoods;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup3 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private GoodsItemDetails goodsItemDetails;
private List handlingInstructions;
private List temperature;
private List rangeDetails;
private List splitGoodsPlacement;
private List dangerousGoods;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(goodsItemDetails != null) {
nodeWriter.write("GID");
nodeWriter.write(delimiters.getField());
goodsItemDetails.write(nodeWriter, delimiters);
}
if(handlingInstructions != null && !handlingInstructions.isEmpty()) {
for(HandlingInstructions handlingInstructionsInst : handlingInstructions) {
nodeWriter.write("HAN");
nodeWriter.write(delimiters.getField());
handlingInstructionsInst.write(nodeWriter, delimiters);
}
}
if(temperature != null && !temperature.isEmpty()) {
for(Temperature temperatureInst : temperature) {
nodeWriter.write("TMP");
nodeWriter.write(delimiters.getField());
temperatureInst.write(nodeWriter, delimiters);
}
}
if(rangeDetails != null && !rangeDetails.isEmpty()) {
for(RangeDetails rangeDetailsInst : rangeDetails) {
nodeWriter.write("RNG");
nodeWriter.write(delimiters.getField());
rangeDetailsInst.write(nodeWriter, delimiters);
}
}
if(splitGoodsPlacement != null && !splitGoodsPlacement.isEmpty()) {
for(SplitGoodsPlacement splitGoodsPlacementInst : splitGoodsPlacement) {
nodeWriter.write("SGP");
nodeWriter.write(delimiters.getField());
splitGoodsPlacementInst.write(nodeWriter, delimiters);
}
}
if(dangerousGoods != null && !dangerousGoods.isEmpty()) {
for(DangerousGoods dangerousGoodsInst : dangerousGoods) {
nodeWriter.write("DGS");
nodeWriter.write(delimiters.getField());
dangerousGoodsInst.write(nodeWriter, delimiters);
}
}
}
public GoodsItemDetails getGoodsItemDetails() {
return goodsItemDetails;
}
public SegmentGroup3 setGoodsItemDetails(GoodsItemDetails goodsItemDetails) {
this.goodsItemDetails = goodsItemDetails; return this;
}
public List getHandlingInstructions() {
return handlingInstructions;
}
public SegmentGroup3 setHandlingInstructions(List handlingInstructions) {
this.handlingInstructions = handlingInstructions; return this;
}
public List getTemperature() {
return temperature;
}
public SegmentGroup3 setTemperature(List temperature) {
this.temperature = temperature; return this;
}
public List getRangeDetails() {
return rangeDetails;
}
public SegmentGroup3 setRangeDetails(List rangeDetails) {
this.rangeDetails = rangeDetails; return this;
}
public List getSplitGoodsPlacement() {
return splitGoodsPlacement;
}
public SegmentGroup3 setSplitGoodsPlacement(List splitGoodsPlacement) {
this.splitGoodsPlacement = splitGoodsPlacement; return this;
}
public List getDangerousGoods() {
return dangerousGoods;
}
public SegmentGroup3 setDangerousGoods(List dangerousGoods) {
this.dangerousGoods = dangerousGoods; return this;
}
}