public interface LicensingService
Modifier and Type | Method and Description |
---|---|
void |
addLicense(Integer customerID,
String licenseKey)
Add License to customer
|
void |
addLicenseToPool(String licenseKey)
Add License to pool
|
Collection<LicenseDetails> |
getAllLicenses()
Returns information about all licenses
|
Collection<LicenseDetails> |
getAllLicenses(int customerID)
Returns information about all licenses regarding to input customer ID
|
Collection<LicenseDetails> getAllLicenses()
Collection<LicenseDetails> getAllLicenses(int customerID)
void addLicense(Integer customerID, String licenseKey)
customerID
- licenseKey
- void addLicenseToPool(String licenseKey)
licenseKey
-