org.milyn.edi.unedifact.d03b.PRODAT.SegmentGroup28 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d03b.PRODAT;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d03b.common.ExternalFileLinkIdentification;
import java.util.List;
import org.milyn.edi.unedifact.d03b.common.ComputerEnvironmentDetails;
import org.milyn.edi.unedifact.d03b.common.CommunicationContact;
import org.milyn.edi.unedifact.d03b.common.Reference;
import org.milyn.edi.unedifact.d03b.common.DateTimePeriod;
import org.milyn.edi.unedifact.d03b.common.Quantity;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup28 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private ExternalFileLinkIdentification externalFileLinkIdentification;
private List computerEnvironmentDetails;
private List communicationContact;
private List reference;
private List dateTimePeriod;
private List quantity;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(externalFileLinkIdentification != null) {
nodeWriter.write("EFI");
nodeWriter.write(delimiters.getField());
externalFileLinkIdentification.write(nodeWriter, delimiters);
}
if(computerEnvironmentDetails != null && !computerEnvironmentDetails.isEmpty()) {
for(ComputerEnvironmentDetails computerEnvironmentDetailsInst : computerEnvironmentDetails) {
nodeWriter.write("CED");
nodeWriter.write(delimiters.getField());
computerEnvironmentDetailsInst.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(dateTimePeriod != null && !dateTimePeriod.isEmpty()) {
for(DateTimePeriod dateTimePeriodInst : dateTimePeriod) {
nodeWriter.write("DTM");
nodeWriter.write(delimiters.getField());
dateTimePeriodInst.write(nodeWriter, delimiters);
}
}
if(quantity != null && !quantity.isEmpty()) {
for(Quantity quantityInst : quantity) {
nodeWriter.write("QTY");
nodeWriter.write(delimiters.getField());
quantityInst.write(nodeWriter, delimiters);
}
}
}
public ExternalFileLinkIdentification getExternalFileLinkIdentification() {
return externalFileLinkIdentification;
}
public SegmentGroup28 setExternalFileLinkIdentification(ExternalFileLinkIdentification externalFileLinkIdentification) {
this.externalFileLinkIdentification = externalFileLinkIdentification; return this;
}
public List getComputerEnvironmentDetails() {
return computerEnvironmentDetails;
}
public SegmentGroup28 setComputerEnvironmentDetails(List computerEnvironmentDetails) {
this.computerEnvironmentDetails = computerEnvironmentDetails; return this;
}
public List getCommunicationContact() {
return communicationContact;
}
public SegmentGroup28 setCommunicationContact(List communicationContact) {
this.communicationContact = communicationContact; return this;
}
public List getReference() {
return reference;
}
public SegmentGroup28 setReference(List reference) {
this.reference = reference; return this;
}
public List getDateTimePeriod() {
return dateTimePeriod;
}
public SegmentGroup28 setDateTimePeriod(List dateTimePeriod) {
this.dateTimePeriod = dateTimePeriod; return this;
}
public List getQuantity() {
return quantity;
}
public SegmentGroup28 setQuantity(List quantity) {
this.quantity = quantity; return this;
}
}