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

org.milyn.edi.unedifact.d06b.SANCRT.SegmentGroup19 Maven / Gradle / Ivy

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

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d06b.common.PartyIdentification;    
import java.util.List;    
import org.milyn.edi.unedifact.d06b.common.Address;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup19 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private PartyIdentification partyIdentification;
    private List
address; private List segmentGroup20; public void write(Writer writer, Delimiters delimiters) throws IOException { Writer nodeWriter = writer; if(partyIdentification != null) { nodeWriter.write("PNA"); nodeWriter.write(delimiters.getField()); partyIdentification.write(nodeWriter, delimiters); } if(address != null && !address.isEmpty()) { for(Address addressInst : address) { nodeWriter.write("ADR"); nodeWriter.write(delimiters.getField()); addressInst.write(nodeWriter, delimiters); } } if(segmentGroup20 != null && !segmentGroup20.isEmpty()) { for(SegmentGroup20 segmentGroup20Inst : segmentGroup20) { segmentGroup20Inst.write(nodeWriter, delimiters); } } } public PartyIdentification getPartyIdentification() { return partyIdentification; } public SegmentGroup19 setPartyIdentification(PartyIdentification partyIdentification) { this.partyIdentification = partyIdentification; return this; } public List
getAddress() { return address; } public SegmentGroup19 setAddress(List
address) { this.address = address; return this; } public List getSegmentGroup20() { return segmentGroup20; } public SegmentGroup19 setSegmentGroup20(List segmentGroup20) { this.segmentGroup20 = segmentGroup20; return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy