org.apache.openejb.core
Enum BaseContext.Call
java.lang.Object
java.lang.Enum<BaseContext.Call>
org.apache.openejb.core.BaseContext.Call
- All Implemented Interfaces:
- Serializable, Comparable<BaseContext.Call>
- Enclosing class:
- BaseContext
public static enum BaseContext.Call
- extends Enum<BaseContext.Call>
getEJBObject
public static final BaseContext.Call getEJBObject
getEJBLocalObject
public static final BaseContext.Call getEJBLocalObject
isCallerInRole
public static final BaseContext.Call isCallerInRole
setRollbackOnly
public static final BaseContext.Call setRollbackOnly
getCallerPrincipal
public static final BaseContext.Call getCallerPrincipal
getRollbackOnly
public static final BaseContext.Call getRollbackOnly
getTimerService
public static final BaseContext.Call getTimerService
getUserTransaction
public static final BaseContext.Call getUserTransaction
getBusinessObject
public static final BaseContext.Call getBusinessObject
timerMethod
public static final BaseContext.Call timerMethod
getInvokedBusinessInterface
public static final BaseContext.Call getInvokedBusinessInterface
UserTransactionMethod
public static final BaseContext.Call UserTransactionMethod
getMessageContext
public static final BaseContext.Call getMessageContext
getPrimaryKey
public static final BaseContext.Call getPrimaryKey
getContextData
public static final BaseContext.Call getContextData
values
public static BaseContext.Call[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (BaseContext.Call c : BaseContext.Call.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static BaseContext.Call valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 1999–2015 The Apache Software Foundation. All rights reserved.