| |
|
| org.objectweb.jonas_ejb.deployment.api.BeanDesc org.objectweb.jonas_ejb.deployment.api.MessageDrivenDesc
MessageDrivenDesc | public class MessageDrivenDesc extends BeanDesc (Code) | | Class to hold meta-information related to a message driven bean
author: Christophe Ney [cney@batisseurs.com] : Initial developer author: Helene Joanin |
AUTO_ACKNOWLEDGE | final public static int AUTO_ACKNOWLEDGE(Code) | | |
DEFAULT_MAX_MESSAGES | final public static int DEFAULT_MAX_MESSAGES(Code) | | |
DUPS_OK_ACKNOWLEDGE | final public static int DUPS_OK_ACKNOWLEDGE(Code) | | |
SUBS_DURABILITY | final protected static String[] SUBS_DURABILITY(Code) | | |
SUBS_DURABLE | final public static int SUBS_DURABLE(Code) | | |
SUBS_NON_DURABLE | final public static int SUBS_NON_DURABLE(Code) | | |
acknowledgeMode | protected int acknowledgeMode(Code) | | |
destinationJndiName | protected String destinationJndiName(Code) | | |
isTopicDestination | protected boolean isTopicDestination(Code) | | |
subscriptionDurability | protected int subscriptionDurability(Code) | | |
transactionType | protected int transactionType(Code) | | |
txAttribute | protected int txAttribute(Code) | | |
getAcknowledgeMode | public int getAcknowledgeMode()(Code) | | Get the acknowledge-mode of the message driven bean.
acknowledge-mode value within AUTO_ACKNOWLEDGE,DUPS_OK_ACKNOWLEDGE |
getDestination | public String getDestination()(Code) | | Get the the destination name of the message driven bean.
name of the destination of the message driven bean. |
getDestinationJndiName | public String getDestinationJndiName()(Code) | | Get the the destination JNDI name of the message driven bean.
JNDI name of the destination of the message driven bean. |
getDestinationLink | public String getDestinationLink()(Code) | | Get the the destination link name of the message driven bean.
link name of the destination of the message driven bean. |
getDestinationType | public Class getDestinationType()(Code) | | Get the the destination type of the message driven bean.
type of the destination of the message driven bean. |
getJonasMdActivationConfigDesc | public ActivationConfigDesc getJonasMdActivationConfigDesc()(Code) | | the JOnAS MessageDriven ActivationConfigDesc object |
getMaxMessages | public int getMaxMessages()(Code) | | the maximum number of messages that can be assigned to a serversession at one time. will be configurable in the future |
getMdActivationConfigDesc | public ActivationConfigDesc getMdActivationConfigDesc()(Code) | | the MessageDriven ActivationConfigDesc object |
getSelector | public String getSelector()(Code) | | Get the message-selector value of the message driven bean.
value of the message selector return null if no selector |
getSubscriptionDurability | public int getSubscriptionDurability()(Code) | | Get the the durability of the subscription of the message driven bean.
durability of the subscription value within SUBS_DURABLE,SUBS_NON_DURABLE |
getTransactionType | public int getTransactionType()(Code) | | Get transaction management type of the message driven.
transaction type value withinBEAN_TRANSACTION_TYPE,CONTAINER_TRANSACTION_TYPE |
getTxAttribute | public int getTxAttribute()(Code) | | Return the transaction attribute for the onMessage method of Message
driven bean
|
hasSelector | public boolean hasSelector()(Code) | | Assessor for existence of a message-selector for the message driven bean
true if message-selector is defined for the bean |
isBeanManagedTransaction | public boolean isBeanManagedTransaction()(Code) | | true if BEAN_TRANSACTION_TYPE |
isRequired | public boolean isRequired()(Code) | | Return true if tx attribute for onMessage is Required
|
isSubscriptionDurable | public boolean isSubscriptionDurable()(Code) | | |
isTopicDestination | public boolean isTopicDestination()(Code) | | Return true if it is a Topic destination
|
toString | public String toString()(Code) | | String representation of the object for test purpose
String representation of this object |
|
|
|