Interface ProductConfigurationAccessControlService
-
- All Known Implementing Classes:
ProductConfigurationAccessControlServiceImpl
public interface ProductConfigurationAccessControlServiceResponsible for access control of runtime product configuration entities.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisReadAllowed(java.lang.String configId)Check if reading configuration is allowed for a configuration specified by its IDbooleanisReleaseAllowed(java.lang.String configId)Check if a configuration release is allowed for a configuration specified by its IDbooleanisUpdateAllowed(java.lang.String configId)Check if a configuration update is allowed for a configuration specified by its ID
-
-
-
Method Detail
-
isUpdateAllowed
boolean isUpdateAllowed(java.lang.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(java.lang.String configId)
Check if reading configuration is allowed for a configuration specified by its ID- Parameters:
configId- Configuration ID- Returns:
- Allowed!
-
isReleaseAllowed
boolean isReleaseAllowed(java.lang.String configId)
Check if a configuration release is allowed for a configuration specified by its ID- Parameters:
configId- Configuration ID- Returns:
- Allowed!
-
-