com.consol.citrus.model.config.rmi.RmiClientModel Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 generiert
// Siehe https://javaee.github.io/jaxb-v2/
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2020.03.17 um 03:18:29 PM CET
//
package com.consol.citrus.model.config.rmi;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java-Klasse für anonymous complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* <attribute name="server-url" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="host" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="binding" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="method" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="message-converter" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="message-correlator" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="actor" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="timeout" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="polling-interval" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "client")
public class RmiClientModel {
@XmlAttribute(name = "id", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "server-url")
protected String serverUrl;
@XmlAttribute(name = "host")
protected String host;
@XmlAttribute(name = "port")
protected String port;
@XmlAttribute(name = "binding")
protected String binding;
@XmlAttribute(name = "method")
protected String method;
@XmlAttribute(name = "message-converter")
protected String messageConverter;
@XmlAttribute(name = "message-correlator")
protected String messageCorrelator;
@XmlAttribute(name = "actor")
protected String actor;
@XmlAttribute(name = "timeout")
protected String timeout;
@XmlAttribute(name = "polling-interval")
protected String pollingInterval;
/**
* Ruft den Wert der id-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Legt den Wert der id-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Ruft den Wert der serverUrl-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServerUrl() {
return serverUrl;
}
/**
* Legt den Wert der serverUrl-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServerUrl(String value) {
this.serverUrl = value;
}
/**
* Ruft den Wert der host-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHost() {
return host;
}
/**
* Legt den Wert der host-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHost(String value) {
this.host = value;
}
/**
* Ruft den Wert der port-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPort() {
return port;
}
/**
* Legt den Wert der port-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPort(String value) {
this.port = value;
}
/**
* Ruft den Wert der binding-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBinding() {
return binding;
}
/**
* Legt den Wert der binding-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBinding(String value) {
this.binding = value;
}
/**
* Ruft den Wert der method-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMethod() {
return method;
}
/**
* Legt den Wert der method-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMethod(String value) {
this.method = value;
}
/**
* Ruft den Wert der messageConverter-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessageConverter() {
return messageConverter;
}
/**
* Legt den Wert der messageConverter-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessageConverter(String value) {
this.messageConverter = value;
}
/**
* Ruft den Wert der messageCorrelator-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessageCorrelator() {
return messageCorrelator;
}
/**
* Legt den Wert der messageCorrelator-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessageCorrelator(String value) {
this.messageCorrelator = value;
}
/**
* Ruft den Wert der actor-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getActor() {
return actor;
}
/**
* Legt den Wert der actor-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActor(String value) {
this.actor = value;
}
/**
* Ruft den Wert der timeout-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTimeout() {
return timeout;
}
/**
* Legt den Wert der timeout-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTimeout(String value) {
this.timeout = value;
}
/**
* Ruft den Wert der pollingInterval-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPollingInterval() {
return pollingInterval;
}
/**
* Legt den Wert der pollingInterval-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPollingInterval(String value) {
this.pollingInterval = value;
}
}