org.milyn.edi.unedifact.d05a.common.COTContributionDetails Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d05a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d05a.common.field.C953ContributionType;
import org.milyn.edi.unedifact.d05a.common.field.C522Instruction;
import org.milyn.edi.unedifact.d05a.common.field.C203RateTariffClass;
import org.milyn.edi.unedifact.d05a.common.field.C960ReasonForChange;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
import java.io.StringWriter;
import java.util.List;
import java.util.ArrayList;
import org.milyn.edisax.util.EDIUtils;
import org.milyn.edisax.model.internal.DelimiterType;
public class COTContributionDetails implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private String e5047ContributionCodeQualifier;
private C953ContributionType c953ContributionType;
private C522Instruction c522Instruction;
private C203RateTariffClass c203RateTariffClass;
private C960ReasonForChange c960ReasonForChange;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(e5047ContributionCodeQualifier != null) {
nodeWriter.write(delimiters.escape(e5047ContributionCodeQualifier.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(c953ContributionType != null) {
c953ContributionType.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(c522Instruction != null) {
c522Instruction.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(c203RateTariffClass != null) {
c203RateTariffClass.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(c960ReasonForChange != null) {
c960ReasonForChange.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeTokens.add(nodeWriter.toString());
writer.write(EDIUtils.concatAndTruncate(nodeTokens, DelimiterType.FIELD, delimiters));
writer.write(delimiters.getSegmentDelimiter());
writer.flush();
}
public String getE5047ContributionCodeQualifier() {
return e5047ContributionCodeQualifier;
}
public COTContributionDetails setE5047ContributionCodeQualifier(String e5047ContributionCodeQualifier) {
this.e5047ContributionCodeQualifier = e5047ContributionCodeQualifier; return this;
}
public C953ContributionType getC953ContributionType() {
return c953ContributionType;
}
public COTContributionDetails setC953ContributionType(C953ContributionType c953ContributionType) {
this.c953ContributionType = c953ContributionType; return this;
}
public C522Instruction getC522Instruction() {
return c522Instruction;
}
public COTContributionDetails setC522Instruction(C522Instruction c522Instruction) {
this.c522Instruction = c522Instruction; return this;
}
public C203RateTariffClass getC203RateTariffClass() {
return c203RateTariffClass;
}
public COTContributionDetails setC203RateTariffClass(C203RateTariffClass c203RateTariffClass) {
this.c203RateTariffClass = c203RateTariffClass; return this;
}
public C960ReasonForChange getC960ReasonForChange() {
return c960ReasonForChange;
}
public COTContributionDetails setC960ReasonForChange(C960ReasonForChange c960ReasonForChange) {
this.c960ReasonForChange = c960ReasonForChange; return this;
}
}