org.milyn.edi.unedifact.d09b.UTILTS.Utilts Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d09b.UTILTS;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.smooks.edi.EDIMessage;
import org.milyn.edi.unedifact.d09b.common.BGMBeginningOfMessage;
import java.util.List;
import org.milyn.edi.unedifact.d09b.common.DTMDateTimePeriod;
import org.milyn.edi.unedifact.d09b.common.MKSMarketSalesChannelInformation;
import org.milyn.edi.unedifact.d09b.common.PRCProcessIdentification;
import org.milyn.edi.unedifact.d09b.common.CNTControlTotal;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
@EDIMessage
public class Utilts implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private BGMBeginningOfMessage bGMBeginningOfMessage;
private List dTMDateTimePeriod;
private List mKSMarketSalesChannelInformation;
private List pRCProcessIdentification;
private List segmentGroup1;
private List segmentGroup2;
private List segmentGroup4;
private List segmentGroup5;
private List cNTControlTotal;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(bGMBeginningOfMessage != null) {
nodeWriter.write("BGM");
nodeWriter.write(delimiters.getField());
bGMBeginningOfMessage.write(nodeWriter, delimiters);
}
if(dTMDateTimePeriod != null && !dTMDateTimePeriod.isEmpty()) {
for(DTMDateTimePeriod dTMDateTimePeriodInst : dTMDateTimePeriod) {
nodeWriter.write("DTM");
nodeWriter.write(delimiters.getField());
dTMDateTimePeriodInst.write(nodeWriter, delimiters);
}
}
if(mKSMarketSalesChannelInformation != null && !mKSMarketSalesChannelInformation.isEmpty()) {
for(MKSMarketSalesChannelInformation mKSMarketSalesChannelInformationInst : mKSMarketSalesChannelInformation) {
nodeWriter.write("MKS");
nodeWriter.write(delimiters.getField());
mKSMarketSalesChannelInformationInst.write(nodeWriter, delimiters);
}
}
if(pRCProcessIdentification != null && !pRCProcessIdentification.isEmpty()) {
for(PRCProcessIdentification pRCProcessIdentificationInst : pRCProcessIdentification) {
nodeWriter.write("PRC");
nodeWriter.write(delimiters.getField());
pRCProcessIdentificationInst.write(nodeWriter, delimiters);
}
}
if(segmentGroup1 != null && !segmentGroup1.isEmpty()) {
for(SegmentGroup1 segmentGroup1Inst : segmentGroup1) {
segmentGroup1Inst.write(nodeWriter, delimiters);
}
}
if(segmentGroup2 != null && !segmentGroup2.isEmpty()) {
for(SegmentGroup2 segmentGroup2Inst : segmentGroup2) {
segmentGroup2Inst.write(nodeWriter, delimiters);
}
}
if(segmentGroup4 != null && !segmentGroup4.isEmpty()) {
for(SegmentGroup4 segmentGroup4Inst : segmentGroup4) {
segmentGroup4Inst.write(nodeWriter, delimiters);
}
}
if(segmentGroup5 != null && !segmentGroup5.isEmpty()) {
for(SegmentGroup5 segmentGroup5Inst : segmentGroup5) {
segmentGroup5Inst.write(nodeWriter, delimiters);
}
}
if(cNTControlTotal != null && !cNTControlTotal.isEmpty()) {
for(CNTControlTotal cNTControlTotalInst : cNTControlTotal) {
nodeWriter.write("CNT");
nodeWriter.write(delimiters.getField());
cNTControlTotalInst.write(nodeWriter, delimiters);
}
}
}
public BGMBeginningOfMessage getBGMBeginningOfMessage() {
return bGMBeginningOfMessage;
}
public Utilts setBGMBeginningOfMessage(BGMBeginningOfMessage bGMBeginningOfMessage) {
this.bGMBeginningOfMessage = bGMBeginningOfMessage; return this;
}
public List getDTMDateTimePeriod() {
return dTMDateTimePeriod;
}
public Utilts setDTMDateTimePeriod(List dTMDateTimePeriod) {
this.dTMDateTimePeriod = dTMDateTimePeriod; return this;
}
public List getMKSMarketSalesChannelInformation() {
return mKSMarketSalesChannelInformation;
}
public Utilts setMKSMarketSalesChannelInformation(List mKSMarketSalesChannelInformation) {
this.mKSMarketSalesChannelInformation = mKSMarketSalesChannelInformation; return this;
}
public List getPRCProcessIdentification() {
return pRCProcessIdentification;
}
public Utilts setPRCProcessIdentification(List pRCProcessIdentification) {
this.pRCProcessIdentification = pRCProcessIdentification; return this;
}
public List getSegmentGroup1() {
return segmentGroup1;
}
public Utilts setSegmentGroup1(List segmentGroup1) {
this.segmentGroup1 = segmentGroup1; return this;
}
public List getSegmentGroup2() {
return segmentGroup2;
}
public Utilts setSegmentGroup2(List segmentGroup2) {
this.segmentGroup2 = segmentGroup2; return this;
}
public List getSegmentGroup4() {
return segmentGroup4;
}
public Utilts setSegmentGroup4(List segmentGroup4) {
this.segmentGroup4 = segmentGroup4; return this;
}
public List getSegmentGroup5() {
return segmentGroup5;
}
public Utilts setSegmentGroup5(List segmentGroup5) {
this.segmentGroup5 = segmentGroup5; return this;
}
public List getCNTControlTotal() {
return cNTControlTotal;
}
public Utilts setCNTControlTotal(List cNTControlTotal) {
this.cNTControlTotal = cNTControlTotal; return this;
}
}