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

org.milyn.edi.unedifact.d05a.REGENT.SegmentGroup14 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.d05a.REGENT;

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

public class SegmentGroup14 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private PartyIdentification partyIdentification;
    private List
address; private List placeLocationIdentification; 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(placeLocationIdentification != null && !placeLocationIdentification.isEmpty()) { for(PlaceLocationIdentification placeLocationIdentificationInst : placeLocationIdentification) { nodeWriter.write("LOC"); nodeWriter.write(delimiters.getField()); placeLocationIdentificationInst.write(nodeWriter, delimiters); } } } public PartyIdentification getPartyIdentification() { return partyIdentification; } public SegmentGroup14 setPartyIdentification(PartyIdentification partyIdentification) { this.partyIdentification = partyIdentification; return this; } public List
getAddress() { return address; } public SegmentGroup14 setAddress(List
address) { this.address = address; return this; } public List getPlaceLocationIdentification() { return placeLocationIdentification; } public SegmentGroup14 setPlaceLocationIdentification(List placeLocationIdentification) { this.placeLocationIdentification = placeLocationIdentification; return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy