org.milyn.edi.unedifact.d03b.IFTMIN.SegmentGroup6 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d03b.IFTMIN;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d03b.common.ChargePaymentInstructions;
import java.util.List;
import org.milyn.edi.unedifact.d03b.common.Reference;
import org.milyn.edi.unedifact.d03b.common.Currencies;
import org.milyn.edi.unedifact.d03b.common.PlaceLocationIdentification;
import org.milyn.edi.unedifact.d03b.common.MonetaryAmount;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup6 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private ChargePaymentInstructions chargePaymentInstructions;
private List reference;
private Currencies currencies;
private List placeLocationIdentification;
private List monetaryAmount;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(chargePaymentInstructions != null) {
nodeWriter.write("CPI");
nodeWriter.write(delimiters.getField());
chargePaymentInstructions.write(nodeWriter, delimiters);
}
if(reference != null && !reference.isEmpty()) {
for(Reference referenceInst : reference) {
nodeWriter.write("RFF");
nodeWriter.write(delimiters.getField());
referenceInst.write(nodeWriter, delimiters);
}
}
if(currencies != null) {
nodeWriter.write("CUX");
nodeWriter.write(delimiters.getField());
currencies.write(nodeWriter, delimiters);
}
if(placeLocationIdentification != null && !placeLocationIdentification.isEmpty()) {
for(PlaceLocationIdentification placeLocationIdentificationInst : placeLocationIdentification) {
nodeWriter.write("LOC");
nodeWriter.write(delimiters.getField());
placeLocationIdentificationInst.write(nodeWriter, delimiters);
}
}
if(monetaryAmount != null && !monetaryAmount.isEmpty()) {
for(MonetaryAmount monetaryAmountInst : monetaryAmount) {
nodeWriter.write("MOA");
nodeWriter.write(delimiters.getField());
monetaryAmountInst.write(nodeWriter, delimiters);
}
}
}
public ChargePaymentInstructions getChargePaymentInstructions() {
return chargePaymentInstructions;
}
public SegmentGroup6 setChargePaymentInstructions(ChargePaymentInstructions chargePaymentInstructions) {
this.chargePaymentInstructions = chargePaymentInstructions; return this;
}
public List getReference() {
return reference;
}
public SegmentGroup6 setReference(List reference) {
this.reference = reference; return this;
}
public Currencies getCurrencies() {
return currencies;
}
public SegmentGroup6 setCurrencies(Currencies currencies) {
this.currencies = currencies; return this;
}
public List getPlaceLocationIdentification() {
return placeLocationIdentification;
}
public SegmentGroup6 setPlaceLocationIdentification(List placeLocationIdentification) {
this.placeLocationIdentification = placeLocationIdentification; return this;
}
public List getMonetaryAmount() {
return monetaryAmount;
}
public SegmentGroup6 setMonetaryAmount(List monetaryAmount) {
this.monetaryAmount = monetaryAmount; return this;
}
}