org.apache.cxf.configuration.foo.TpAddress Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.12.01 at 05:38:56 PM EST
//
package org.apache.cxf.configuration.foo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.cxf.jaxb.JAXBToStringBuilder;
import org.apache.cxf.jaxb.JAXBToStringStyle;
/**
* Java class for TpAddress complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TpAddress">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AddrString" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Presentation" type="{http://cxf.apache.org/configuration/foo}TpAddressPresentation"/>
* <element name="SubAddressString" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="afoo" type="{http://cxf.apache.org/configuration/foo}foo"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TpAddress", propOrder = {
"addrString",
"name",
"presentation",
"subAddressString",
"afoo"
})
public class TpAddress {
@XmlElement(name = "AddrString", required = true)
protected String addrString;
@XmlElement(name = "Name", required = true)
protected String name;
@XmlElement(name = "Presentation", required = true)
protected TpAddressPresentation presentation;
@XmlElement(name = "SubAddressString", required = true)
protected String subAddressString;
@XmlElement(required = true)
protected Foo afoo;
/**
* Gets the value of the addrString property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddrString() {
return addrString;
}
/**
* Sets the value of the addrString property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddrString(String value) {
this.addrString = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the presentation property.
*
* @return
* possible object is
* {@link TpAddressPresentation }
*
*/
public TpAddressPresentation getPresentation() {
return presentation;
}
/**
* Sets the value of the presentation property.
*
* @param value
* allowed object is
* {@link TpAddressPresentation }
*
*/
public void setPresentation(TpAddressPresentation value) {
this.presentation = value;
}
/**
* Gets the value of the subAddressString property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubAddressString() {
return subAddressString;
}
/**
* Sets the value of the subAddressString property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubAddressString(String value) {
this.subAddressString = value;
}
/**
* Gets the value of the afoo property.
*
* @return
* possible object is
* {@link Foo }
*
*/
public Foo getAfoo() {
return afoo;
}
/**
* Sets the value of the afoo property.
*
* @param value
* allowed object is
* {@link Foo }
*
*/
public void setAfoo(Foo value) {
this.afoo = value;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return JAXBToStringBuilder.valueOf(this, JAXBToStringStyle.DEFAULT_STYLE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy