Java Doc for MessageDrivenContainer.java in  » EJB-Server-JBoss-4.2.1 » server » org » jboss » ejb » 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 » EJB Server JBoss 4.2.1 » server » org.jboss.ejb 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.jboss.ejb.Container
   org.jboss.ejb.MessageDrivenContainer

MessageDrivenContainer
public class MessageDrivenContainer extends Container implements EJBProxyFactoryContainer,InstancePoolContainer,MessageDrivenContainerMBean(Code)
The container for MessageDriven beans.
author:
   Peter Antman.
author:
   Rickard Öberg
author:
   Marc Fleury
author:
   Daniel OConnor
author:
   Jason Dillon
author:
   Scott Stark
version:
   $Revision: 57209 $

Inner Class :class ContainerInterceptor extends AbstractContainerInterceptor

Field Summary
protected  MapbeanMapping
     These are the mappings between the remote interface methods and the bean methods.
protected  InstancePoolinstancePool
     This is the instancepool that is to be used.
protected  Interceptorinterceptor
     This is the first interceptor in the chain.
protected  longmessageCount
    


Method Summary
public  voidaddInterceptor(Interceptor in)
    
 InterceptorcreateContainerInterceptor()
    
public  EJBObjectcreateHome()
    
protected  voidcreateService()
    
protected  voiddestroyService()
    
public  EJBMetaDatagetEJBMetaDataHome()
    
public  ClassgetHomeClass()
    
public  HomeHandlegetHomeHandleHome()
    
public  InstancePoolgetInstancePool()
    
public  InterceptorgetInterceptor()
    
public  ClassgetLocalClass()
    
public  ClassgetLocalHomeClass()
    
public  LocalProxyFactorygetLocalProxyFactory()
    
public  longgetMessageCount()
    
public  ClassgetRemoteClass()
    
public  ObjectinternalInvoke(Invocation mi)
    
public  ObjectinternalInvokeHome(Invocation mi)
    
public  voidremoveHome(Handle handle)
    
public  voidremoveHome(Object primaryKey)
    
public  voidsetInstancePool(InstancePool instancePool)
    
protected  voidstartService()
    
protected  voidstopService()
    

Field Detail
beanMapping
protected Map beanMapping(Code)
These are the mappings between the remote interface methods and the bean methods.



instancePool
protected InstancePool instancePool(Code)
This is the instancepool that is to be used.



interceptor
protected Interceptor interceptor(Code)
This is the first interceptor in the chain. The last interceptor must be provided by the container itself.



messageCount
protected long messageCount(Code)





Method Detail
addInterceptor
public void addInterceptor(Interceptor in)(Code)



createContainerInterceptor
Interceptor createContainerInterceptor()(Code)



createHome
public EJBObject createHome() throws java.rmi.RemoteException, CreateException(Code)



createService
protected void createService() throws Exception(Code)



destroyService
protected void destroyService() throws Exception(Code)



getEJBMetaDataHome
public EJBMetaData getEJBMetaDataHome() throws java.rmi.RemoteException(Code)



getHomeClass
public Class getHomeClass()(Code)
EJBProxyFactoryContainer - not needed, should we skip inherit this or just throw Error??



getHomeHandleHome
public HomeHandle getHomeHandleHome() throws java.rmi.RemoteException(Code)



getInstancePool
public InstancePool getInstancePool()(Code)



getInterceptor
public Interceptor getInterceptor()(Code)



getLocalClass
public Class getLocalClass()(Code)



getLocalHomeClass
public Class getLocalHomeClass()(Code)



getLocalProxyFactory
public LocalProxyFactory getLocalProxyFactory()(Code)



getMessageCount
public long getMessageCount()(Code)
the number of messages delivered



getRemoteClass
public Class getRemoteClass()(Code)



internalInvoke
public Object internalInvoke(Invocation mi) throws Exception(Code)
This method does invocation interpositioning of tx and security, retrieves the instance from an object table, and invokes the method on the particular instance



internalInvokeHome
public Object internalInvokeHome(Invocation mi) throws Exception(Code)

throws:
  Error - Not valid for MDB



removeHome
public void removeHome(Handle handle) throws java.rmi.RemoteException, RemoveException(Code)



removeHome
public void removeHome(Object primaryKey) throws java.rmi.RemoteException, RemoveException(Code)



setInstancePool
public void setInstancePool(InstancePool instancePool)(Code)



startService
protected void startService() throws Exception(Code)



stopService
protected void stopService() throws Exception(Code)



