Package de.xima.fc.license
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.
 
@FunctionalInterface public interface ILicenseAuthorizer
Interface for checking if a property is authorized for a given license.- Since:
 - 8.2.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisAuthorized(ILicenseAccess license)Checks if the property is authorized for the given license. 
 - 
 
- 
- 
Method Detail
- 
isAuthorized
boolean isAuthorized(ILicenseAccess license)
Checks if the property is authorized for the given license.- Parameters:
 license- The license to check against.- Returns:
 trueif the property is authorized,falseotherwise.
 
 - 
 
 -