com.tenduke.events.api.model.data.LicenseProvisionFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of events-api Show documentation
Show all versions of events-api Show documentation
Objects and interfaces describing data communicated in the 10Duke Event Data system API
package com.tenduke.events.api.model.data;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Event data fields for license operations that contain creation and provision data.
* @author roope
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface LicenseProvisionFields extends LicenseFields {
/**
* Gets number of license seats.
* @return Number of license seats licensed by this object, null
for unlimited number of seats.
*/
Integer getSeatCount();
/**
* Gets maximum aggregate use time of licenses that users may consume together.
* @return maximum aggregate use time of licenses that users may consume together.
*/
Long getUseTime();
/**
* Gets the maximum number of times a license can be used.
* @return The maximum use count.
*/
Long getUseCount();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy