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

    Modifier and Type
    Method
    Description
    boolean
    Checks if the property is authorized for the given license.
  • Method Details

    • isAuthorized

      boolean isAuthorized(ILicenseAccess license)
      Checks if the property is authorized for the given license.
      Parameters:
      license - The license to check against.
      Returns:
      true if the property is authorized, false otherwise.