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

org.milyn.edi.unedifact.d06b.DELJIT.SegmentGroup9 Maven / Gradle / Ivy

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

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d06b.common.TransportInformation;    
import org.milyn.edi.unedifact.d06b.common.TransportMovementDetails;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup9 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private TransportInformation transportInformation;
    private TransportMovementDetails transportMovementDetails;

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

        if(transportInformation != null) {
            nodeWriter.write("TDT");
            nodeWriter.write(delimiters.getField());
            transportInformation.write(nodeWriter, delimiters);
        }
        if(transportMovementDetails != null) {
            nodeWriter.write("TMD");
            nodeWriter.write(delimiters.getField());
            transportMovementDetails.write(nodeWriter, delimiters);
        }
    }

    public TransportInformation getTransportInformation() {
        return transportInformation;
    }

    public SegmentGroup9 setTransportInformation(TransportInformation transportInformation) {
        this.transportInformation = transportInformation;  return this;
    }

    public TransportMovementDetails getTransportMovementDetails() {
        return transportMovementDetails;
    }

    public SegmentGroup9 setTransportMovementDetails(TransportMovementDetails transportMovementDetails) {
        this.transportMovementDetails = transportMovementDetails;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy