org.milyn.edi.unedifact.d01a.common.AGRAgreementIdentification Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d01a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d01a.common.field.C543AgreementTypeIdentification;
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 AGRAgreementIdentification implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private C543AgreementTypeIdentification c543AgreementTypeIdentification;
private String e9419ServiceLayerCode;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(c543AgreementTypeIdentification != null) {
c543AgreementTypeIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(e9419ServiceLayerCode != null) {
nodeWriter.write(delimiters.escape(e9419ServiceLayerCode.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 C543AgreementTypeIdentification getC543AgreementTypeIdentification() {
return c543AgreementTypeIdentification;
}
public AGRAgreementIdentification setC543AgreementTypeIdentification(C543AgreementTypeIdentification c543AgreementTypeIdentification) {
this.c543AgreementTypeIdentification = c543AgreementTypeIdentification; return this;
}
public String getE9419ServiceLayerCode() {
return e9419ServiceLayerCode;
}
public AGRAgreementIdentification setE9419ServiceLayerCode(String e9419ServiceLayerCode) {
this.e9419ServiceLayerCode = e9419ServiceLayerCode; return this;
}
}