Enum OperationType
- All Implemented Interfaces:
Serializable,Comparable<OperationType>,java.lang.constant.Constable
public enum OperationType extends Enum<OperationType>
Enumeration to represent type of operation being performed.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_APPLICATION_CREDENTIALAn application credential was added.ADD_CUSTOMERAdding a CustomerCONVERT_TRIAL_SUBSCRIPTIONConvert a trial subscription to a paid one.CREATE_AGREEMENTA new agreement has been created.CREATE_CUSTOMER_USERCreates a customer user.CREATE_MPN_ASSOCIATIONCreate MPN association.CREATE_ORDERCreate a new order.CREATE_PARTNER_RELATIONSHIPCreates a partner relationship.CREATE_PARTNER_USERCreates a partner user.CREATE_REFERRALA referral was created.DELETE_CUSTOMERDeleting a customer.DELETE_CUSTOMER_USERDeletes a customer user.GET_SOFTWARE_DOWNLOAD_LINKA link to the software download was obtained.GET_SOFTWARE_KEYA software key was obtained.INCREASE_CREDIT_LIMITThe credit limit for the partner was increased.READY_INVOICEAn invoice is ready.REGISTER_APPLICATIONAdd and registers an application.REMOVE_APPLICATION_CREDENTIALAn application credential was removed.REMOVE_PARTNER_CUSTOMER_RELATIONSHIPRemove Partner Customer relationship.REMOVE_PARTNER_USERRemoves a partner user.RESET_CUSTOMER_USER_PASSWORDReset customer user password.RESTORE_CUSTOMER_USERRestore customer user.UNDEFINEDThe undefinedUNREGISTER_APPLICATIONUnregisters an application.UPDATE_CUSTOMER_BILLING_PROFILEUpdate a Customer Billing ProfileUPDATE_CUSTOMER_QUALIFICATIONUpdate Customer QualificationUPDATE_CUSTOMER_USERUpdates a customer user.UPDATE_CUSTOMER_USER_LICENSESUpdates a customer user licenses.UPDATE_CUSTOMER_USER_PRINCIPAL_NAMEUpdate customer user UPN.UPDATE_MPN_ASSOCIATIONUpdate MPN association.UPDATE_ORDERUpdates an existing order.UPDATE_PARTNER_USERUpdates a partner user.UPDATE_REFERRALA referral was updated.UPDATE_SFB_CUSTOMER_USER_LICENSESUpdates a Sfb customer user licenses.UPDATE_SUBSCRIPTIONUpdates an existing subscription.UPDATE_TRANSFERUpdate transfer.UPDATECUSTOMERPARTNERCONTRACTCOMPANYNAMEUpdate a Customer's Partner Contract Company NameUPDATECUSTOMERSPENDINGBUDGETUpdates a customer spending budget.UPGRADE_SUBSCRIPTIONTransition a subscription. -
Method Summary
Modifier and Type Method Description StringtoString()Converts the object to a string.static OperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNDEFINED
The undefined -
UPDATE_CUSTOMER_QUALIFICATION
Update Customer Qualification -
UPDATE_SUBSCRIPTION
Updates an existing subscription. -
UPGRADE_SUBSCRIPTION
Transition a subscription. -
CONVERT_TRIAL_SUBSCRIPTION
Convert a trial subscription to a paid one. -
ADD_CUSTOMER
Adding a Customer -
UPDATE_CUSTOMER_BILLING_PROFILE
Update a Customer Billing Profile -
UPDATECUSTOMERPARTNERCONTRACTCOMPANYNAME
Update a Customer's Partner Contract Company Name -
UPDATECUSTOMERSPENDINGBUDGET
Updates a customer spending budget. -
DELETE_CUSTOMER
Deleting a customer. This only happens in the sandbox integration accounts. -
REMOVE_PARTNER_CUSTOMER_RELATIONSHIP
Remove Partner Customer relationship. -
CREATE_ORDER
Create a new order. -
UPDATE_ORDER
Updates an existing order. -
CREATE_CUSTOMER_USER
Creates a customer user. -
DELETE_CUSTOMER_USER
Deletes a customer user. -
UPDATE_CUSTOMER_USER
Updates a customer user. -
UPDATE_CUSTOMER_USER_LICENSES
Updates a customer user licenses. -
RESET_CUSTOMER_USER_PASSWORD
Reset customer user password. -
UPDATE_CUSTOMER_USER_PRINCIPAL_NAME
Update customer user UPN. -
RESTORE_CUSTOMER_USER
Restore customer user. -
CREATE_MPN_ASSOCIATION
Create MPN association. -
UPDATE_MPN_ASSOCIATION
Update MPN association. -
UPDATE_SFB_CUSTOMER_USER_LICENSES
Updates a Sfb customer user licenses. -
UPDATE_TRANSFER
Update transfer. -
CREATE_PARTNER_RELATIONSHIP
Creates a partner relationship. -
REGISTER_APPLICATION
Add and registers an application. -
UNREGISTER_APPLICATION
Unregisters an application. -
ADD_APPLICATION_CREDENTIAL
An application credential was added. -
REMOVE_APPLICATION_CREDENTIAL
An application credential was removed. -
CREATE_PARTNER_USER
Creates a partner user. -
UPDATE_PARTNER_USER
Updates a partner user. -
REMOVE_PARTNER_USER
Removes a partner user. -
CREATE_REFERRAL
A referral was created. -
UPDATE_REFERRAL
A referral was updated. -
GET_SOFTWARE_KEY
A software key was obtained. -
GET_SOFTWARE_DOWNLOAD_LINK
A link to the software download was obtained. -
INCREASE_CREDIT_LIMIT
The credit limit for the partner was increased. -
READY_INVOICE
An invoice is ready. -
CREATE_AGREEMENT
A new agreement has been created.
-
-
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
-
toString
Converts the object to a string.- Overrides:
toStringin classEnum<OperationType>- Returns:
- A string that represents this object.
-