edu.internet2.middleware.grouper.ws.coresoap
Enum WsDeleteMemberResults.WsDeleteMemberResultsCode

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

public static enum WsDeleteMemberResults.WsDeleteMemberResultsCode
extends Enum<WsDeleteMemberResults.WsDeleteMemberResultsCode>
implements WsResultCode

result code of a request


Enum Constant Summary
EXCEPTION
          found the subject (rest http status code 500) (success: F)
GROUP_NOT_FOUND
          cant find group (rest http status code 404) (success: F)
INVALID_QUERY
          invalid query (e.g.
PROBLEM_DELETING_MEMBERS
          problem deleting existing members (rest http status code 500) (success: F)
SUCCESS
          found the subject (rest http 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 WsDeleteMemberResults.WsDeleteMemberResultsCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WsDeleteMemberResults.WsDeleteMemberResultsCode[] 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

GROUP_NOT_FOUND

public static final WsDeleteMemberResults.WsDeleteMemberResultsCode GROUP_NOT_FOUND
cant find group (rest http status code 404) (success: F)


SUCCESS

public static final WsDeleteMemberResults.WsDeleteMemberResultsCode SUCCESS
found the subject (rest http status code 200) (success: T)


EXCEPTION

public static final WsDeleteMemberResults.WsDeleteMemberResultsCode EXCEPTION
found the subject (rest http status code 500) (success: F)


PROBLEM_DELETING_MEMBERS

public static final WsDeleteMemberResults.WsDeleteMemberResultsCode PROBLEM_DELETING_MEMBERS
problem deleting existing members (rest http status code 500) (success: F)


INVALID_QUERY

public static final WsDeleteMemberResults.WsDeleteMemberResultsCode INVALID_QUERY
invalid query (e.g. if everything blank) (rest http status code 400) (success: F)

Method Detail

values

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

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

valueOf

public static WsDeleteMemberResults.WsDeleteMemberResultsCode 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:

isSuccess

public boolean isSuccess()
if this is a successful result

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

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()