Class LicenseInfo

Object
LicenseInfo

public class LicenseInfo extends Object

LicenseInfo describes the licensing details for a particular client or organization. It might include the contract/plan type, expiry date, and usage status (e.g., how many cryptographic operations have been used).

Typically, you retrieve this by calling the SDK method: sdk.getLicenseInfo(clientId), which returns a summary in plain text, but internally may map into this object.

Example JSON (if exposed directly):


 {
   "contractType": "PRO",
   "expiryDate": "2026-06-01",
   "clientId": "myClientId123",
   "totalOperationsUsed": 12345
 }
 

  • Constructor Details

    • LicenseInfo

      public LicenseInfo()
      No-args constructor.
  • Method Details

    • getContractType

      public String getContractType()
      Gets the contract/plan type, e.g. "FREE", "PRO", "ENTERPRISE".
      Returns:
      contractType
    • setContractType

      public void setContractType(String contractType)
      Sets the contract/plan type, e.g. "FREE", "PRO", "ENTERPRISE".
      Parameters:
      contractType - e.g. "PRO"
    • getExpiryDate

      public String getExpiryDate()
      Gets the expiry date (in YYYY-MM-DD or another format).
      Returns:
      expiryDate
    • setExpiryDate

      public void setExpiryDate(String expiryDate)
      Sets the expiry date (in YYYY-MM-DD or similar format).
      Parameters:
      expiryDate - a string date, e.g. "2026-06-01"
    • getClientId

      public String getClientId()
      Gets the client ID associated with this license.
      Returns:
      clientId
    • setClientId

      public void setClientId(String clientId)
      Sets the client ID associated with this license.
      Parameters:
      clientId - e.g. "myClientId123"
    • getTotalOperationsUsed

      public Long getTotalOperationsUsed()
      Gets the total number of operations used by this client.
      Returns:
      totalOperationsUsed
    • setTotalOperationsUsed

      public void setTotalOperationsUsed(Long totalOperationsUsed)
      Sets the total number of operations used by this client so far.
      Parameters:
      totalOperationsUsed - a long value