Java Doc for MessageDrivenDesc.java in  » J2EE » JOnAS-4.8.6 » org » objectweb » jonas_ejb » deployment » api » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » JOnAS 4.8.6 » org.objectweb.jonas_ejb.deployment.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


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


Field Summary
final protected static  String[]ACKMODE
    
final public static  intAUTO_ACKNOWLEDGE
    
final public static  intDEFAULT_MAX_MESSAGES
    
final public static  intDUPS_OK_ACKNOWLEDGE
    
final protected static  String[]SUBS_DURABILITY
    
final public static  intSUBS_DURABLE
    
final public static  intSUBS_NON_DURABLE
    
protected  intacknowledgeMode
    
protected  Stringdestination
    
protected  StringdestinationJndiName
    
protected  StringdestinationLink
    
protected  ClassdestinationType
    
protected  booleanisTopicDestination
    
protected  ActivationConfigDescmdActivationConfigDesc
    
protected  ActivationConfigDescmdJonasActivationConfigDesc
    
protected  Stringselector
    
protected  intsubscriptionDurability
    
protected  inttransactionType
    
protected  inttxAttribute
    

Constructor Summary
 MessageDrivenDesc(ClassLoader classLoader, MessageDriven md, AssemblyDescriptor asd, JonasMessageDriven jMd, JLinkedList jMDRList, String fileName)
    

Method Summary
public  voidcheck()
    
protected  voidcheckTxAttribute(MethodDesc md)
    
public  intgetAcknowledgeMode()
     Get the acknowledge-mode of the message driven bean.
public  StringgetDestination()
     Get the the destination name of the message driven bean.
public  StringgetDestinationJndiName()
     Get the the destination JNDI name of the message driven bean.
public  StringgetDestinationLink()
     Get the the destination link name of the message driven bean.
public  ClassgetDestinationType()
     Get the the destination type of the message driven bean.
public  ActivationConfigDescgetJonasMdActivationConfigDesc()
    
public  intgetMaxMessages()
     the maximum number of messages that can be assigned to a serversession at one time.
public  ActivationConfigDescgetMdActivationConfigDesc()
    
public  StringgetSelector()
     Get the message-selector value of the message driven bean.
public  intgetSubscriptionDurability()
     Get the the durability of the subscription of the message driven bean.
public  intgetTransactionType()
     Get transaction management type of the message driven.
public  intgetTxAttribute()
    
public  booleanhasSelector()
    
public  booleanisBeanManagedTransaction()
    
public  booleanisRequired()
    
public  booleanisSubscriptionDurable()
    
public  booleanisTopicDestination()
    
public  StringtoString()
    

Field Detail
ACKMODE
final protected static String[] ACKMODE(Code)



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)



destination
protected String destination(Code)



destinationJndiName
protected String destinationJndiName(Code)



destinationLink
protected String destinationLink(Code)



destinationType
protected Class destinationType(Code)



isTopicDestination
protected boolean isTopicDestination(Code)



mdActivationConfigDesc
protected ActivationConfigDesc mdActivationConfigDesc(Code)



mdJonasActivationConfigDesc
protected ActivationConfigDesc mdJonasActivationConfigDesc(Code)



selector
protected String selector(Code)



subscriptionDurability
protected int subscriptionDurability(Code)



transactionType
protected int transactionType(Code)



txAttribute
protected int txAttribute(Code)




Constructor Detail
MessageDrivenDesc
MessageDrivenDesc(ClassLoader classLoader, MessageDriven md, AssemblyDescriptor asd, JonasMessageDriven jMd, JLinkedList jMDRList, String fileName) throws DeploymentDescException(Code)
package protected constructor used by API




Method Detail
check
public void check() throws DeploymentDescException(Code)
Check that the message diven bean descriptor is valid
exception:
  DeploymentDescException - thrown for non-valid bean



checkTxAttribute
protected void checkTxAttribute(MethodDesc md) throws DeploymentDescException(Code)
check that trans-attribute is valid for bean



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



Fields inherited from org.objectweb.jonas_ejb.deployment.api.BeanDesc
final protected static int BEAN_TRANSACTION_TYPE(Code)(Java Doc)
final protected static int CONTAINER_TRANSACTION_TYPE(Code)(Java Doc)
final public static String GENERATED_PREFIX(Code)(Java Doc)
final protected static String[] TRANS(Code)(Java Doc)
protected String beanIdentification(Code)(Java Doc)
protected BeanFactory bf(Code)(Java Doc)
protected int cacheMax(Code)(Java Doc)
protected String clusterHomeDistributor(Code)(Java Doc)
protected String clusterRemoteDistributor(Code)(Java Doc)
protected boolean clusterReplicated(Code)(Java Doc)
protected DeploymentDesc deploymentDesc(Code)(Java Doc)
protected String derivedBeanName(Code)(Java Doc)
protected Properties ejb10EnvProps(Code)(Java Doc)
protected Class ejbClass(Code)(Java Doc)
protected String ejbName(Code)(Java Doc)
protected String ejbTimeoutSignature(Code)(Java Doc)
protected String fullDerivedBeanName(Code)(Java Doc)
protected Class home(Code)(Java Doc)
protected String jndiLocalName(Code)(Java Doc)
protected String jndiName(Code)(Java Doc)
protected Class local(Code)(Java Doc)
protected Class localhome(Code)(Java Doc)
protected Logger logger(Code)(Java Doc)
protected int poolMin(Code)(Java Doc)
protected Class remote(Code)(Java Doc)
protected List securityRoleRefDescList(Code)(Java Doc)
protected int timerTxAttribute(Code)(Java Doc)

