org.apache.openejb.core
Enum BaseContext.Call

java.lang.Object
  extended by java.lang.Enum<BaseContext.Call>
      extended by 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>


Enum Constant Summary
getBusinessObject
           
getCallerPrincipal
           
getContextData
           
getEJBLocalObject
           
getEJBObject
           
getInvokedBusinessInterface
           
getMessageContext
           
getPrimaryKey
           
getRollbackOnly
           
getTimerService
           
getUserTransaction
           
isCallerInRole
           
setRollbackOnly
           
timerMethod
           
UserTransactionMethod
           
 
Method Summary
static BaseContext.Call valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BaseContext.Call[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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-2011 The Apache Software Foundation. All Rights Reserved.