edu.internet2.middleware.grouper.ws.coresoap
Enum WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode

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

public static enum WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode
extends Enum<WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode>
implements WsResultCode

result code of a request. The possible result codes of WsGetMembersResultCode (with http status codes) are: SUCCESS(200), EXCEPTION(500), INVALID_QUERY(400)


Enum Constant Summary
EXCEPTION
          something bad happened (lite status code 500) (success: F)
INSUFFICIENT_PRIVILEGES
          not allowed to the privileges on the inputs.
INVALID_QUERY
          invalid query (e.g.
SUCCESS
          found the attributeAssignments (lite status code 200) (success: T)
TRANSACTION_ROLLED_BACK
          in tx, but another item had problem (lite status code 500) (success: F)
 
Method Summary
static WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode convertFromWsAssignAttributesResultCode(WsAssignAttributesResults.WsAssignAttributesResultsCode wsAssignAttributesResultsCode)
           
 int getHttpStatusCode()
          get the http result code for this status code
 boolean isSuccess()
          if this is a successful result
 String nameForVersion(GrouperVersion clientVersion)
          get the name label for a certain version of client
static WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode[] 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 WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode SUCCESS
found the attributeAssignments (lite status code 200) (success: T)


EXCEPTION

public static final WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode EXCEPTION
something bad happened (lite status code 500) (success: F)


TRANSACTION_ROLLED_BACK

public static final WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode TRANSACTION_ROLLED_BACK
in tx, but another item had problem (lite status code 500) (success: F)


INVALID_QUERY

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


INSUFFICIENT_PRIVILEGES

public static final WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode INSUFFICIENT_PRIVILEGES
not allowed to the privileges on the inputs. Note if broad search, then the results wont contain items not allowed. If a specific search e.g. on a group, then if you cant read the group then you cant read the privs

Method Detail

values

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

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

valueOf

public static WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode 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

convertFromWsAssignAttributesResultCode

public static WsAssignAttributeBatchResult.WsAssignAttributeBatchResultCode convertFromWsAssignAttributesResultCode(WsAssignAttributesResults.WsAssignAttributesResultsCode wsAssignAttributesResultsCode)
Parameters:
wsAssignAttributesResultsCode -
Returns:
the code

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:
name

isSuccess

public boolean isSuccess()
if this is a successful result

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

getHttpStatusCode

public int getHttpStatusCode()
get the http result code for this status code

Specified by:
getHttpStatusCode in interface WsResultCode
Returns:
the status code