Package co.ankatech.ankasecure.sdk.model
Class LicenseInfo
Object
LicenseInfo
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the client ID associated with this license.Gets the contract/plan type, e.g.Gets the expiry date (in YYYY-MM-DD or another format).Gets the total number of operations used by this client.void
setClientId
(String clientId) Sets the client ID associated with this license.void
setContractType
(String contractType) Sets the contract/plan type, e.g.void
setExpiryDate
(String expiryDate) Sets the expiry date (in YYYY-MM-DD or similar format).void
setTotalOperationsUsed
(Long totalOperationsUsed) Sets the total number of operations used by this client so far.
-
Constructor Details
-
LicenseInfo
public LicenseInfo()No-args constructor.
-
-
Method Details
-
getContractType
Gets the contract/plan type, e.g. "FREE", "PRO", "ENTERPRISE".- Returns:
- contractType
-
setContractType
Sets the contract/plan type, e.g. "FREE", "PRO", "ENTERPRISE".- Parameters:
contractType
- e.g. "PRO"
-
getExpiryDate
Gets the expiry date (in YYYY-MM-DD or another format).- Returns:
- expiryDate
-
setExpiryDate
Sets the expiry date (in YYYY-MM-DD or similar format).- Parameters:
expiryDate
- a string date, e.g. "2026-06-01"
-
getClientId
Gets the client ID associated with this license.- Returns:
- clientId
-
setClientId
Sets the client ID associated with this license.- Parameters:
clientId
- e.g. "myClientId123"
-
getTotalOperationsUsed
Gets the total number of operations used by this client.- Returns:
- totalOperationsUsed
-
setTotalOperationsUsed
Sets the total number of operations used by this client so far.- Parameters:
totalOperationsUsed
- a long value
-