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

com.consol.citrus.model.config.jms.JmsSyncEndpointModel 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: 2021.01.21 um 09:11:05 AM CET 
//


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

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java-Klasse für anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://www.citrusframework.org/schema/jms/config}jmsAdapterType">
 *       <attribute name="reply-destination" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="reply-destination-name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="message-correlator" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "sync-endpoint") public class JmsSyncEndpointModel extends JmsAdapterType { @XmlAttribute(name = "reply-destination") protected String replyDestination; @XmlAttribute(name = "reply-destination-name") protected String replyDestinationName; @XmlAttribute(name = "message-correlator") protected String messageCorrelator; /** * Ruft den Wert der replyDestination-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getReplyDestination() { return replyDestination; } /** * Legt den Wert der replyDestination-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setReplyDestination(String value) { this.replyDestination = value; } /** * Ruft den Wert der replyDestinationName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getReplyDestinationName() { return replyDestinationName; } /** * Legt den Wert der replyDestinationName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setReplyDestinationName(String value) { this.replyDestinationName = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy