org.milyn.edi.unedifact.d96a.common.Address Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d96a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d96a.common.field.AddressUsageC817;
import org.milyn.edi.unedifact.d96a.common.field.AddressDetailsC090;
import org.milyn.edi.unedifact.d96a.common.field.CountrySubEntityDetailsC819;
import org.milyn.edi.unedifact.d96a.common.field.LocationIdentificationC517;
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 Address implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private AddressUsageC817 addressUsage;
private AddressDetailsC090 addressDetails;
private String cityName;
private String postcodeIdentification;
private String countryCoded;
private CountrySubEntityDetailsC819 countrySubEntityDetails;
private LocationIdentificationC517 locationIdentification;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(addressUsage != null) {
addressUsage.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(addressDetails != null) {
addressDetails.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(cityName != null) {
nodeWriter.write(delimiters.escape(cityName.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(postcodeIdentification != null) {
nodeWriter.write(delimiters.escape(postcodeIdentification.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(countryCoded != null) {
nodeWriter.write(delimiters.escape(countryCoded.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(countrySubEntityDetails != null) {
countrySubEntityDetails.write(nodeWriter, delimiters);
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);
}
nodeTokens.add(nodeWriter.toString());
writer.write(EDIUtils.concatAndTruncate(nodeTokens, DelimiterType.FIELD, delimiters));
writer.write(delimiters.getSegmentDelimiter());
writer.flush();
}
public AddressUsageC817 getAddressUsage() {
return addressUsage;
}
public Address setAddressUsage(AddressUsageC817 addressUsage) {
this.addressUsage = addressUsage; return this;
}
public AddressDetailsC090 getAddressDetails() {
return addressDetails;
}
public Address setAddressDetails(AddressDetailsC090 addressDetails) {
this.addressDetails = addressDetails; return this;
}
public String getCityName() {
return cityName;
}
public Address setCityName(String cityName) {
this.cityName = cityName; return this;
}
public String getPostcodeIdentification() {
return postcodeIdentification;
}
public Address setPostcodeIdentification(String postcodeIdentification) {
this.postcodeIdentification = postcodeIdentification; return this;
}
public String getCountryCoded() {
return countryCoded;
}
public Address setCountryCoded(String countryCoded) {
this.countryCoded = countryCoded; return this;
}
public CountrySubEntityDetailsC819 getCountrySubEntityDetails() {
return countrySubEntityDetails;
}
public Address setCountrySubEntityDetails(CountrySubEntityDetailsC819 countrySubEntityDetails) {
this.countrySubEntityDetails = countrySubEntityDetails; return this;
}
public LocationIdentificationC517 getLocationIdentification() {
return locationIdentification;
}
public Address setLocationIdentification(LocationIdentificationC517 locationIdentification) {
this.locationIdentification = locationIdentification; return this;
}
}