Enum Class Guard
- All Implemented Interfaces:
Serializable
,Comparable<Guard>
,Constable
The Guard enum describes some common guards that can be used when implementing governance services.
Using the common guard names where possible saves time when coding the provider class and improves the
ability of the service to be incorporated into governance action processes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionOne or all of the action targets passed to this service are not of the correct type and so the service has failed to start.Multiple action targets supplied.There is no supplied action target and so the governance service does not know which asset to work on.The service completed successfully.An unexpected error occurred while the governance service was running.The action target is not an asset. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the typical completion status used with this guard.Return the description of the guard.Return details of a specific guard.Return details of all defined guards.getName()
Return the name of the guard.toString()
Output of this enum class and main value.static Guard
Returns the enum constant of this class with the specified name.static Guard[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SERVICE_COMPLETED
The service completed successfully. -
SERVICE_FAILED
An unexpected error occurred while the governance service was running. Messages are logged to the audit log explaining the source of the error. -
INVALID_ACTION_TARGET_TYPE
One or all of the action targets passed to this service are not of the correct type and so the service has failed to start. -
NO_TARGETS_DETECTED
There is no supplied action target and so the governance service does not know which asset to work on. -
TARGET_NOT_ASSET
The action target is not an asset. -
MULTIPLE_TARGETS_DETECTED
Multiple action targets supplied. This governance service does not support multiple action targets because the result of the origin search could be different for each action target making it difficult to automate the response.
-
-
Field Details
-
name
-
completionStatus
-
description
-
-
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
-
getName
Return the name of the guard.- Returns:
- string name
-
getCompletionStatus
Return the typical completion status used with this guard.- Returns:
- completion status
-
getDescription
Return the description of the guard.- Returns:
- text
-
getGuardTypes
Return details of all defined guards.- Returns:
- guard types
-
getGuardType
Return details of a specific guard.- Returns:
- guard type
-
toString
Output of this enum class and main value.
-