Interface SpecificPolicyInfoRegistry

All Known Implementing Classes:
SpecificPolicyInfoRegistryImpl

public interface SpecificPolicyInfoRegistry
Provides an information about specific policies defined in the application. In order to be returned by the service, the specific policy must have a corresponding SpecificOperationAccessContext. E.g. for the ui.loginToUi policy the following class should exist:
 public class UiLoginToUiContext extends SpecificOperationAccessContext {

     public static final String NAME = "ui.loginToUi";

     public UiLoginToUiContext() {
         super(NAME);
     }
 }