All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.edi.unedifact.d02b.common.Address Maven / Gradle / Ivy

There is a newer version: 1.7.1.0
Show newest version
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d02b.common;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d02b.common.field.AddressUsageC817;    
import org.milyn.edi.unedifact.d02b.common.field.AddressDetailsC090;    
import org.milyn.edi.unedifact.d02b.common.field.CountrySubEntityDetailsC819;    
import org.milyn.edi.unedifact.d02b.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 postalIdentificationCode;
    private String countryNameCode;
    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(postalIdentificationCode != null) {
            nodeWriter.write(delimiters.escape(postalIdentificationCode.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);
        }
        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 getPostalIdentificationCode() {
        return postalIdentificationCode;
    }

    public Address setPostalIdentificationCode(String postalIdentificationCode) {
        this.postalIdentificationCode = postalIdentificationCode;  return this;
    }

    public String getCountryNameCode() {
        return countryNameCode;
    }

    public Address setCountryNameCode(String countryNameCode) {
        this.countryNameCode = countryNameCode;  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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy