
eu.datex2.schema._2._2_0.UrlLink 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for UrlLink complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UrlLink">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="urlLinkAddress" type="{http://datex2.eu/schema/2/2_0}Url"/>
* <element name="urlLinkDescription" type="{http://datex2.eu/schema/2/2_0}MultilingualString" minOccurs="0"/>
* <element name="urlLinkType" type="{http://datex2.eu/schema/2/2_0}UrlLinkTypeEnum" minOccurs="0"/>
* <element name="urlLinkExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UrlLink", propOrder = {
"urlLinkAddress",
"urlLinkDescription",
"urlLinkType",
"urlLinkExtension"
})
public class UrlLink {
@XmlElement(required = true)
@XmlSchemaType(name = "anyURI")
protected String urlLinkAddress;
protected MultilingualString urlLinkDescription;
@XmlSchemaType(name = "string")
protected UrlLinkTypeEnum urlLinkType;
protected ExtensionType urlLinkExtension;
/**
* Gets the value of the urlLinkAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrlLinkAddress() {
return urlLinkAddress;
}
/**
* Sets the value of the urlLinkAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrlLinkAddress(String value) {
this.urlLinkAddress = value;
}
/**
* Gets the value of the urlLinkDescription property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getUrlLinkDescription() {
return urlLinkDescription;
}
/**
* Sets the value of the urlLinkDescription property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setUrlLinkDescription(MultilingualString value) {
this.urlLinkDescription = value;
}
/**
* Gets the value of the urlLinkType property.
*
* @return
* possible object is
* {@link UrlLinkTypeEnum }
*
*/
public UrlLinkTypeEnum getUrlLinkType() {
return urlLinkType;
}
/**
* Sets the value of the urlLinkType property.
*
* @param value
* allowed object is
* {@link UrlLinkTypeEnum }
*
*/
public void setUrlLinkType(UrlLinkTypeEnum value) {
this.urlLinkType = value;
}
/**
* Gets the value of the urlLinkExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getUrlLinkExtension() {
return urlLinkExtension;
}
/**
* Sets the value of the urlLinkExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setUrlLinkExtension(ExtensionType value) {
this.urlLinkExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy