org.milyn.edi.unedifact.d06b.ICASRP.SegmentGroup13 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d06b.ICASRP;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d06b.common.ComponentDetails;
import java.util.List;
import org.milyn.edi.unedifact.d06b.common.Identity;
import org.milyn.edi.unedifact.d06b.common.Address;
import org.milyn.edi.unedifact.d06b.common.FinancialInstitutionInformation;
import org.milyn.edi.unedifact.d06b.common.Attribute;
import org.milyn.edi.unedifact.d06b.common.CommunicationContact;
import org.milyn.edi.unedifact.d06b.common.DateTimePeriod;
import org.milyn.edi.unedifact.d06b.common.EmploymentDetails;
import org.milyn.edi.unedifact.d06b.common.MonetaryAmount;
import org.milyn.edi.unedifact.d06b.common.QueryAndResponse;
import org.milyn.edi.unedifact.d06b.common.Quantity;
import org.milyn.edi.unedifact.d06b.common.Reference;
import org.milyn.edi.unedifact.d06b.common.FreeText;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup13 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private ComponentDetails componentDetails;
private List identity;
private Address address;
private FinancialInstitutionInformation financialInstitutionInformation;
private List attribute;
private List communicationContact;
private List dateTimePeriod;
private List employmentDetails;
private List monetaryAmount;
private List queryAndResponse;
private List quantity;
private List reference;
private List freeText;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(componentDetails != null) {
nodeWriter.write("COD");
nodeWriter.write(delimiters.getField());
componentDetails.write(nodeWriter, delimiters);
}
if(identity != null && !identity.isEmpty()) {
for(Identity identityInst : identity) {
nodeWriter.write("IDE");
nodeWriter.write(delimiters.getField());
identityInst.write(nodeWriter, delimiters);
}
}
if(address != null) {
nodeWriter.write("ADR");
nodeWriter.write(delimiters.getField());
address.write(nodeWriter, delimiters);
}
if(financialInstitutionInformation != null) {
nodeWriter.write("FII");
nodeWriter.write(delimiters.getField());
financialInstitutionInformation.write(nodeWriter, delimiters);
}
if(attribute != null && !attribute.isEmpty()) {
for(Attribute attributeInst : attribute) {
nodeWriter.write("ATT");
nodeWriter.write(delimiters.getField());
attributeInst.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(employmentDetails != null && !employmentDetails.isEmpty()) {
for(EmploymentDetails employmentDetailsInst : employmentDetails) {
nodeWriter.write("EMP");
nodeWriter.write(delimiters.getField());
employmentDetailsInst.write(nodeWriter, delimiters);
}
}
if(monetaryAmount != null && !monetaryAmount.isEmpty()) {
for(MonetaryAmount monetaryAmountInst : monetaryAmount) {
nodeWriter.write("MOA");
nodeWriter.write(delimiters.getField());
monetaryAmountInst.write(nodeWriter, delimiters);
}
}
if(queryAndResponse != null && !queryAndResponse.isEmpty()) {
for(QueryAndResponse queryAndResponseInst : queryAndResponse) {
nodeWriter.write("QRS");
nodeWriter.write(delimiters.getField());
queryAndResponseInst.write(nodeWriter, delimiters);
}
}
if(quantity != null && !quantity.isEmpty()) {
for(Quantity quantityInst : quantity) {
nodeWriter.write("QTY");
nodeWriter.write(delimiters.getField());
quantityInst.write(nodeWriter, delimiters);
}
}
if(reference != null && !reference.isEmpty()) {
for(Reference referenceInst : reference) {
nodeWriter.write("RFF");
nodeWriter.write(delimiters.getField());
referenceInst.write(nodeWriter, delimiters);
}
}
if(freeText != null && !freeText.isEmpty()) {
for(FreeText freeTextInst : freeText) {
nodeWriter.write("FTX");
nodeWriter.write(delimiters.getField());
freeTextInst.write(nodeWriter, delimiters);
}
}
}
public ComponentDetails getComponentDetails() {
return componentDetails;
}
public SegmentGroup13 setComponentDetails(ComponentDetails componentDetails) {
this.componentDetails = componentDetails; return this;
}
public List getIdentity() {
return identity;
}
public SegmentGroup13 setIdentity(List identity) {
this.identity = identity; return this;
}
public Address getAddress() {
return address;
}
public SegmentGroup13 setAddress(Address address) {
this.address = address; return this;
}
public FinancialInstitutionInformation getFinancialInstitutionInformation() {
return financialInstitutionInformation;
}
public SegmentGroup13 setFinancialInstitutionInformation(FinancialInstitutionInformation financialInstitutionInformation) {
this.financialInstitutionInformation = financialInstitutionInformation; return this;
}
public List getAttribute() {
return attribute;
}
public SegmentGroup13 setAttribute(List attribute) {
this.attribute = attribute; return this;
}
public List getCommunicationContact() {
return communicationContact;
}
public SegmentGroup13 setCommunicationContact(List communicationContact) {
this.communicationContact = communicationContact; return this;
}
public List getDateTimePeriod() {
return dateTimePeriod;
}
public SegmentGroup13 setDateTimePeriod(List dateTimePeriod) {
this.dateTimePeriod = dateTimePeriod; return this;
}
public List getEmploymentDetails() {
return employmentDetails;
}
public SegmentGroup13 setEmploymentDetails(List employmentDetails) {
this.employmentDetails = employmentDetails; return this;
}
public List getMonetaryAmount() {
return monetaryAmount;
}
public SegmentGroup13 setMonetaryAmount(List monetaryAmount) {
this.monetaryAmount = monetaryAmount; return this;
}
public List getQueryAndResponse() {
return queryAndResponse;
}
public SegmentGroup13 setQueryAndResponse(List queryAndResponse) {
this.queryAndResponse = queryAndResponse; return this;
}
public List getQuantity() {
return quantity;
}
public SegmentGroup13 setQuantity(List quantity) {
this.quantity = quantity; return this;
}
public List getReference() {
return reference;
}
public SegmentGroup13 setReference(List reference) {
this.reference = reference; return this;
}
public List getFreeText() {
return freeText;
}
public SegmentGroup13 setFreeText(List freeText) {
this.freeText = freeText; return this;
}
}