Fields inherited from org.jboss.ejb.Container
final public static String BASE_EJB_CONTAINER_NAME(Code)(Java Doc)
final protected static Method EJBOBJECT_REMOVE(Code)(Java Doc)
final public static ObjectName EJB_CONTAINER_QUERY_NAME(Code)(Java Doc)
final protected static Method EJB_TIMEOUT(Code)(Java Doc)
final public static ObjectName ORB_NAME(Code)(Java Doc)
protected Class beanClass(Code)(Java Doc)
protected ClassLoader classLoader(Code)(Java Doc)
protected long createCount(Code)(Java Doc)
protected EjbModule ejbModule(Code)(Java Doc)
protected Class homeInterface(Code)(Java Doc)
protected InvocationStatistics invokeStats(Code)(Java Doc)
protected boolean isJaccEnabled(Code)(Java Doc)
protected String jaccContextID(Code)(Java Doc)
protected ClassLoader localClassLoader(Code)(Java Doc)
protected Class localHomeInterface(Code)(Java Doc)
protected Class localInterface(Code)(Java Doc)
protected LocalProxyFactory localProxyFactory(Code)(Java Doc)
protected BeanLockManager lockManager(Code)(Java Doc)
protected Map marshalledInvocationMapping(Code)(Java Doc)
protected BeanMetaData metaData(Code)(Java Doc)
protected HashMap proxyFactories(Code)(Java Doc)
protected ThreadLocal proxyFactoryTL(Code)(Java Doc)
protected Class remoteInterface(Code)(Java Doc)
protected long removeCount(Code)(Java Doc)
protected RealmMapping rm(Code)(Java Doc)
protected Object securityProxy(Code)(Java Doc)
protected AuthenticationManager sm(Code)(Java Doc)
protected TransactionManager tm(Code)(Java Doc)
protected ClassLoader webClassLoader(Code)(Java Doc)

Methods inherited from org.jboss.ejb.Container
abstract public void addInterceptor(Interceptor in)(Code)(Java Doc)
public void addProxyFactory(String invokerBinding, EJBProxyFactory factory)(Code)(Java Doc)
public Object createBeanClassInstance() throws Exception(Code)(Java Doc)
abstract Interceptor createContainerInterceptor()(Code)(Java Doc)
protected void createService() throws Exception(Code)(Java Doc)
protected void destroyService() throws Exception(Code)(Java Doc)
public Class getBeanClass()(Code)(Java Doc)
public BeanMetaData getBeanMetaData()(Code)(Java Doc)
public ClassLoader getClassLoader()(Code)(Java Doc)
public long getCreateCount()(Code)(Java Doc)
final public DeploymentInfo getDeploymentInfo()(Code)(Java Doc)
public EjbModule getEjbModule()(Code)(Java Doc)
public Context getEnvContext() throws NamingException(Code)(Java Doc)
public Class getHomeClass()(Code)(Java Doc)
public InvocationStatistics getInvokeStats()(Code)(Java Doc)
public String getJaccContextID()(Code)(Java Doc)
public ObjectName getJmxName()(Code)(Java Doc)
public Class getLocalClass()(Code)(Java Doc)
public ClassLoader getLocalClassLoader()(Code)(Java Doc)
public Class getLocalHomeClass()(Code)(Java Doc)
public BeanLockManager getLockManager()(Code)(Java Doc)
public MessageDestinationMetaData getMessageDestination(String link)(Code)(Java Doc)
public Set getMethodPermissions(Method m, InvocationType iface)(Code)(Java Doc)
public EJBProxyFactory getProxyFactory()(Code)(Java Doc)
public RealmMapping getRealmMapping()(Code)(Java Doc)
public Class getRemoteClass()(Code)(Java Doc)
public long getRemoveCount()(Code)(Java Doc)
public AuthenticationManager getSecurityManager()(Code)(Java Doc)
public Object getSecurityProxy()(Code)(Java Doc)
public TimerService getTimerService(Object pKey) throws IllegalStateException(Code)(Java Doc)
public TransactionManager getTransactionManager()(Code)(Java Doc)
public ClassLoader getWebClassLoader()(Code)(Java Doc)
abstract public Object internalInvoke(Invocation mi) throws Exception(Code)(Java Doc)
abstract public Object internalInvokeHome(Invocation mi) throws Exception(Code)(Java Doc)
public Object invoke(Invocation mi) throws Exception(Code)(Java Doc)
public boolean isCallByValue()(Code)(Java Doc)
public boolean isJaccEnabled()(Code)(Java Doc)
public EJBProxyFactory lookupProxyFactory(String binding)(Code)(Java Doc)
public void removeTimerService(Object pKey) throws IllegalStateException(Code)(Java Doc)
protected void restoreTimers()(Code)(Java Doc)
public void setBeanMetaData(BeanMetaData metaData)(Code)(Java Doc)
public void setClassLoader(ClassLoader cl)(Code)(Java Doc)
final public void setDeploymentInfo(DeploymentInfo di)(Code)(Java Doc)
public void setEjbModule(EjbModule app)(Code)(Java Doc)
public void setJaccContextID(String id)(Code)(Java Doc)
public void setJaccEnabled(boolean isJaccEnabled)(Code)(Java Doc)
public void setLocalClassLoader(ClassLoader cl)(Code)(Java Doc)
public void setLockManager(BeanLockManager lockManager)(Code)(Java Doc)
public void setProxyFactory(Object factory)(Code)(Java Doc)
public void setRealmMapping(RealmMapping rm)(Code)(Java Doc)
public void setSecurityManager(AuthenticationManager sm)(Code)(Java Doc)
public void setSecurityProxy(Object proxy)(Code)(Java Doc)
public void setTransactionManager(TransactionManager tm)(Code)(Java Doc)
public void setWebClassLoader(ClassLoader webClassLoader)(Code)(Java Doc)
protected void startService() throws Exception(Code)(Java Doc)
protected void stopService() throws Exception(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.