org.milyn.edi.unedifact.d99b.common.AgreementIdentification Maven / Gradle / Ivy
/**
* 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.AgreementTypeIdentificationC543;
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 AgreementIdentification implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private AgreementTypeIdentificationC543 agreementTypeIdentification;
private String serviceLayerCoded;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(agreementTypeIdentification != null) {
agreementTypeIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(serviceLayerCoded != null) {
nodeWriter.write(delimiters.escape(serviceLayerCoded.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 AgreementTypeIdentificationC543 getAgreementTypeIdentification() {
return agreementTypeIdentification;
}
public AgreementIdentification setAgreementTypeIdentification(AgreementTypeIdentificationC543 agreementTypeIdentification) {
this.agreementTypeIdentification = agreementTypeIdentification; return this;
}
public String getServiceLayerCoded() {
return serviceLayerCoded;
}
public AgreementIdentification setServiceLayerCoded(String serviceLayerCoded) {
this.serviceLayerCoded = serviceLayerCoded; return this;
}
}