
eu.datex2.schema._2._2_0.ContactByReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datex2-api Show documentation
Show all versions of datex2-api Show documentation
DATEX II API for Java, allows to create DATEX II suppliers and clients.
The newest version!
package eu.datex2.schema._2._2_0;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ContactByReference complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ContactByReference">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}Contact">
* <sequence>
* <element name="contactReference" type="{http://datex2.eu/schema/2/2_0}_ContactDetailsVersionedReference"/>
* <element name="contactByReferenceExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ContactByReference", propOrder = {
"contactReference",
"contactByReferenceExtension"
})
public class ContactByReference
extends Contact
{
@XmlElement(required = true)
protected ContactDetailsVersionedReference contactReference;
protected ExtensionType contactByReferenceExtension;
/**
* Gets the value of the contactReference property.
*
* @return
* possible object is
* {@link ContactDetailsVersionedReference }
*
*/
public ContactDetailsVersionedReference getContactReference() {
return contactReference;
}
/**
* Sets the value of the contactReference property.
*
* @param value
* allowed object is
* {@link ContactDetailsVersionedReference }
*
*/
public void setContactReference(ContactDetailsVersionedReference value) {
this.contactReference = value;
}
/**
* Gets the value of the contactByReferenceExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getContactByReferenceExtension() {
return contactByReferenceExtension;
}
/**
* Sets the value of the contactByReferenceExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setContactByReferenceExtension(ExtensionType value) {
this.contactByReferenceExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy