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

org.milyn.edi.unedifact.d13a.common.INPPartiesAndInstruction 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.C849PartiesToInstruction;    
import org.milyn.edi.unedifact.d13a.common.field.C522Instruction;    
import org.milyn.edi.unedifact.d13a.common.field.C850StatusOfInstruction;    
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 INPPartiesAndInstruction implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private C849PartiesToInstruction c849PartiesToInstruction;
    private C522Instruction c522Instruction;
    private C850StatusOfInstruction c850StatusOfInstruction;
    private String e1229ActionCode;

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

        List nodeTokens = new ArrayList();

        if(c849PartiesToInstruction != null) {
            c849PartiesToInstruction.write(nodeWriter, delimiters);
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(c522Instruction != null) {
            c522Instruction.write(nodeWriter, delimiters);
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(c850StatusOfInstruction != null) {
            c850StatusOfInstruction.write(nodeWriter, delimiters);
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(e1229ActionCode != null) {
            nodeWriter.write(delimiters.escape(e1229ActionCode.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 C849PartiesToInstruction getC849PartiesToInstruction() {
        return c849PartiesToInstruction;
    }

    public INPPartiesAndInstruction setC849PartiesToInstruction(C849PartiesToInstruction c849PartiesToInstruction) {
        this.c849PartiesToInstruction = c849PartiesToInstruction;  return this;
    }

    public C522Instruction getC522Instruction() {
        return c522Instruction;
    }

    public INPPartiesAndInstruction setC522Instruction(C522Instruction c522Instruction) {
        this.c522Instruction = c522Instruction;  return this;
    }

    public C850StatusOfInstruction getC850StatusOfInstruction() {
        return c850StatusOfInstruction;
    }

    public INPPartiesAndInstruction setC850StatusOfInstruction(C850StatusOfInstruction c850StatusOfInstruction) {
        this.c850StatusOfInstruction = c850StatusOfInstruction;  return this;
    }

    public String getE1229ActionCode() {
        return e1229ActionCode;
    }

    public INPPartiesAndInstruction setE1229ActionCode(String e1229ActionCode) {
        this.e1229ActionCode = e1229ActionCode;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy