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

org.milyn.edi.unedifact.d16a.common.CPTAccountIdentification Maven / Gradle / Ivy

/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d16a.common;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d16a.common.field.C593AccountIdentification;    
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 CPTAccountIdentification implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private String e4437AccountTypeCodeQualifier;
    private C593AccountIdentification c593AccountIdentification;

    public void write(Writer writer, Delimiters delimiters) throws IOException {
        
        Writer nodeWriter = new StringWriter();

        List nodeTokens = new ArrayList();

        if(e4437AccountTypeCodeQualifier != null) {
            nodeWriter.write(delimiters.escape(e4437AccountTypeCodeQualifier.toString()));
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(c593AccountIdentification != null) {
            c593AccountIdentification.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 String getE4437AccountTypeCodeQualifier() {
        return e4437AccountTypeCodeQualifier;
    }

    public CPTAccountIdentification setE4437AccountTypeCodeQualifier(String e4437AccountTypeCodeQualifier) {
        this.e4437AccountTypeCodeQualifier = e4437AccountTypeCodeQualifier;  return this;
    }

    public C593AccountIdentification getC593AccountIdentification() {
        return c593AccountIdentification;
    }

    public CPTAccountIdentification setC593AccountIdentification(C593AccountIdentification c593AccountIdentification) {
        this.c593AccountIdentification = c593AccountIdentification;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy