org.milyn.edi.unedifact.d06b.MEDRUC.SegmentGroup10 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d06b.MEDRUC;
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.Reference;
import org.milyn.edi.unedifact.d06b.common.Address;
import org.milyn.edi.unedifact.d06b.common.CommunicationContact;
import org.milyn.edi.unedifact.d06b.common.DateTimePeriod;
import org.milyn.edi.unedifact.d06b.common.PersonDemographicInformation;
import org.milyn.edi.unedifact.d06b.common.Result;
import org.milyn.edi.unedifact.d06b.common.Nationality;
import org.milyn.edi.unedifact.d06b.common.Language;
import org.milyn.edi.unedifact.d06b.common.HandlingInstructions;
import org.milyn.edi.unedifact.d06b.common.Relationship;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup10 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private PartyIdentification partyIdentification;
private List reference;
private List address;
private List communicationContact;
private List dateTimePeriod;
private PersonDemographicInformation personDemographicInformation;
private List result;
private List nationality;
private List language;
private List handlingInstructions;
private Relationship relationship;
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(reference != null && !reference.isEmpty()) {
for(Reference referenceInst : reference) {
nodeWriter.write("RFF");
nodeWriter.write(delimiters.getField());
referenceInst.write(nodeWriter, delimiters);
}
}
if(address != null && !address.isEmpty()) {
for(Address addressInst : address) {
nodeWriter.write("ADR");
nodeWriter.write(delimiters.getField());
addressInst.write(nodeWriter, delimiters);
}
}
if(communicationContact != null && !communicationContact.isEmpty()) {
for(CommunicationContact communicationContactInst : communicationContact) {
nodeWriter.write("COM");
nodeWriter.write(delimiters.getField());
communicationContactInst.write(nodeWriter, delimiters);
}
}
if(dateTimePeriod != null && !dateTimePeriod.isEmpty()) {
for(DateTimePeriod dateTimePeriodInst : dateTimePeriod) {
nodeWriter.write("DTM");
nodeWriter.write(delimiters.getField());
dateTimePeriodInst.write(nodeWriter, delimiters);
}
}
if(personDemographicInformation != null) {
nodeWriter.write("PDI");
nodeWriter.write(delimiters.getField());
personDemographicInformation.write(nodeWriter, delimiters);
}
if(result != null && !result.isEmpty()) {
for(Result resultInst : result) {
nodeWriter.write("RSL");
nodeWriter.write(delimiters.getField());
resultInst.write(nodeWriter, delimiters);
}
}
if(nationality != null && !nationality.isEmpty()) {
for(Nationality nationalityInst : nationality) {
nodeWriter.write("NAT");
nodeWriter.write(delimiters.getField());
nationalityInst.write(nodeWriter, delimiters);
}
}
if(language != null && !language.isEmpty()) {
for(Language languageInst : language) {
nodeWriter.write("LAN");
nodeWriter.write(delimiters.getField());
languageInst.write(nodeWriter, delimiters);
}
}
if(handlingInstructions != null && !handlingInstructions.isEmpty()) {
for(HandlingInstructions handlingInstructionsInst : handlingInstructions) {
nodeWriter.write("HAN");
nodeWriter.write(delimiters.getField());
handlingInstructionsInst.write(nodeWriter, delimiters);
}
}
if(relationship != null) {
nodeWriter.write("REL");
nodeWriter.write(delimiters.getField());
relationship.write(nodeWriter, delimiters);
}
}
public PartyIdentification getPartyIdentification() {
return partyIdentification;
}
public SegmentGroup10 setPartyIdentification(PartyIdentification partyIdentification) {
this.partyIdentification = partyIdentification; return this;
}
public List getReference() {
return reference;
}
public SegmentGroup10 setReference(List reference) {
this.reference = reference; return this;
}
public List getAddress() {
return address;
}
public SegmentGroup10 setAddress(List address) {
this.address = address; return this;
}
public List getCommunicationContact() {
return communicationContact;
}
public SegmentGroup10 setCommunicationContact(List communicationContact) {
this.communicationContact = communicationContact; return this;
}
public List getDateTimePeriod() {
return dateTimePeriod;
}
public SegmentGroup10 setDateTimePeriod(List dateTimePeriod) {
this.dateTimePeriod = dateTimePeriod; return this;
}
public PersonDemographicInformation getPersonDemographicInformation() {
return personDemographicInformation;
}
public SegmentGroup10 setPersonDemographicInformation(PersonDemographicInformation personDemographicInformation) {
this.personDemographicInformation = personDemographicInformation; return this;
}
public List getResult() {
return result;
}
public SegmentGroup10 setResult(List result) {
this.result = result; return this;
}
public List getNationality() {
return nationality;
}
public SegmentGroup10 setNationality(List nationality) {
this.nationality = nationality; return this;
}
public List getLanguage() {
return language;
}
public SegmentGroup10 setLanguage(List language) {
this.language = language; return this;
}
public List getHandlingInstructions() {
return handlingInstructions;
}
public SegmentGroup10 setHandlingInstructions(List handlingInstructions) {
this.handlingInstructions = handlingInstructions; return this;
}
public Relationship getRelationship() {
return relationship;
}
public SegmentGroup10 setRelationship(Relationship relationship) {
this.relationship = relationship; return this;
}
}