com.hubject.datex.energyinfrastructure.generated.exchangeinformation.Agent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convert Show documentation
Show all versions of convert Show documentation
Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.06 at 11:44:34 AM CEST
//
package com.hubject.datex.energyinfrastructure.generated.exchangeinformation;
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 com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
import com.hubject.datex.energyinfrastructure.generated.common.InternationalIdentifier;
/**
* Java class for Agent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Agent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="address" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="name" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="referenceID" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="serviceURL" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="internationalIdentifier" type="{http://datex2.eu/schema/3/common}InternationalIdentifier" minOccurs="0"/>
* <element name="_agentExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Agent", propOrder = {
"address",
"name",
"referenceID",
"serviceURL",
"internationalIdentifier",
"agentExtension"
})
public class Agent {
protected String address;
protected String name;
protected String referenceID;
protected String serviceURL;
protected InternationalIdentifier internationalIdentifier;
@XmlElement(name = "_agentExtension")
protected ExtensionType agentExtension;
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddress() {
return address;
}
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddress(String value) {
this.address = 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 referenceID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReferenceID() {
return referenceID;
}
/**
* Sets the value of the referenceID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReferenceID(String value) {
this.referenceID = value;
}
/**
* Gets the value of the serviceURL property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServiceURL() {
return serviceURL;
}
/**
* Sets the value of the serviceURL property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServiceURL(String value) {
this.serviceURL = value;
}
/**
* Gets the value of the internationalIdentifier property.
*
* @return
* possible object is
* {@link InternationalIdentifier }
*
*/
public InternationalIdentifier getInternationalIdentifier() {
return internationalIdentifier;
}
/**
* Sets the value of the internationalIdentifier property.
*
* @param value
* allowed object is
* {@link InternationalIdentifier }
*
*/
public void setInternationalIdentifier(InternationalIdentifier value) {
this.internationalIdentifier = value;
}
/**
* Gets the value of the agentExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getAgentExtension() {
return agentExtension;
}
/**
* Sets the value of the agentExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setAgentExtension(ExtensionType value) {
this.agentExtension = value;
}
}