com.vaadin.collaborationengine.
Interface LicenseStorage
The interface to store license usage data.
Author:
Vaadin Ltd
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addUserEntry
(String licenseKey, YearMonth month, String payload) Adds a user entry for the specified month.
getLatestLicenseEvents
(String licenseKey) Gets a map of license event names with the date of their last occurrence.
getUserEntries
(String licenseKey, YearMonth month) Gets a list of entries for users seen in the specified month.
void
setLicenseEvent
(String licenseKey, String eventName, LocalDate latestOccurrence) Sets the date of the latest occurrence of the specified license event.
-
Method Details
-
getUserEntries
Gets a list of entries for users seen in the specified month.
Parameters:
licenseKey
- the license keymonth
- the monthReturns:
the list of users
-
addUserEntry
Adds a user entry for the specified month.
Parameters:
licenseKey
- the license keymonth
- the monthpayload
- the user entry -
getLatestLicenseEvents
Gets a map of license event names with the date of their last occurrence.
Parameters:
licenseKey
- the license keyReturns:
the mapping of events and their last occurrence
-
setLicenseEvent
Sets the date of the latest occurrence of the specified license event.
Parameters:
licenseKey
- the license keyeventName
- the event namelatestOccurrence
- the date of the latest occurrence
-