Interface ILicenseAuthorizer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface for checking if a property is authorized for a given license.
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisAuthorized(ILicenseAccess license) Checks if the property is authorized for the given license.
-
Method Details
-
isAuthorized
Checks if the property is authorized for the given license.- Parameters:
license- The license to check against.- Returns:
trueif the property is authorized,falseotherwise.
-