edu.internet2.middleware.grouper.ws.coresoap
Enum WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode

java.lang.Object
  extended by java.lang.Enum<WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode>
      extended by edu.internet2.middleware.grouper.ws.coresoap.WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode
All Implemented Interfaces:
WsResultCode, Serializable, Comparable<WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode>
Enclosing class:
WsGroupDeleteLiteResult

public static enum WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode
extends Enum<WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode>
implements WsResultCode

result code of a request


Enum Constant Summary
EXCEPTION
          either overall exception, or one or more groups had exceptions (lite status code 500) (success: F)
GROUP_UUID_DOESNT_MATCH_NAME
          in group lookup, the uuid doesnt match name (lite status code 400) (success: F)
INSUFFICIENT_PRIVILEGES
          user not allowed (lite status code 403) (success: F)
INVALID_QUERY
          invalid query (e.g.
PARENT_STEM_NOT_FOUND
          if parent stem cant be found (lite status code 404) (success: F)
PROBLEM_DELETING_GROUPS
          problem deleting existing groups (lite status code 500) (success: F)
SUCCESS
          found the groups, deleted them (lite status code 200) (success: T)
SUCCESS_GROUP_NOT_FOUND
          the group was not found (lite status code 200) (success: T)
 
Method Summary
 int getHttpStatusCode()
          get the http status code associated with this status code, e.g.
 boolean isSuccess()
          if this is a successful result
 String nameForVersion(GrouperVersion clientVersion)
          get the name label for a certain version of client
static WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode[] 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
 
Methods inherited from interface edu.internet2.middleware.grouper.ws.WsResultCode
name
 

Enum Constant Detail

SUCCESS

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode SUCCESS
found the groups, deleted them (lite status code 200) (success: T)


EXCEPTION

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode EXCEPTION
either overall exception, or one or more groups had exceptions (lite status code 500) (success: F)


PROBLEM_DELETING_GROUPS

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode PROBLEM_DELETING_GROUPS
problem deleting existing groups (lite status code 500) (success: F)


INVALID_QUERY

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode INVALID_QUERY
invalid query (e.g. if everything blank) (lite status code 400) (success: F)


GROUP_UUID_DOESNT_MATCH_NAME

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode GROUP_UUID_DOESNT_MATCH_NAME
in group lookup, the uuid doesnt match name (lite status code 400) (success: F)


INSUFFICIENT_PRIVILEGES

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode INSUFFICIENT_PRIVILEGES
user not allowed (lite status code 403) (success: F)


PARENT_STEM_NOT_FOUND

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode PARENT_STEM_NOT_FOUND
if parent stem cant be found (lite status code 404) (success: F)


SUCCESS_GROUP_NOT_FOUND

public static final WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode SUCCESS_GROUP_NOT_FOUND
the group was not found (lite status code 200) (success: T)

Method Detail

values

public static WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode[] 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 (WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode c : WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode.values())
    System.out.println(c);

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

valueOf

public static WsGroupDeleteLiteResult.WsGroupDeleteLiteResultCode 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

nameForVersion

public String nameForVersion(GrouperVersion clientVersion)
get the name label for a certain version of client

Specified by:
nameForVersion in interface WsResultCode
Parameters:
clientVersion -
Returns:

getHttpStatusCode

public int getHttpStatusCode()
Description copied from interface: WsResultCode
get the http status code associated with this status code, e.g. 200

Specified by:
getHttpStatusCode in interface WsResultCode
Returns:
the status code e.g. 200
See Also:
WsResultCode.getHttpStatusCode()

isSuccess

public boolean isSuccess()
if this is a successful result

Specified by:
isSuccess in interface WsResultCode
Returns:
true if success