org.milyn.edi.unedifact.d02a.IPPOAD.SegmentGroup11 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d02a.IPPOAD;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d02a.common.ComponentDetails;
import java.util.List;
import org.milyn.edi.unedifact.d02a.common.Identity;
import org.milyn.edi.unedifact.d02a.common.ProcessingInformation;
import org.milyn.edi.unedifact.d02a.common.Address;
import org.milyn.edi.unedifact.d02a.common.Attribute;
import org.milyn.edi.unedifact.d02a.common.CommunicationContact;
import org.milyn.edi.unedifact.d02a.common.DateTimePeriod;
import org.milyn.edi.unedifact.d02a.common.ExternalFileLinkIdentification;
import org.milyn.edi.unedifact.d02a.common.EmploymentDetails;
import org.milyn.edi.unedifact.d02a.common.ItemDescription;
import org.milyn.edi.unedifact.d02a.common.MonetaryAmount;
import org.milyn.edi.unedifact.d02a.common.Measurements;
import org.milyn.edi.unedifact.d02a.common.PercentageDetails;
import org.milyn.edi.unedifact.d02a.common.QueryAndResponse;
import org.milyn.edi.unedifact.d02a.common.Quantity;
import org.milyn.edi.unedifact.d02a.common.Reference;
import org.milyn.edi.unedifact.d02a.common.FreeText;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup11 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private ComponentDetails componentDetails;
private List identity;
private ProcessingInformation processingInformation;
private List address;
private List attribute;
private List communicationContact;
private List dateTimePeriod;
private ExternalFileLinkIdentification externalFileLinkIdentification;
private List employmentDetails;
private List itemDescription;
private List monetaryAmount;
private List measurements;
private List percentageDetails;
private List queryAndResponse;
private List quantity;
private List reference;
private List freeText;
private List segmentGroup12;
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(processingInformation != null) {
nodeWriter.write("GEI");
nodeWriter.write(delimiters.getField());
processingInformation.write(nodeWriter, delimiters);
}
if(address != null && !address.isEmpty()) {
for(Address addressInst : address) {
nodeWriter.write("ADR");
nodeWriter.write(delimiters.getField());
addressInst.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(externalFileLinkIdentification != null) {
nodeWriter.write("EFI");
nodeWriter.write(delimiters.getField());
externalFileLinkIdentification.write(nodeWriter, delimiters);
}
if(employmentDetails != null && !employmentDetails.isEmpty()) {
for(EmploymentDetails employmentDetailsInst : employmentDetails) {
nodeWriter.write("EMP");
nodeWriter.write(delimiters.getField());
employmentDetailsInst.write(nodeWriter, delimiters);
}
}
if(itemDescription != null && !itemDescription.isEmpty()) {
for(ItemDescription itemDescriptionInst : itemDescription) {
nodeWriter.write("IMD");
nodeWriter.write(delimiters.getField());
itemDescriptionInst.write(nodeWriter, delimiters);
}
}
if(monetaryAmount != null && !monetaryAmount.isEmpty()) {
for(MonetaryAmount monetaryAmountInst : monetaryAmount) {
nodeWriter.write("MOA");
nodeWriter.write(delimiters.getField());
monetaryAmountInst.write(nodeWriter, delimiters);
}
}
if(measurements != null && !measurements.isEmpty()) {
for(Measurements measurementsInst : measurements) {
nodeWriter.write("MEA");
nodeWriter.write(delimiters.getField());
measurementsInst.write(nodeWriter, delimiters);
}
}
if(percentageDetails != null && !percentageDetails.isEmpty()) {
for(PercentageDetails percentageDetailsInst : percentageDetails) {
nodeWriter.write("PCD");
nodeWriter.write(delimiters.getField());
percentageDetailsInst.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);
}
}
if(segmentGroup12 != null && !segmentGroup12.isEmpty()) {
for(SegmentGroup12 segmentGroup12Inst : segmentGroup12) {
segmentGroup12Inst.write(nodeWriter, delimiters);
}
}
}
public ComponentDetails getComponentDetails() {
return componentDetails;
}
public SegmentGroup11 setComponentDetails(ComponentDetails componentDetails) {
this.componentDetails = componentDetails; return this;
}
public List getIdentity() {
return identity;
}
public SegmentGroup11 setIdentity(List identity) {
this.identity = identity; return this;
}
public ProcessingInformation getProcessingInformation() {
return processingInformation;
}
public SegmentGroup11 setProcessingInformation(ProcessingInformation processingInformation) {
this.processingInformation = processingInformation; return this;
}
public List getAddress() {
return address;
}
public SegmentGroup11 setAddress(List address) {
this.address = address; return this;
}
public List getAttribute() {
return attribute;
}
public SegmentGroup11 setAttribute(List attribute) {
this.attribute = attribute; return this;
}
public List getCommunicationContact() {
return communicationContact;
}
public SegmentGroup11 setCommunicationContact(List communicationContact) {
this.communicationContact = communicationContact; return this;
}
public List getDateTimePeriod() {
return dateTimePeriod;
}
public SegmentGroup11 setDateTimePeriod(List dateTimePeriod) {
this.dateTimePeriod = dateTimePeriod; return this;
}
public ExternalFileLinkIdentification getExternalFileLinkIdentification() {
return externalFileLinkIdentification;
}
public SegmentGroup11 setExternalFileLinkIdentification(ExternalFileLinkIdentification externalFileLinkIdentification) {
this.externalFileLinkIdentification = externalFileLinkIdentification; return this;
}
public List getEmploymentDetails() {
return employmentDetails;
}
public SegmentGroup11 setEmploymentDetails(List employmentDetails) {
this.employmentDetails = employmentDetails; return this;
}
public List getItemDescription() {
return itemDescription;
}
public SegmentGroup11 setItemDescription(List itemDescription) {
this.itemDescription = itemDescription; return this;
}
public List getMonetaryAmount() {
return monetaryAmount;
}
public SegmentGroup11 setMonetaryAmount(List monetaryAmount) {
this.monetaryAmount = monetaryAmount; return this;
}
public List getMeasurements() {
return measurements;
}
public SegmentGroup11 setMeasurements(List measurements) {
this.measurements = measurements; return this;
}
public List getPercentageDetails() {
return percentageDetails;
}
public SegmentGroup11 setPercentageDetails(List percentageDetails) {
this.percentageDetails = percentageDetails; return this;
}
public List getQueryAndResponse() {
return queryAndResponse;
}
public SegmentGroup11 setQueryAndResponse(List queryAndResponse) {
this.queryAndResponse = queryAndResponse; return this;
}
public List getQuantity() {
return quantity;
}
public SegmentGroup11 setQuantity(List quantity) {
this.quantity = quantity; return this;
}
public List getReference() {
return reference;
}
public SegmentGroup11 setReference(List reference) {
this.reference = reference; return this;
}
public List getFreeText() {
return freeText;
}
public SegmentGroup11 setFreeText(List freeText) {
this.freeText = freeText; return this;
}
public List getSegmentGroup12() {
return segmentGroup12;
}
public SegmentGroup11 setSegmentGroup12(List segmentGroup12) {
this.segmentGroup12 = segmentGroup12; return this;
}
}