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

org.milyn.edi.unedifact.d09b.GOVCBR.SegmentGroup204 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.d09b.GOVCBR;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d09b.common.INPPartiesAndInstruction;    
import java.util.List;    
import org.milyn.edi.unedifact.d09b.common.DTMDateTimePeriod;    
import org.milyn.edi.unedifact.d09b.common.LOCPlaceLocationIdentification;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup204 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private INPPartiesAndInstruction iNPPartiesAndInstruction;
    private List dTMDateTimePeriod;
    private List lOCPlaceLocationIdentification;
    private SegmentGroup205 segmentGroup205;

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

        if(iNPPartiesAndInstruction != null) {
            nodeWriter.write("INP");
            nodeWriter.write(delimiters.getField());
            iNPPartiesAndInstruction.write(nodeWriter, delimiters);
        }
        if(dTMDateTimePeriod != null && !dTMDateTimePeriod.isEmpty()) {
            for(DTMDateTimePeriod dTMDateTimePeriodInst : dTMDateTimePeriod) {
                nodeWriter.write("DTM");
                nodeWriter.write(delimiters.getField());
                dTMDateTimePeriodInst.write(nodeWriter, delimiters);
            }
        }
        if(lOCPlaceLocationIdentification != null && !lOCPlaceLocationIdentification.isEmpty()) {
            for(LOCPlaceLocationIdentification lOCPlaceLocationIdentificationInst : lOCPlaceLocationIdentification) {
                nodeWriter.write("LOC");
                nodeWriter.write(delimiters.getField());
                lOCPlaceLocationIdentificationInst.write(nodeWriter, delimiters);
            }
        }
        if(segmentGroup205 != null) {
            segmentGroup205.write(nodeWriter, delimiters);
        }
    }

    public INPPartiesAndInstruction getINPPartiesAndInstruction() {
        return iNPPartiesAndInstruction;
    }

    public SegmentGroup204 setINPPartiesAndInstruction(INPPartiesAndInstruction iNPPartiesAndInstruction) {
        this.iNPPartiesAndInstruction = iNPPartiesAndInstruction;  return this;
    }

    public List getDTMDateTimePeriod() {
        return dTMDateTimePeriod;
    }

    public SegmentGroup204 setDTMDateTimePeriod(List dTMDateTimePeriod) {
        this.dTMDateTimePeriod = dTMDateTimePeriod;  return this;
    }

    public List getLOCPlaceLocationIdentification() {
        return lOCPlaceLocationIdentification;
    }

    public SegmentGroup204 setLOCPlaceLocationIdentification(List lOCPlaceLocationIdentification) {
        this.lOCPlaceLocationIdentification = lOCPlaceLocationIdentification;  return this;
    }

    public SegmentGroup205 getSegmentGroup205() {
        return segmentGroup205;
    }

    public SegmentGroup204 setSegmentGroup205(SegmentGroup205 segmentGroup205) {
        this.segmentGroup205 = segmentGroup205;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy