|
Java API Reference for Oracle Infrastructure Web Services 11 Release 1 (11.1.1) E10654-02 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Object
java.lang.Enum<Conversational.Scope>
oracle.webservices.annotations.Conversational.Scope
public static enum Conversational.Scope
The scope of a JAX-WS service endpoint implementation bean instance.
| Enum Constant Summary | |
|---|---|
ApplicationA single service endpoint instance is created for an JavaEE application. |
|
CallA new service endpoint instance is created for each client request. |
|
ContainerA new service endpoint instance is created and may be pooled by the container to serve multiple requrests targeting this service endpoint. |
|
SessionA new service endpoint instance is created for each new client session, and maintained for the lifetime of that session. |
|
| Method Summary | |
|---|---|
static Conversational.Scope |
valueOf(String name)Returns the enum constant of this type with the specified name. |
static Conversational.Scope[] |
values()Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Conversational.Scope Call
public static final Conversational.Scope Session
public static final Conversational.Scope Application
public static final Conversational.Scope Container
| Method Detail |
|---|
public static Conversational.Scope[] values()
for (Conversational.Scope c : Conversational.Scope.values())
System.out.println(c);
public static Conversational.Scope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null
|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||