Enum Class StateTransition.Transition
java.lang.Object
java.lang.Enum<StateTransition.Transition>
oracle.communication.brm.charging.statemanager.StateTransition.Transition
- All Implemented Interfaces:
Serializable
,Comparable<StateTransition.Transition>
,Constable
- Enclosing interface:
StateTransition
defined transitions on the state machine
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTransition that indicates that config data loading is complete in the systemTransition that indicates that config data loading failed in the systemTransition that indicates that config data is being loaded in the systemTransition that indicates that customer data loading is complete in the systemTransition that indicates that customer data loading failed in the systemTransition that indicates that customer data is being loaded into the systemTransition that indicates that system is coming upTransition that indicates that pricing data loading is complete in the systemTransition that indicates that pricing data loading failed in the system.Transition that indicates that pricing data is being loaded in the systemTransition that indicates that pricing data updating with data from the subscription system (cross-ref data) completedTransition that indicates that pricing data updating with data from the subscription system (cross-ref data) failedTransition that indicates that pricing data is being updated with data from the subscription system (cross-ref data)Transition that indicates that system is shutting down.Transition that indicates that system is going into De-graded modeTransition that indicates that system is coming back to normal modeTransition that indicates that system successfully updated all backlog dataTransition that indicates that updating of backlog data failed in the systemTransition that indicates that system is catching up backlog dataTransition that indicates that system is ready for usage processing -
Method Summary
Modifier and TypeMethodDescriptionstatic StateTransition.Transition
Returns the enum constant of this class with the specified name.static StateTransition.Transition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONFIG_DATA_LOAD_STARTED
Transition that indicates that config data is being loaded in the system -
CONFIG_DATA_LOAD_COMPLETE
Transition that indicates that config data loading is complete in the system -
CONFIG_DATA_LOAD_FAILED
Transition that indicates that config data loading failed in the system -
PRICING_DATA_LOAD_STARTED
Transition that indicates that pricing data is being loaded in the system -
PRICING_DATA_LOAD_COMPLETE
Transition that indicates that pricing data loading is complete in the system -
PRICING_DATA_LOAD_FAILED
Transition that indicates that pricing data loading failed in the system. -
PRODUCT_OFFERING_CROSS_REF_DATA_LOAD_STARTED
Transition that indicates that pricing data is being updated with data from the subscription system (cross-ref data) -
PRODUCT_OFFERING_CROSS_REF_DATA_LOAD_COMPLETE
Transition that indicates that pricing data updating with data from the subscription system (cross-ref data) completed -
PRODUCT_OFFERING_CROSS_REF_DATA_LOAD_FAILED
Transition that indicates that pricing data updating with data from the subscription system (cross-ref data) failed -
CUSTOMER_DATA_LOAD_STARTED
Transition that indicates that customer data is being loaded into the system -
CUSTOMER_DATA_LOAD_COMPLETE
Transition that indicates that customer data loading is complete in the system -
CUSTOMER_DATA_LOAD_FAILED
Transition that indicates that customer data loading failed in the system -
UPDATER_BACKLOG_PROCESSING_STARTED
Transition that indicates that system is catching up backlog data -
UPDATER_BACKLOG_PROCESSING_COMPLETE
Transition that indicates that system successfully updated all backlog data -
UPDATER_BACKLOG_PROCESSING_FAILED
Transition that indicates that updating of backlog data failed in the system -
USAGE_PROCESSING_STARTED
Transition that indicates that system is ready for usage processing -
SYSTEM_COLLAPSING
Transition that indicates that system is going into De-graded mode -
SYSTEM_RESTORED
Transition that indicates that system is coming back to normal mode -
LOAD_STATE
Transition that indicates that system is coming up -
SHUTDOWN_STARTED
Transition that indicates that system is shutting down.
-
-
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
-