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

org.milyn.edi.unedifact.d02a.MEDPRE.SegmentGroup17 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.d02a.MEDPRE;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d02a.common.FinancialChargesAllocation;    
import java.util.List;    
import org.milyn.edi.unedifact.d02a.common.PartyIdentification;    
import org.milyn.edi.unedifact.d02a.common.Identity;    
import org.milyn.edi.unedifact.d02a.common.RequirementsAndConditions;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup17 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private FinancialChargesAllocation financialChargesAllocation;
    private List partyIdentification;
    private List identity;
    private List requirementsAndConditions;
    private List segmentGroup18;

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

        if(financialChargesAllocation != null) {
            nodeWriter.write("FCA");
            nodeWriter.write(delimiters.getField());
            financialChargesAllocation.write(nodeWriter, delimiters);
        }
        if(partyIdentification != null && !partyIdentification.isEmpty()) {
            for(PartyIdentification partyIdentificationInst : partyIdentification) {
                nodeWriter.write("PNA");
                nodeWriter.write(delimiters.getField());
                partyIdentificationInst.write(nodeWriter, delimiters);
            }
        }
        if(identity != null && !identity.isEmpty()) {
            for(Identity identityInst : identity) {
                nodeWriter.write("IDE");
                nodeWriter.write(delimiters.getField());
                identityInst.write(nodeWriter, delimiters);
            }
        }
        if(requirementsAndConditions != null && !requirementsAndConditions.isEmpty()) {
            for(RequirementsAndConditions requirementsAndConditionsInst : requirementsAndConditions) {
                nodeWriter.write("RCS");
                nodeWriter.write(delimiters.getField());
                requirementsAndConditionsInst.write(nodeWriter, delimiters);
            }
        }
        if(segmentGroup18 != null && !segmentGroup18.isEmpty()) {
            for(SegmentGroup18 segmentGroup18Inst : segmentGroup18) {
                segmentGroup18Inst.write(nodeWriter, delimiters);
            }
        }
    }

    public FinancialChargesAllocation getFinancialChargesAllocation() {
        return financialChargesAllocation;
    }

    public SegmentGroup17 setFinancialChargesAllocation(FinancialChargesAllocation financialChargesAllocation) {
        this.financialChargesAllocation = financialChargesAllocation;  return this;
    }

    public List getPartyIdentification() {
        return partyIdentification;
    }

    public SegmentGroup17 setPartyIdentification(List partyIdentification) {
        this.partyIdentification = partyIdentification;  return this;
    }

    public List getIdentity() {
        return identity;
    }

    public SegmentGroup17 setIdentity(List identity) {
        this.identity = identity;  return this;
    }

    public List getRequirementsAndConditions() {
        return requirementsAndConditions;
    }

    public SegmentGroup17 setRequirementsAndConditions(List requirementsAndConditions) {
        this.requirementsAndConditions = requirementsAndConditions;  return this;
    }

    public List getSegmentGroup18() {
        return segmentGroup18;
    }

    public SegmentGroup17 setSegmentGroup18(List segmentGroup18) {
        this.segmentGroup18 = segmentGroup18;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy