org.milyn.edi.unedifact.d05a.MEDRPT.SegmentGroup1 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d05a.MEDRPT;
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.CommunicationContact;
import org.milyn.edi.unedifact.d05a.common.FreeText;
import org.milyn.edi.unedifact.d05a.common.Reference;
import org.milyn.edi.unedifact.d05a.common.SequenceDetails;
import org.milyn.edi.unedifact.d05a.common.Language;
import org.milyn.edi.unedifact.d05a.common.OrganisationClassificationDetails;
import org.milyn.edi.unedifact.d05a.common.Qualification;
import org.milyn.edi.unedifact.d05a.common.EmploymentDetails;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup1 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private PartyIdentification partyIdentification;
private List address;
private List communicationContact;
private List freeText;
private List reference;
private SequenceDetails sequenceDetails;
private List language;
private OrganisationClassificationDetails organisationClassificationDetails;
private List qualification;
private List employmentDetails;
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(communicationContact != null && !communicationContact.isEmpty()) {
for(CommunicationContact communicationContactInst : communicationContact) {
nodeWriter.write("COM");
nodeWriter.write(delimiters.getField());
communicationContactInst.write(nodeWriter, delimiters);
}
}
if(freeText != null && !freeText.isEmpty()) {
for(FreeText freeTextInst : freeText) {
nodeWriter.write("FTX");
nodeWriter.write(delimiters.getField());
freeTextInst.write(nodeWriter, delimiters);
}
}
if(reference != null && !reference.isEmpty()) {
for(Reference referenceInst : reference) {
nodeWriter.write("RFF");
nodeWriter.write(delimiters.getField());
referenceInst.write(nodeWriter, delimiters);
}
}
if(sequenceDetails != null) {
nodeWriter.write("SEQ");
nodeWriter.write(delimiters.getField());
sequenceDetails.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(qualification != null && !qualification.isEmpty()) {
for(Qualification qualificationInst : qualification) {
nodeWriter.write("QUA");
nodeWriter.write(delimiters.getField());
qualificationInst.write(nodeWriter, delimiters);
}
}
if(employmentDetails != null && !employmentDetails.isEmpty()) {
for(EmploymentDetails employmentDetailsInst : employmentDetails) {
nodeWriter.write("EMP");
nodeWriter.write(delimiters.getField());
employmentDetailsInst.write(nodeWriter, delimiters);
}
}
}
public PartyIdentification getPartyIdentification() {
return partyIdentification;
}
public SegmentGroup1 setPartyIdentification(PartyIdentification partyIdentification) {
this.partyIdentification = partyIdentification; return this;
}
public List getAddress() {
return address;
}
public SegmentGroup1 setAddress(List address) {
this.address = address; return this;
}
public List getCommunicationContact() {
return communicationContact;
}
public SegmentGroup1 setCommunicationContact(List communicationContact) {
this.communicationContact = communicationContact; return this;
}
public List getFreeText() {
return freeText;
}
public SegmentGroup1 setFreeText(List freeText) {
this.freeText = freeText; return this;
}
public List getReference() {
return reference;
}
public SegmentGroup1 setReference(List reference) {
this.reference = reference; return this;
}
public SequenceDetails getSequenceDetails() {
return sequenceDetails;
}
public SegmentGroup1 setSequenceDetails(SequenceDetails sequenceDetails) {
this.sequenceDetails = sequenceDetails; return this;
}
public List getLanguage() {
return language;
}
public SegmentGroup1 setLanguage(List language) {
this.language = language; return this;
}
public OrganisationClassificationDetails getOrganisationClassificationDetails() {
return organisationClassificationDetails;
}
public SegmentGroup1 setOrganisationClassificationDetails(OrganisationClassificationDetails organisationClassificationDetails) {
this.organisationClassificationDetails = organisationClassificationDetails; return this;
}
public List getQualification() {
return qualification;
}
public SegmentGroup1 setQualification(List qualification) {
this.qualification = qualification; return this;
}
public List getEmploymentDetails() {
return employmentDetails;
}
public SegmentGroup1 setEmploymentDetails(List employmentDetails) {
this.employmentDetails = employmentDetails; return this;
}
}