![JAR search and dependency download from the Maven repository](/logo.png)
org.milyn.edi.unedifact.d05a.common.RequirementsAndConditions Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d05a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d05a.common.field.RequirementConditionIdentificationC550;
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 RequirementsAndConditions implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private String sectorAreaIdentificationCodeQualifier;
private RequirementConditionIdentificationC550 requirementConditionIdentification;
private String actionRequestNotificationDescriptionCode;
private String countryNameCode;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(sectorAreaIdentificationCodeQualifier != null) {
nodeWriter.write(delimiters.escape(sectorAreaIdentificationCodeQualifier.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(requirementConditionIdentification != null) {
requirementConditionIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(actionRequestNotificationDescriptionCode != null) {
nodeWriter.write(delimiters.escape(actionRequestNotificationDescriptionCode.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(countryNameCode != null) {
nodeWriter.write(delimiters.escape(countryNameCode.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 getSectorAreaIdentificationCodeQualifier() {
return sectorAreaIdentificationCodeQualifier;
}
public RequirementsAndConditions setSectorAreaIdentificationCodeQualifier(String sectorAreaIdentificationCodeQualifier) {
this.sectorAreaIdentificationCodeQualifier = sectorAreaIdentificationCodeQualifier; return this;
}
public RequirementConditionIdentificationC550 getRequirementConditionIdentification() {
return requirementConditionIdentification;
}
public RequirementsAndConditions setRequirementConditionIdentification(RequirementConditionIdentificationC550 requirementConditionIdentification) {
this.requirementConditionIdentification = requirementConditionIdentification; return this;
}
public String getActionRequestNotificationDescriptionCode() {
return actionRequestNotificationDescriptionCode;
}
public RequirementsAndConditions setActionRequestNotificationDescriptionCode(String actionRequestNotificationDescriptionCode) {
this.actionRequestNotificationDescriptionCode = actionRequestNotificationDescriptionCode; return this;
}
public String getCountryNameCode() {
return countryNameCode;
}
public RequirementsAndConditions setCountryNameCode(String countryNameCode) {
this.countryNameCode = countryNameCode; return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy