Enum Class WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode
java.lang.Object
java.lang.Enum<WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode>
edu.internet2.middleware.grouper.ws.soap_v2_5.WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode
- All Implemented Interfaces:
WsResultCode
,Serializable
,Comparable<WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode>
,Constable
- Enclosing class:
- WsGetAttributeAssignActionsResults
public static enum WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode
extends Enum<WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode>
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)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionsomething bad happened (lite status code 500) (success: F)not allowed due to the privileges on the inputs.invalid query (e.g.found the attributeAssignActions (lite status code 200) (success: T) -
Method Summary
Modifier and TypeMethodDescriptionint
get the http result code for this status codeboolean
if this is a successful resultnameForVersion
(edu.internet2.middleware.grouper.misc.GrouperVersion clientVersion) get the name label for a certain version of clientReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface edu.internet2.middleware.grouper.ws.WsResultCode
name
-
Enum Constant Details
-
SUCCESS
public static final WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode SUCCESSfound the attributeAssignActions (lite status code 200) (success: T) -
EXCEPTION
public static final WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode EXCEPTIONsomething bad happened (lite status code 500) (success: F) -
INVALID_QUERY
public static final WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode INVALID_QUERYinvalid query (e.g. if everything blank) (lite status code 400) (success: F) -
INSUFFICIENT_PRIVILEGES
public static final WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode INSUFFICIENT_PRIVILEGESnot allowed due to the privileges on the inputs.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
public static WsGetAttributeAssignActionsResults.WsGetAttributeAssignActionsResultsCode valueOf(String name) Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
nameForVersion
get the name label for a certain version of client- Specified by:
nameForVersion
in interfaceWsResultCode
- Parameters:
clientVersion
-- Returns:
- name
-
isSuccess
public boolean isSuccess()if this is a successful result- Specified by:
isSuccess
in interfaceWsResultCode
- Returns:
- true if success
-
getHttpStatusCode
public int getHttpStatusCode()get the http result code for this status code- Specified by:
getHttpStatusCode
in interfaceWsResultCode
- Returns:
- the status code
-