|
Displaying 1 - 14 of about 14 Related Tutorials.
|
EJBContext
EJBContext
 ...-environment.
EJBContext API works like a window for the bean to the
outside... beans, message driven beans, and entity beans respectively.
These EJBContext |
Identify the use and behavior of the MessageDrivenContext
interface methods.
method is inherited from
the EJBContext interface. Message-driven... is inherited from the
EJBContext interface. Message-driven bean instances... methods are inherited from
the EJBContext interface. Message-driven |
Chapter 8. Entity Beans
EJBContext interface, which is parent for contexts for
all 3 types of EJB... Beans.
public interface EntityContext extends EJBContext {
EJBLocalObject... IllegalStateException;
}
public interface EJBContext {
EJBHome getEJBHome |
|
|
Given a code listing, determine whether it is a legal and appropriate way to
programmatically access a caller's security context.
;
public interface EJBContext {
// The following two methods allow the EJB....
public class EmployeeServiceBean implements SessionBean {
EJBContext ejbContext;
public void changePhoneNumber(...) {
...
// Obtain the default |
Identify the interfaces and methods a JMS message-driven bean must implement.
,
javax.jms.MessageListener {
MessageDrivenContext ejbContext;
Context... mdc) {
ejbContext = mdc;
try {
jndiContext = new InitialContext...);
}
}
...
public void ejbRemove () {
try {
jndiContext.close ();
ejbContext |
|
|
Chapter 11. Transactions
of the EJBContext interface.
An enterprise bean... of its EJBContext
object to mark the transaction such that the transaction can...
the getRollbackOnly() method of its
EJBContext object to test if the current transaction |
Features of EJB 3.0
it is interacting
to the container. EJBContext is further categorized into SessionContext.... Bean instances may use the dependency injection to
access EJBContext instance...()
method of the EJBContext interface. Bean must use the JNDI API to access |
Features of EJB 3.0
it is interacting
to the container. EJBContext is further categorized into SessionContext.... Bean instances may use the dependency injection to
access EJBContext instance...()
method of the EJBContext interface. Bean must use the JNDI API to access |
Java Glossary Term - E
data.
EJBContext
javax.ejb.EJBContext |
Identify the interface and method for each of the following: retrieve the session
bean's remote home interface, retrieve the session bean's local component interface,
determine if the sessio
EJBContext {
EJBLocalObject getEJBLocalObject() throws IllegalStateException... EJBContext {
EJBHome getEJBHome();
EJBLocalHome getEJBLocalHome |
Given a list of responsibilities, identify whose which are the Container's
with respect to transactions, including the handling of
getRollbackOnly, setRollbackOnly,
getUserTransacti
to invoke the getUserTransaction() method of the
EJBContext interface |
Use JTA to control transaction demarcation
() methods of the
EJBContext interface interface in bean-managed transactions (BMT |
Identify correct and incorrect statements about the purpose and use of
the deployment descriptor elements for environment entries, EJB references, and
resource manager connection factory r
EmployeeServiceBean implements SessionBean {
EJBContext ejbContext;
public void |
Manipulate transactional behavior of EJBs using deployment descriptors
by invoking the
setRollbackOnly() method of the EJBContext interface |