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

org.virtuslab.edi.unedifact.d99a.CUSRES.SegmentGroup4 Maven / Gradle / Ivy

The newest version!
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.virtuslab.edi.unedifact.d99a.CUSRES;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.virtuslab.edi.unedifact.d99a.common.ERPErrorPointDetails;    
import java.util.List;    
import org.virtuslab.edi.unedifact.d99a.common.RFFReference;    
import org.virtuslab.edi.unedifact.d99a.common.ERCApplicationErrorInformation;    
import org.virtuslab.edi.unedifact.d99a.common.FTXFreeText;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup4 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private ERPErrorPointDetails eRPErrorPointDetails;
    private List rFFReference;
    private List eRCApplicationErrorInformation;
    private List fTXFreeText;

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

        if(eRPErrorPointDetails != null) {
            nodeWriter.write("ERP");
            nodeWriter.write(delimiters.getField());
            eRPErrorPointDetails.write(nodeWriter, delimiters);
        }
        if(rFFReference != null && !rFFReference.isEmpty()) {
            for(RFFReference rFFReferenceInst : rFFReference) {
                nodeWriter.write("RFF");
                nodeWriter.write(delimiters.getField());
                rFFReferenceInst.write(nodeWriter, delimiters);
            }
        }
        if(eRCApplicationErrorInformation != null && !eRCApplicationErrorInformation.isEmpty()) {
            for(ERCApplicationErrorInformation eRCApplicationErrorInformationInst : eRCApplicationErrorInformation) {
                nodeWriter.write("ERC");
                nodeWriter.write(delimiters.getField());
                eRCApplicationErrorInformationInst.write(nodeWriter, delimiters);
            }
        }
        if(fTXFreeText != null && !fTXFreeText.isEmpty()) {
            for(FTXFreeText fTXFreeTextInst : fTXFreeText) {
                nodeWriter.write("FTX");
                nodeWriter.write(delimiters.getField());
                fTXFreeTextInst.write(nodeWriter, delimiters);
            }
        }
    }

    public ERPErrorPointDetails getERPErrorPointDetails() {
        return eRPErrorPointDetails;
    }

    public SegmentGroup4 setERPErrorPointDetails(ERPErrorPointDetails eRPErrorPointDetails) {
        this.eRPErrorPointDetails = eRPErrorPointDetails;  return this;
    }

    public List getRFFReference() {
        return rFFReference;
    }

    public SegmentGroup4 setRFFReference(List rFFReference) {
        this.rFFReference = rFFReference;  return this;
    }

    public List getERCApplicationErrorInformation() {
        return eRCApplicationErrorInformation;
    }

    public SegmentGroup4 setERCApplicationErrorInformation(List eRCApplicationErrorInformation) {
        this.eRCApplicationErrorInformation = eRCApplicationErrorInformation;  return this;
    }

    public List getFTXFreeText() {
        return fTXFreeText;
    }

    public SegmentGroup4 setFTXFreeText(List fTXFreeText) {
        this.fTXFreeText = fTXFreeText;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy