Package de.xima.fc.mdl.license
Interface IItemLicenseModel
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
EmbeddedItemLicenseModel,ItemLicenseModel
public interface IItemLicenseModel extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetItemKey()StringgetItemName()LocalDateTimegetLicenseCreationDate()LocalDateTimegetLicenseExpireDate()LocalDateTimegetLicenseModificationDate()StringgetParentLicenseKey()booleanisExpired()booleanisLicenseOK()
-
-
-
Method Detail
-
isLicenseOK
boolean isLicenseOK()
- Returns:
trueif the license-file is ok,falseotherwise
-
isExpired
boolean isExpired()
- Returns:
trueif the license is expired,falseotherwise
-
getParentLicenseKey
String getParentLicenseKey()
-
getItemKey
String getItemKey()
-
getItemName
String getItemName()
-
getLicenseCreationDate
LocalDateTime getLicenseCreationDate()
- Returns:
- the creation date of the license
-
getLicenseModificationDate
LocalDateTime getLicenseModificationDate()
- Returns:
- the modification date of the license
-
getLicenseExpireDate
LocalDateTime getLicenseExpireDate()
- Returns:
- the expire date of the license
-
-