Enum Class WsAttributeDefNameSaveResults.WsAttributeDefNameSaveResultsCode
java.lang.Object
java.lang.Enum<WsAttributeDefNameSaveResults.WsAttributeDefNameSaveResultsCode>
edu.internet2.middleware.grouper.ws.coresoap.WsAttributeDefNameSaveResults.WsAttributeDefNameSaveResultsCode
- All Implemented Interfaces:
WsResultCode
,Serializable
,Comparable<WsAttributeDefNameSaveResults.WsAttributeDefNameSaveResultsCode>
,Constable
- Enclosing class:
- WsAttributeDefNameSaveResults
public static enum WsAttributeDefNameSaveResults.WsAttributeDefNameSaveResultsCode
extends Enum<WsAttributeDefNameSaveResults.WsAttributeDefNameSaveResultsCode>
implements WsResultCode
result code of a request
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptioneither overall exception, or one or more attribute def names had exceptions (lite http status code 500) (success: F)invalid query (e.g.problem saving existing attribute def names (lite http status code 500) (success: F)found the attribute def names, saved them (lite http status code 201) (success: T) -
Method Summary
Modifier and TypeMethodDescriptionint
get the http status code associated with this status code, e.g.boolean
if this is a successful resultnameForVersion
(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
found the attribute def names, saved them (lite http status code 201) (success: T) -
EXCEPTION
either overall exception, or one or more attribute def names had exceptions (lite http status code 500) (success: F) -
PROBLEM_SAVING_ATTRIBUTE_DEF_NAMES
public static final WsAttributeDefNameSaveResults.WsAttributeDefNameSaveResultsCode PROBLEM_SAVING_ATTRIBUTE_DEF_NAMESproblem saving existing attribute def names (lite http status code 500) (success: F) -
INVALID_QUERY
invalid query (e.g. if everything blank) (lite http status code 400) (success: F)
-
-
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
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 for version
-
isSuccess
public boolean isSuccess()if this is a successful result- Specified by:
isSuccess
in interfaceWsResultCode
- 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 interfaceWsResultCode
- Returns:
- the status code e.g. 200
- See Also:
-