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 String
getItemKey()
String
getItemName()
LocalDateTime
getLicenseCreationDate()
LocalDateTime
getLicenseExpireDate()
LocalDateTime
getLicenseModificationDate()
String
getParentLicenseKey()
boolean
isExpired()
boolean
isLicenseOK()
-
-
-
Method Detail
-
isLicenseOK
boolean isLicenseOK()
- Returns:
true
if the license-file is ok,false
otherwise
-
isExpired
boolean isExpired()
- Returns:
true
if the license is expired,false
otherwise
-
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
-
-