
org.milyn.edi.unedifact.d94b.CUSCAR.SegmentGroup3 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d94b.CUSCAR;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d94b.common.ChargePaymentInstructions;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup3 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private ChargePaymentInstructions chargePaymentInstructions;
private SegmentGroup4 segmentGroup4;
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(segmentGroup4 != null) {
segmentGroup4.write(nodeWriter, delimiters);
}
}
public ChargePaymentInstructions getChargePaymentInstructions() {
return chargePaymentInstructions;
}
public SegmentGroup3 setChargePaymentInstructions(ChargePaymentInstructions chargePaymentInstructions) {
this.chargePaymentInstructions = chargePaymentInstructions; return this;
}
public SegmentGroup4 getSegmentGroup4() {
return segmentGroup4;
}
public SegmentGroup3 setSegmentGroup4(SegmentGroup4 segmentGroup4) {
this.segmentGroup4 = segmentGroup4; return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy