Interface AccessConstraintUtilization


public interface AccessConstraintUtilization
Provides information about how an AccessConstraintDefinition is utilized for a particular management resource registration.
Author:
Brian Stansberry (c) 2013 Red Hat Inc.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the names of any attributes that are specifically constrained.
    Gets the names of any operations that are specifically constrained.
    Gets the address under which the resource registrations is registered.
    boolean
    Gets whether the constraint applies to the resource as a whole
  • Method Details

    • getPathAddress

      PathAddress getPathAddress()
      Gets the address under which the resource registrations is registered.
      Returns:
      the address. Will not be null
    • isEntireResourceConstrained

      boolean isEntireResourceConstrained()
      Gets whether the constraint applies to the resource as a whole
      Returns:
      true if the entire resource is constrained; false if the constraint only applies to attributes or operations
    • getAttributes

      Set<String> getAttributes()
      Gets the names of any attributes that are specifically constrained.
      Returns:
      the attribute names, or an empty set. Will not be null
    • getOperations

      Set<String> getOperations()
      Gets the names of any operations that are specifically constrained.
      Returns:
      the operation names, or an empty set. Will not be null