Methods inherited from org.objectweb.jonas_ejb.deployment.api.BeanDesc
protected int addEJBMethodDesc(int len) throws DeploymentDescException(Code)(Java Doc)
protected MethodDesc addMethodDesc(java.lang.reflect.Method meth, Class classDef)(Code)(Java Doc)
public void check() throws DeploymentDescException(Code)(Java Doc)
public void checkRemoteException(java.lang.reflect.Method m, boolean shouldThrow) throws DeploymentDescException(Code)(Java Doc)
public void checkRunAsMapping() throws DeploymentDescException(Code)(Java Doc)
abstract protected void checkTxAttribute(MethodDesc md) throws DeploymentDescException(Code)(Java Doc)
public void checkValidTypesForRmi(java.lang.reflect.Method m)(Code)(Java Doc)
public BeanFactory getBeanFactory()(Code)(Java Doc)
public int getCacheMax()(Code)(Java Doc)
public String getClusterHomeDistributor()(Code)(Java Doc)
public String getClusterRemoteDistributor()(Code)(Java Doc)
public DeploymentDesc getDeploymentDesc()(Code)(Java Doc)
public String getDerivedBeanName()(Code)(Java Doc)
public Properties getEjb10Environment()(Code)(Java Doc)
public Class getEjbClass()(Code)(Java Doc)
public String getEjbName()(Code)(Java Doc)
public String getEjbTimeoutSignature()(Code)(Java Doc)
public String getFullDerivedBeanName()(Code)(Java Doc)
public String getFullWrpHandleName()(Code)(Java Doc)
public String getFullWrpHomeName()(Code)(Java Doc)
public String getFullWrpLocalHomeName()(Code)(Java Doc)
public String getFullWrpLocalName()(Code)(Java Doc)
public String getFullWrpRemoteName()(Code)(Java Doc)
protected String getHashCodeForIdentifier()(Code)(Java Doc)
public Class getHomeClass()(Code)(Java Doc)
public String getIdentifier()(Code)(Java Doc)
public String getJndiLocalName()(Code)(Java Doc)
public String getJndiName()(Code)(Java Doc)
public Class getLocalClass()(Code)(Java Doc)
public Class getLocalHomeClass()(Code)(Java Doc)
public MethodDesc getMethodDesc(java.lang.reflect.Method method)(Code)(Java Doc)
public MethodDesc getMethodDesc(int index)(Code)(Java Doc)
public Iterator getMethodDescIterator()(Code)(Java Doc)
protected Class getParentClass(String intfType) throws DeploymentDescException(Code)(Java Doc)
public int getPoolMin()(Code)(Java Doc)
public Class getRemoteClass()(Code)(Java Doc)
public String getRunAsPrincipalName()(Code)(Java Doc)
public String getRunAsRole()(Code)(Java Doc)
public SasComponent getSasComponent()(Code)(Java Doc)
public List getSecurityRoleRefDescList()(Code)(Java Doc)
public int getTimerTxAttribute()(Code)(Java Doc)
public String getWrpHandleName()(Code)(Java Doc)
public String getWrpHomeName()(Code)(Java Doc)
public String getWrpLocalHomeName()(Code)(Java Doc)
public String getWrpLocalName()(Code)(Java Doc)
public String getWrpRemoteName()(Code)(Java Doc)
public boolean hasDefinedLocalInterface()(Code)(Java Doc)
public boolean isClusterReplicated()(Code)(Java Doc)
protected void loadExtraClasses(CommonEjb ce, ClassLoader loader) throws DeploymentDescException(Code)(Java Doc)
protected MethodDesc newMethodDescInstance(java.lang.reflect.Method meth, Class classDef, int index)(Code)(Java Doc)
public void setBeanFactory(BeanFactory factory)(Code)(Java Doc)
public void setClusterReplicated(boolean replicated)(Code)(Java Doc)
public void setDeploymentDesc(DeploymentDesc deploymentDesc)(Code)(Java Doc)
public void setSasComponent(SasComponent sasComponent)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
protected void verifyRoleName(AssemblyDescriptor asd) throws DeploymentDescException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.