org.milyn.edi.unedifact.d99b.common.CPIChargePaymentInstructions Maven / Gradle / Ivy
The newest version!
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d99b.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d99b.common.field.C229ChargeCategory;
import org.milyn.edi.unedifact.d99b.common.field.C231MethodOfPayment;
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 CPIChargePaymentInstructions implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private C229ChargeCategory c229ChargeCategory;
private C231MethodOfPayment c231MethodOfPayment;
private String e4237PrepaidCollectIndicatorCoded;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(c229ChargeCategory != null) {
c229ChargeCategory.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(c231MethodOfPayment != null) {
c231MethodOfPayment.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(e4237PrepaidCollectIndicatorCoded != null) {
nodeWriter.write(delimiters.escape(e4237PrepaidCollectIndicatorCoded.toString()));
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 C229ChargeCategory getC229ChargeCategory() {
return c229ChargeCategory;
}
public CPIChargePaymentInstructions setC229ChargeCategory(C229ChargeCategory c229ChargeCategory) {
this.c229ChargeCategory = c229ChargeCategory; return this;
}
public C231MethodOfPayment getC231MethodOfPayment() {
return c231MethodOfPayment;
}
public CPIChargePaymentInstructions setC231MethodOfPayment(C231MethodOfPayment c231MethodOfPayment) {
this.c231MethodOfPayment = c231MethodOfPayment; return this;
}
public String getE4237PrepaidCollectIndicatorCoded() {
return e4237PrepaidCollectIndicatorCoded;
}
public CPIChargePaymentInstructions setE4237PrepaidCollectIndicatorCoded(String e4237PrepaidCollectIndicatorCoded) {
this.e4237PrepaidCollectIndicatorCoded = e4237PrepaidCollectIndicatorCoded; return this;
}
}