org.milyn.edi.unedifact.d98a.common.DeliveryLimitations Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d98a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d98a.common.field.InstructionC522;
import org.milyn.edi.unedifact.d98a.common.field.SpecialServicesIdentificationC214;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
import java.io.StringWriter;
import java.util.List;
import java.util.ArrayList;
import org.milyn.edisax.util.EDIUtils;
import org.milyn.edisax.model.internal.DelimiterType;
public class DeliveryLimitations implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private String backOrderCoded;
private InstructionC522 instruction;
private SpecialServicesIdentificationC214 specialServicesIdentification;
private String productServiceSubstitutionCoded;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(backOrderCoded != null) {
nodeWriter.write(delimiters.escape(backOrderCoded.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(instruction != null) {
instruction.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(specialServicesIdentification != null) {
specialServicesIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(productServiceSubstitutionCoded != null) {
nodeWriter.write(delimiters.escape(productServiceSubstitutionCoded.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeTokens.add(nodeWriter.toString());
writer.write(EDIUtils.concatAndTruncate(nodeTokens, DelimiterType.FIELD, delimiters));
writer.write(delimiters.getSegmentDelimiter());
writer.flush();
}
public String getBackOrderCoded() {
return backOrderCoded;
}
public DeliveryLimitations setBackOrderCoded(String backOrderCoded) {
this.backOrderCoded = backOrderCoded; return this;
}
public InstructionC522 getInstruction() {
return instruction;
}
public DeliveryLimitations setInstruction(InstructionC522 instruction) {
this.instruction = instruction; return this;
}
public SpecialServicesIdentificationC214 getSpecialServicesIdentification() {
return specialServicesIdentification;
}
public DeliveryLimitations setSpecialServicesIdentification(SpecialServicesIdentificationC214 specialServicesIdentification) {
this.specialServicesIdentification = specialServicesIdentification; return this;
}
public String getProductServiceSubstitutionCoded() {
return productServiceSubstitutionCoded;
}
public DeliveryLimitations setProductServiceSubstitutionCoded(String productServiceSubstitutionCoded) {
this.productServiceSubstitutionCoded = productServiceSubstitutionCoded; return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy