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

org.milyn.edi.unedifact.d01a.PROTAP.SegmentGroup6 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.d01a.PROTAP;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d01a.common.EFIExternalFileLinkIdentification;    
import org.milyn.edi.unedifact.d01a.common.CEDComputerEnvironmentDetails;    
import org.milyn.edi.unedifact.d01a.common.DTMDateTimePeriod;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup6 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private EFIExternalFileLinkIdentification eFIExternalFileLinkIdentification;
    private CEDComputerEnvironmentDetails cEDComputerEnvironmentDetails;
    private DTMDateTimePeriod dTMDateTimePeriod;

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

        if(eFIExternalFileLinkIdentification != null) {
            nodeWriter.write("EFI");
            nodeWriter.write(delimiters.getField());
            eFIExternalFileLinkIdentification.write(nodeWriter, delimiters);
        }
        if(cEDComputerEnvironmentDetails != null) {
            nodeWriter.write("CED");
            nodeWriter.write(delimiters.getField());
            cEDComputerEnvironmentDetails.write(nodeWriter, delimiters);
        }
        if(dTMDateTimePeriod != null) {
            nodeWriter.write("DTM");
            nodeWriter.write(delimiters.getField());
            dTMDateTimePeriod.write(nodeWriter, delimiters);
        }
    }

    public EFIExternalFileLinkIdentification getEFIExternalFileLinkIdentification() {
        return eFIExternalFileLinkIdentification;
    }

    public SegmentGroup6 setEFIExternalFileLinkIdentification(EFIExternalFileLinkIdentification eFIExternalFileLinkIdentification) {
        this.eFIExternalFileLinkIdentification = eFIExternalFileLinkIdentification;  return this;
    }

    public CEDComputerEnvironmentDetails getCEDComputerEnvironmentDetails() {
        return cEDComputerEnvironmentDetails;
    }

    public SegmentGroup6 setCEDComputerEnvironmentDetails(CEDComputerEnvironmentDetails cEDComputerEnvironmentDetails) {
        this.cEDComputerEnvironmentDetails = cEDComputerEnvironmentDetails;  return this;
    }

    public DTMDateTimePeriod getDTMDateTimePeriod() {
        return dTMDateTimePeriod;
    }

    public SegmentGroup6 setDTMDateTimePeriod(DTMDateTimePeriod dTMDateTimePeriod) {
        this.dTMDateTimePeriod = dTMDateTimePeriod;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy