Interface PolicyRuleFolder


public interface PolicyRuleFolder
User: noter Date: 02/09/12
  • Method Details

    • getName

      String getName()
      The name of the folder.
    • getChildFolders

      Collection<PolicyRuleFolder> getChildFolders()
      Returns an unmodifiable collection of immediate child folders of this folder.
    • getChildPolicies

      Collection<PolicyRuleDefinition> getChildPolicies()
      Returns an unmodifiable collection of policy rules residing in this folder.
    • getFolderId

      String getFolderId()
      Returns a unique folder ID
      Returns:
    • visitChildren

      void visitChildren(PolicyRuleTreeVisitor visitor)
      Visits the view folder's children using a visitor. The visitor can be client-based.

      This method can receive client implementations of ViewTreeVisitor

      This method visits the current folder only. If traversing is needed, it is the client's responsability to call the visit methods of the child folders, if any.

      Parameters:
      visitor - a client implementation of the ViewTreeVisitor interface.