Package com.hp.ucmdb.api.policy
Interface PolicyRuleFolder
public interface PolicyRuleFolder
User: noter
Date: 02/09/12
-
Method Summary
Modifier and TypeMethodDescriptionReturns an unmodifiable collection of immediate child folders of this folder.Returns an unmodifiable collection of policy rules residing in this folder.Returns a unique folder IDgetName()
The name of the folder.void
visitChildren
(PolicyRuleTreeVisitor visitor) Visits the view folder's children using a visitor.
-
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
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.
-