Enum TransactionSource
- All Implemented Interfaces:
Serializable
,Comparable<TransactionSource>
,java.lang.constant.Constable
The transaction source enumeration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAuto transaction for license create.Auto transaction for license delete.Auto transaction for license update.Auto transaction for licensee create (with automatic licenses).Auto transaction for licensee delete with forceCascade.Transaction for update license during validateAuto transaction for transfer licenses between licensee.Auto transaction for license template delete with forceCascade.Auto transaction for product delete with forceCascade.Auto transaction for product module delete with forceCascade.Transaction for cancel recurring payment.Transaction for obtain bundle.Shop transaction.Transaction for update licenses (inactive with PT LM, Subscription). -
Method Summary
Modifier and TypeMethodDescriptionstatic TransactionSource
Returns the enum constant of this type with the specified name.static TransactionSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SHOP
Shop transaction. -
AUTO_LICENSE_CREATE
Auto transaction for license create. -
AUTO_LICENSE_UPDATE
Auto transaction for license update. -
AUTO_LICENSE_DELETE
Auto transaction for license delete. -
AUTO_LICENSEE_CREATE
Auto transaction for licensee create (with automatic licenses). -
AUTO_LICENSEE_DELETE
Auto transaction for licensee delete with forceCascade. -
AUTO_LICENSEE_VALIDATE
Transaction for update license during validate -
AUTO_LICENSETEMPLATE_DELETE
Auto transaction for license template delete with forceCascade. -
AUTO_PRODUCTMODULE_DELETE
Auto transaction for product module delete with forceCascade. -
AUTO_PRODUCT_DELETE
Auto transaction for product delete with forceCascade. -
AUTO_LICENSES_TRANSFER
Auto transaction for transfer licenses between licensee. -
SUBSCRIPTION_UPDATE
Transaction for update licenses (inactive with PT LM, Subscription). -
CANCEL_RECURRING_PAYMENT
Transaction for cancel recurring payment. -
OBTAIN_BUNDLE
Transaction for obtain bundle.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-