javax.ejb

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 » Testing » Ejb3Unit » javax.ejb 
javax.ejb
EJB 3.0 API

API used by EJB 3.0 container

Java Source File NameTypeComment
AccessLocalException.javaClass An AccessLocalException is thrown to indicate that the caller does not have permission to call the method.
ActivationConfigProperty.javaAnnotation Properties used by a Message Driven Bean to set properties.
ApplicationException.javaAnnotation An exception annotated with this annotation will be an application exception and then thrown to the user.
And by default, no rollback is done before throwing the exception.
ConcurrentAccessException.javaClass A ConcurrentAccessException indicates that the client has attempted an invocation on a stateful session bean while another invocation is in progress.
CreateException.javaClass The CreateException exception must be included in the throws clauses of all create methods defined in an enterprise Bean's home interface.
This exception is used as a standard application-level exception to report a failure to create an EJB object.
DuplicateKeyException.javaClass The DuplicateKeyException exception is thrown if an entity EJB object cannot be created because an object with the same key already exists.
EJB.javaAnnotation Allows to inject a reference to an EJB.
EJBAccessException.javaClass Access to a method was denied.
EJBContext.javaInterface Allows to gets some info on the bean.
EJBException.javaClass Thrown for unexpected exception.
EJBHome.javaInterface Used by EJB 2.1 for their business remote home interface.
EJBLocalHome.javaInterface Used by EJB 2.1 for their business local home interface.
EJBLocalObject.javaInterface Used by EJB 2.1 for their business local interface.
EJBMetaData.javaInterface Metadata of EJB provided to the client.
EJBObject.javaInterface Used by EJB 2.1 for their business remote interface.
EJBs.javaAnnotation List of EJBs.
EJBTransactionRequiredException.javaClass A transaction is required but there was no transaction.
EJBTransactionRolledbackException.javaClass Current transaction has been rollbacked.
EnterpriseBean.javaInterface Each EJB 2.1 bean needs to implement this interface.
EntityBean.javaInterface Each EJB 2.1 Entity bean needs to implement this interface.
EntityContext.javaInterface The EntityContext interface provides an instance with access to the container-provided runtime context of an entity enterprise Bean instance.
FinderException.javaClass The FinderException exception must be included in the throws clause of every findMETHOD(...) method of an entity Bean's home interface.
The exception is used as a standard application-level exception to report a failure to find the requested EJB object(s).
Handle.javaInterface The Handle interface is implemented by all EJB object handles.
HomeHandle.javaInterface The HomeHandle interface is implemented by all home object handles.
Init.javaAnnotation A method of a session bean with this annotation will be used as a create method (for adapter EJB 2.1 view).
Local.javaAnnotation Used on a bean/interface to mark it as a local interface.
LocalHome.javaAnnotation Adapted view for a local home (EJB 2.1).
MessageDriven.javaAnnotation Defines a Message Driven Bean when applied on a bean's class.
MessageDrivenBean.javaInterface The MessageDrivenBean interface is implemented by every message-driven enterprise Bean class.
MessageDrivenContext.javaInterface The MessageDrivenContext interface provides access to the runtime message-driven context that the container provides for a message-driven enterprise Bean instance.
NoSuchEJBException.javaClass The EJB on which we call methods has been removed.
NoSuchEntityException.javaClass The NoSuchEntityException exception is thrown by an Entity Bean instance to its container to report that the invoked business method or callback method could not be completed because of the underlying entity was removed from the database.
This exception may be thrown by the bean class methods that implement the business methods defined in the bean's component interface; and by the ejbLoad and ejbStore methods.
NoSuchObjectLocalException.javaClass The EJB on which we call methods has been removed.
ObjectNotFoundException.javaClass The ObjectNotFoundException exception is thrown by a finder method to indicate that the specified EJB object does not exist.
Only the finder methods that are declared to return a single EJB object use this exception.
PostActivate.javaAnnotation Called on a stateful bean's method when activation has been done.
PrePassivate.javaAnnotation Called on a stateful bean's method before passivation.
Remote.javaAnnotation Used on a bean/interface to mark it as a remote interface.
RemoteHome.javaAnnotation Adapted view for a remote home (EJB 2.1).
Remove.javaAnnotation Call on this annotated method will do a remove of the stateful bean except if retainIfException is set to true.
RemoveException.javaClass The RemoveException exception is thrown at an attempt to remove an EJB object when the enterprise Bean or the container does not allow the EJB object to be removed.
SessionBean.javaInterface The SessionBean interface is implemented by every session enterprise Bean class.
SessionContext.javaInterface Context provided by Session Bean.
SessionSynchronization.javaInterface The SessionSynchronization interface allows a session Bean instance to be notified by its container of transaction boundaries.
Stateful.javaAnnotation Defined the class annotated by Stateful annotation as a stateful bean.
Stateless.javaAnnotation Defined the class annotated by Stateless annotation as a stateless bean.
TimedObject.javaInterface The TimedObject interface contains the callback method that is used to deliver timer expiration notifications.
Timeout.javaAnnotation Defines a method that will receive timers.
Timer.javaInterface The Timer interface contains information about a timer that was created through the EJB Timer Service.
TimerHandle.javaInterface The TimerHandle interface is implemented by all EJB timer handles.
TimerService.javaInterface The TimerService interface provides enterprise bean components with access to the container-provided Timer Service.
TransactionAttribute.javaAnnotation Defines the transaction attribute used for all methods on a given class or for a given method.
TransactionAttributeType.javaenum Available types of transactions.
TransactionManagement.javaAnnotation Type of management (container or bean managed transaction).
TransactionManagementType.javaenum Types of transaction management.
TransactionRequiredLocalException.javaClass This exception indicates that a request carried a null transaction context, but the target object requires an active transaction.
TransactionRolledbackLocalException.javaClass This exception indicates that the transaction associated with processing of the request has been rolled back, or marked to roll back.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.