All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.consol.citrus.model.config.channel.MessageChannelModel Maven / Gradle / Ivy

The newest version!
//
// 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: 2024.04.24 um 05:11:47 PM CEST 
//


package com.consol.citrus.model.config.channel;

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="logging" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="capacity" 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 = "message-channel") public class MessageChannelModel { @XmlAttribute(name = "id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "logging") protected String logging; @XmlAttribute(name = "capacity") protected String capacity; @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 logging-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getLogging() { return logging; } /** * Legt den Wert der logging-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setLogging(String value) { this.logging = value; } /** * Ruft den Wert der capacity-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCapacity() { return capacity; } /** * Legt den Wert der capacity-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCapacity(String value) { this.capacity = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy