com.consol.citrus.model.config.vertx.VertxEndpointModel 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: 2022.01.12 um 07:23:54 PM CET
//
package com.consol.citrus.model.config.vertx;
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="host" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="address" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="vertx-factory" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="pub-sub-domain" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="message-converter" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="polling-interval" 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" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "endpoint")
public class VertxEndpointModel {
@XmlAttribute(name = "id", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "host")
protected String host;
@XmlAttribute(name = "port")
protected String port;
@XmlAttribute(name = "address", required = true)
protected String address;
@XmlAttribute(name = "vertx-factory")
protected String vertxFactory;
@XmlAttribute(name = "pub-sub-domain")
protected Boolean pubSubDomain;
@XmlAttribute(name = "message-converter")
protected String messageConverter;
@XmlAttribute(name = "polling-interval")
protected String pollingInterval;
@XmlAttribute(name = "actor")
protected String actor;
@XmlAttribute(name = "timeout")
protected String timeout;
/**
* 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 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 address-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddress() {
return address;
}
/**
* Legt den Wert der address-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddress(String value) {
this.address = value;
}
/**
* Ruft den Wert der vertxFactory-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertxFactory() {
return vertxFactory;
}
/**
* Legt den Wert der vertxFactory-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertxFactory(String value) {
this.vertxFactory = value;
}
/**
* Ruft den Wert der pubSubDomain-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPubSubDomain() {
return pubSubDomain;
}
/**
* Legt den Wert der pubSubDomain-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPubSubDomain(Boolean value) {
this.pubSubDomain = 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 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;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy