Package org.apache.openejb.jee
Class MessageListener
- java.lang.Object
-
- org.apache.openejb.jee.MessageListener
-
public class MessageListener extends Object
The messagelistenerType specifies information about a specific message listener supported by the messaging resource adapter. It contains information on the Java type of the message listener interface and an activation specification.
-
-
Field Summary
Fields Modifier and Type Field Description protected ActivationSpecactivationSpecprotected Stringidprotected StringmessageListenerType
-
Constructor Summary
Constructors Constructor Description MessageListener()MessageListener(Class messageListenerType, Class activationSpecClass)MessageListener(String messageListenerType, String activationSpecClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActivationSpecgetActivationSpec()StringgetId()StringgetMessageListenerType()voidsetActivationSpec(ActivationSpec value)voidsetId(String value)voidsetMessageListenerType(String value)
-
-
-
Field Detail
-
messageListenerType
protected String messageListenerType
-
activationSpec
protected ActivationSpec activationSpec
-
id
protected String id
-
-
Method Detail
-
getMessageListenerType
public String getMessageListenerType()
-
setMessageListenerType
public void setMessageListenerType(String value)
-
getActivationSpec
public ActivationSpec getActivationSpec()
-
setActivationSpec
public void setActivationSpec(ActivationSpec value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-