org.milyn.edi.unedifact.d99b.common.PlaceLocationIdentification Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d99b.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d99b.common.field.LocationIdentificationC517;
import org.milyn.edi.unedifact.d99b.common.field.RelatedLocationOneIdentificationC519;
import org.milyn.edi.unedifact.d99b.common.field.RelatedLocationTwoIdentificationC553;
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 PlaceLocationIdentification implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private String locationFunctionCodeQualifier;
private LocationIdentificationC517 locationIdentification;
private RelatedLocationOneIdentificationC519 relatedLocationOneIdentification;
private RelatedLocationTwoIdentificationC553 relatedLocationTwoIdentification;
private String relationCoded;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(locationFunctionCodeQualifier != null) {
nodeWriter.write(delimiters.escape(locationFunctionCodeQualifier.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(locationIdentification != null) {
locationIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(relatedLocationOneIdentification != null) {
relatedLocationOneIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(relatedLocationTwoIdentification != null) {
relatedLocationTwoIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(relationCoded != null) {
nodeWriter.write(delimiters.escape(relationCoded.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 getLocationFunctionCodeQualifier() {
return locationFunctionCodeQualifier;
}
public PlaceLocationIdentification setLocationFunctionCodeQualifier(String locationFunctionCodeQualifier) {
this.locationFunctionCodeQualifier = locationFunctionCodeQualifier; return this;
}
public LocationIdentificationC517 getLocationIdentification() {
return locationIdentification;
}
public PlaceLocationIdentification setLocationIdentification(LocationIdentificationC517 locationIdentification) {
this.locationIdentification = locationIdentification; return this;
}
public RelatedLocationOneIdentificationC519 getRelatedLocationOneIdentification() {
return relatedLocationOneIdentification;
}
public PlaceLocationIdentification setRelatedLocationOneIdentification(RelatedLocationOneIdentificationC519 relatedLocationOneIdentification) {
this.relatedLocationOneIdentification = relatedLocationOneIdentification; return this;
}
public RelatedLocationTwoIdentificationC553 getRelatedLocationTwoIdentification() {
return relatedLocationTwoIdentification;
}
public PlaceLocationIdentification setRelatedLocationTwoIdentification(RelatedLocationTwoIdentificationC553 relatedLocationTwoIdentification) {
this.relatedLocationTwoIdentification = relatedLocationTwoIdentification; return this;
}
public String getRelationCoded() {
return relationCoded;
}
public PlaceLocationIdentification setRelationCoded(String relationCoded) {
this.relationCoded = relationCoded; return this;
}
}