Interface ProductConfigurationAccessControlService

All Known Implementing Classes:
ProductConfigurationAccessControlServiceImpl

public interface ProductConfigurationAccessControlService
Responsible for access control of runtime product configuration entities.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Check if reading configuration is allowed for a configuration specified by its ID
    boolean
    Check if a configuration release is allowed for a configuration specified by its ID
    boolean
    Check if a configuration update is allowed for a configuration specified by its ID
  • Method Details

    • isUpdateAllowed

      boolean isUpdateAllowed(String configId)
      Check if a configuration update is allowed for a configuration specified by its ID
      Parameters:
      configId - Configuration ID
      Returns:
      Allowed!
    • isReadAllowed

      boolean isReadAllowed(String configId)
      Check if reading configuration is allowed for a configuration specified by its ID
      Parameters:
      configId - Configuration ID
      Returns:
      Allowed!
    • isReleaseAllowed

      boolean isReleaseAllowed(String configId)
      Check if a configuration release is allowed for a configuration specified by its ID
      Parameters:
      configId - Configuration ID
      Returns:
      Allowed!