All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.edi.unedifact.d13a.common.AGRAgreementIdentification Maven / Gradle / Ivy

The newest version!
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d13a.common;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d13a.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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy