org.openliberty.wsc
Enum PeopleService.PeopleServiceRequest

java.lang.Object
  extended by java.lang.Enum<PeopleService.PeopleServiceRequest>
      extended by org.openliberty.wsc.PeopleService.PeopleServiceRequest
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PeopleService.PeopleServiceRequest>
Enclosing class:
PeopleService

public static enum PeopleService.PeopleServiceRequest
extends java.lang.Enum<PeopleService.PeopleServiceRequest>


Enum Constant Summary
ADD_COLLECTION_REQUEST
           
ADD_ENTITY_REQUEST
           
ADD_KNOWN_ENTITY_REQUEST
           
ADD_TO_COLLECTION_REQUEST
           
GET_OBJECT_INFO_REQUEST
           
LIST_MEMBERS_REQUEST
           
NOTIFY_REQUEST
           
QUERY_OBJS_REQUEST
           
REMOVE_COLLECTION_REQUEST
           
REMOVE_ENTITY_REQUEST
           
REMOVE_FROM_COLLECTION_REQUEST
           
RESOLVE_ID_REQUEST
           
SET_OBJECT_INFO_REQUEST
           
TEST_MEMBERSHIP_REQUEST
           
 
Field Summary
private  java.lang.String actionURI
           
 
Method Summary
 java.lang.String actionURI()
           
static PeopleService.PeopleServiceRequest valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PeopleService.PeopleServiceRequest[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADD_ENTITY_REQUEST

public static final PeopleService.PeopleServiceRequest ADD_ENTITY_REQUEST

ADD_KNOWN_ENTITY_REQUEST

public static final PeopleService.PeopleServiceRequest ADD_KNOWN_ENTITY_REQUEST

REMOVE_ENTITY_REQUEST

public static final PeopleService.PeopleServiceRequest REMOVE_ENTITY_REQUEST

ADD_COLLECTION_REQUEST

public static final PeopleService.PeopleServiceRequest ADD_COLLECTION_REQUEST

REMOVE_COLLECTION_REQUEST

public static final PeopleService.PeopleServiceRequest REMOVE_COLLECTION_REQUEST

ADD_TO_COLLECTION_REQUEST

public static final PeopleService.PeopleServiceRequest ADD_TO_COLLECTION_REQUEST

REMOVE_FROM_COLLECTION_REQUEST

public static final PeopleService.PeopleServiceRequest REMOVE_FROM_COLLECTION_REQUEST

LIST_MEMBERS_REQUEST

public static final PeopleService.PeopleServiceRequest LIST_MEMBERS_REQUEST

GET_OBJECT_INFO_REQUEST

public static final PeopleService.PeopleServiceRequest GET_OBJECT_INFO_REQUEST

SET_OBJECT_INFO_REQUEST

public static final PeopleService.PeopleServiceRequest SET_OBJECT_INFO_REQUEST

QUERY_OBJS_REQUEST

public static final PeopleService.PeopleServiceRequest QUERY_OBJS_REQUEST

TEST_MEMBERSHIP_REQUEST

public static final PeopleService.PeopleServiceRequest TEST_MEMBERSHIP_REQUEST

RESOLVE_ID_REQUEST

public static final PeopleService.PeopleServiceRequest RESOLVE_ID_REQUEST

NOTIFY_REQUEST

public static final PeopleService.PeopleServiceRequest NOTIFY_REQUEST
Field Detail

actionURI

private final java.lang.String actionURI
Method Detail

values

public static final PeopleService.PeopleServiceRequest[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(PeopleService.PeopleServiceRequest c : PeopleService.PeopleServiceRequest.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static PeopleService.PeopleServiceRequest valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

actionURI

public java.lang.String actionURI()