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

org.milyn.edi.unedifact.d05a.common.OrganisationClassificationDetails Maven / Gradle / Ivy

There is a newer version: 1.7.1.0
Show newest version
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d05a.common;

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

    private static final long serialVersionUID = 1L;

    private String sectorAreaIdentificationCodeQualifier;
    private String organisationClassificationCode;
    private OrganisationClassificationDetailC844 organisationClassificationDetail;

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

        List nodeTokens = new ArrayList();

        if(sectorAreaIdentificationCodeQualifier != null) {
            nodeWriter.write(delimiters.escape(sectorAreaIdentificationCodeQualifier.toString()));
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(organisationClassificationCode != null) {
            nodeWriter.write(delimiters.escape(organisationClassificationCode.toString()));
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(organisationClassificationDetail != null) {
            organisationClassificationDetail.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 getSectorAreaIdentificationCodeQualifier() {
        return sectorAreaIdentificationCodeQualifier;
    }

    public OrganisationClassificationDetails setSectorAreaIdentificationCodeQualifier(String sectorAreaIdentificationCodeQualifier) {
        this.sectorAreaIdentificationCodeQualifier = sectorAreaIdentificationCodeQualifier;  return this;
    }

    public String getOrganisationClassificationCode() {
        return organisationClassificationCode;
    }

    public OrganisationClassificationDetails setOrganisationClassificationCode(String organisationClassificationCode) {
        this.organisationClassificationCode = organisationClassificationCode;  return this;
    }

    public OrganisationClassificationDetailC844 getOrganisationClassificationDetail() {
        return organisationClassificationDetail;
    }

    public OrganisationClassificationDetails setOrganisationClassificationDetail(OrganisationClassificationDetailC844 organisationClassificationDetail) {
        this.organisationClassificationDetail = organisationClassificationDetail;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy