org.virtuslab.edi.unedifact.d99a.common.PAIPaymentInstructions Maven / Gradle / Ivy
The newest version!
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.virtuslab.edi.unedifact.d99a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.virtuslab.edi.unedifact.d99a.common.field.C534PaymentInstructionDetails;
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 PAIPaymentInstructions implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private C534PaymentInstructionDetails c534PaymentInstructionDetails;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(c534PaymentInstructionDetails != null) {
c534PaymentInstructionDetails.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 C534PaymentInstructionDetails getC534PaymentInstructionDetails() {
return c534PaymentInstructionDetails;
}
public PAIPaymentInstructions setC534PaymentInstructionDetails(C534PaymentInstructionDetails c534PaymentInstructionDetails) {
this.c534PaymentInstructionDetails = c534PaymentInstructionDetails; return this;
}
}