|
package trax.skp5;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlType;
|
|
|
/**
|
* Notify target.
|
*
|
* <p>Clase Java para NotifyTarget complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="NotifyTarget">
|
* <complexContent>
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <sequence>
|
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* <element name="authorization" type="{http://traxelektronik.pl/trax/ws/protocol}Authorization"/>
|
* <element name="ping" type="{http://traxelektronik.pl/trax/ws/protocol}PingTestType"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "NotifyTarget", propOrder = {
|
"url",
|
"authorization",
|
"ping"
|
})
|
public class NotifyTarget {
|
|
@XmlElement(required = true)
|
protected String url;
|
@XmlElement(required = true)
|
protected Authorization authorization;
|
@XmlElement(required = true)
|
protected PingTestType ping;
|
|
/**
|
* Obtiene el valor de la propiedad url.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getUrl() {
|
return url;
|
}
|
|
/**
|
* Define el valor de la propiedad url.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setUrl(String value) {
|
this.url = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad authorization.
|
*
|
* @return
|
* possible object is
|
* {@link Authorization }
|
*
|
*/
|
public Authorization getAuthorization() {
|
return authorization;
|
}
|
|
/**
|
* Define el valor de la propiedad authorization.
|
*
|
* @param value
|
* allowed object is
|
* {@link Authorization }
|
*
|
*/
|
public void setAuthorization(Authorization value) {
|
this.authorization = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad ping.
|
*
|
* @return
|
* possible object is
|
* {@link PingTestType }
|
*
|
*/
|
public PingTestType getPing() {
|
return ping;
|
}
|
|
/**
|
* Define el valor de la propiedad ping.
|
*
|
* @param value
|
* allowed object is
|
* {@link PingTestType }
|
*
|
*/
|
public void setPing(PingTestType value) {
|
this.ping = value;
|
}
|
|
}
|