org.milyn.edi.unedifact.d03b.MEDRUC.SegmentGroup2 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d03b.MEDRUC;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d03b.common.PartyIdentification;
import org.milyn.edi.unedifact.d03b.common.SequenceDetails;
import java.util.List;
import org.milyn.edi.unedifact.d03b.common.Address;
import org.milyn.edi.unedifact.d03b.common.ContactInformation;
import org.milyn.edi.unedifact.d03b.common.CommunicationContact;
import org.milyn.edi.unedifact.d03b.common.Reference;
import org.milyn.edi.unedifact.d03b.common.Relationship;
import org.milyn.edi.unedifact.d03b.common.Nationality;
import org.milyn.edi.unedifact.d03b.common.Language;
import org.milyn.edi.unedifact.d03b.common.OrganisationClassificationDetails;
import org.milyn.edi.unedifact.d03b.common.EmploymentDetails;
import org.milyn.edi.unedifact.d03b.common.Qualification;
import org.milyn.edi.unedifact.d03b.common.DateTimePeriod;
import org.milyn.edi.unedifact.d03b.common.Status;
import org.milyn.edi.unedifact.d03b.common.RequirementsAndConditions;
import org.milyn.edi.unedifact.d03b.common.PersonDemographicInformation;
import org.milyn.edi.unedifact.d03b.common.FinancialInstitutionInformation;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup2 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private PartyIdentification partyIdentification;
private SequenceDetails sequenceDetails;
private List address;
private List contactInformation;
private List communicationContact;
private List reference;
private List relationship;
private List nationality;
private List language;
private OrganisationClassificationDetails organisationClassificationDetails;
private List employmentDetails;
private List qualification;
private List dateTimePeriod;
private Status status;
private List requirementsAndConditions;
private PersonDemographicInformation personDemographicInformation;
private List financialInstitutionInformation;
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(sequenceDetails != null) {
nodeWriter.write("SEQ");
nodeWriter.write(delimiters.getField());
sequenceDetails.write(nodeWriter, delimiters);
}
if(address != null && !address.isEmpty()) {
for(Address addressInst : address) {
nodeWriter.write("ADR");
nodeWriter.write(delimiters.getField());
addressInst.write(nodeWriter, delimiters);
}
}
if(contactInformation != null && !contactInformation.isEmpty()) {
for(ContactInformation contactInformationInst : contactInformation) {
nodeWriter.write("CTA");
nodeWriter.write(delimiters.getField());
contactInformationInst.write(nodeWriter, delimiters);
}
}
if(communicationContact != null && !communicationContact.isEmpty()) {
for(CommunicationContact communicationContactInst : communicationContact) {
nodeWriter.write("COM");
nodeWriter.write(delimiters.getField());
communicationContactInst.write(nodeWriter, delimiters);
}
}
if(reference != null && !reference.isEmpty()) {
for(Reference referenceInst : reference) {
nodeWriter.write("RFF");
nodeWriter.write(delimiters.getField());
referenceInst.write(nodeWriter, delimiters);
}
}
if(relationship != null && !relationship.isEmpty()) {
for(Relationship relationshipInst : relationship) {
nodeWriter.write("REL");
nodeWriter.write(delimiters.getField());
relationshipInst.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(organisationClassificationDetails != null) {
nodeWriter.write("SPR");
nodeWriter.write(delimiters.getField());
organisationClassificationDetails.write(nodeWriter, delimiters);
}
if(employmentDetails != null && !employmentDetails.isEmpty()) {
for(EmploymentDetails employmentDetailsInst : employmentDetails) {
nodeWriter.write("EMP");
nodeWriter.write(delimiters.getField());
employmentDetailsInst.write(nodeWriter, delimiters);
}
}
if(qualification != null && !qualification.isEmpty()) {
for(Qualification qualificationInst : qualification) {
nodeWriter.write("QUA");
nodeWriter.write(delimiters.getField());
qualificationInst.write(nodeWriter, delimiters);
}
}
if(dateTimePeriod != null && !dateTimePeriod.isEmpty()) {
for(DateTimePeriod dateTimePeriodInst : dateTimePeriod) {
nodeWriter.write("DTM");
nodeWriter.write(delimiters.getField());
dateTimePeriodInst.write(nodeWriter, delimiters);
}
}
if(status != null) {
nodeWriter.write("STS");
nodeWriter.write(delimiters.getField());
status.write(nodeWriter, delimiters);
}
if(requirementsAndConditions != null && !requirementsAndConditions.isEmpty()) {
for(RequirementsAndConditions requirementsAndConditionsInst : requirementsAndConditions) {
nodeWriter.write("RCS");
nodeWriter.write(delimiters.getField());
requirementsAndConditionsInst.write(nodeWriter, delimiters);
}
}
if(personDemographicInformation != null) {
nodeWriter.write("PDI");
nodeWriter.write(delimiters.getField());
personDemographicInformation.write(nodeWriter, delimiters);
}
if(financialInstitutionInformation != null && !financialInstitutionInformation.isEmpty()) {
for(FinancialInstitutionInformation financialInstitutionInformationInst : financialInstitutionInformation) {
nodeWriter.write("FII");
nodeWriter.write(delimiters.getField());
financialInstitutionInformationInst.write(nodeWriter, delimiters);
}
}
}
public PartyIdentification getPartyIdentification() {
return partyIdentification;
}
public SegmentGroup2 setPartyIdentification(PartyIdentification partyIdentification) {
this.partyIdentification = partyIdentification; return this;
}
public SequenceDetails getSequenceDetails() {
return sequenceDetails;
}
public SegmentGroup2 setSequenceDetails(SequenceDetails sequenceDetails) {
this.sequenceDetails = sequenceDetails; return this;
}
public List getAddress() {
return address;
}
public SegmentGroup2 setAddress(List address) {
this.address = address; return this;
}
public List getContactInformation() {
return contactInformation;
}
public SegmentGroup2 setContactInformation(List contactInformation) {
this.contactInformation = contactInformation; return this;
}
public List getCommunicationContact() {
return communicationContact;
}
public SegmentGroup2 setCommunicationContact(List communicationContact) {
this.communicationContact = communicationContact; return this;
}
public List getReference() {
return reference;
}
public SegmentGroup2 setReference(List reference) {
this.reference = reference; return this;
}
public List getRelationship() {
return relationship;
}
public SegmentGroup2 setRelationship(List relationship) {
this.relationship = relationship; return this;
}
public List getNationality() {
return nationality;
}
public SegmentGroup2 setNationality(List nationality) {
this.nationality = nationality; return this;
}
public List getLanguage() {
return language;
}
public SegmentGroup2 setLanguage(List language) {
this.language = language; return this;
}
public OrganisationClassificationDetails getOrganisationClassificationDetails() {
return organisationClassificationDetails;
}
public SegmentGroup2 setOrganisationClassificationDetails(OrganisationClassificationDetails organisationClassificationDetails) {
this.organisationClassificationDetails = organisationClassificationDetails; return this;
}
public List getEmploymentDetails() {
return employmentDetails;
}
public SegmentGroup2 setEmploymentDetails(List employmentDetails) {
this.employmentDetails = employmentDetails; return this;
}
public List getQualification() {
return qualification;
}
public SegmentGroup2 setQualification(List qualification) {
this.qualification = qualification; return this;
}
public List getDateTimePeriod() {
return dateTimePeriod;
}
public SegmentGroup2 setDateTimePeriod(List dateTimePeriod) {
this.dateTimePeriod = dateTimePeriod; return this;
}
public Status getStatus() {
return status;
}
public SegmentGroup2 setStatus(Status status) {
this.status = status; return this;
}
public List getRequirementsAndConditions() {
return requirementsAndConditions;
}
public SegmentGroup2 setRequirementsAndConditions(List requirementsAndConditions) {
this.requirementsAndConditions = requirementsAndConditions; return this;
}
public PersonDemographicInformation getPersonDemographicInformation() {
return personDemographicInformation;
}
public SegmentGroup2 setPersonDemographicInformation(PersonDemographicInformation personDemographicInformation) {
this.personDemographicInformation = personDemographicInformation; return this;
}
public List getFinancialInstitutionInformation() {
return financialInstitutionInformation;
}
public SegmentGroup2 setFinancialInstitutionInformation(List financialInstitutionInformation) {
this.financialInstitutionInformation = financialInstitutionInformation; return this;
}
}