Package mondrian.olap
Class RoleImpl.DelegatingHierarchyAccess
java.lang.Object
mondrian.olap.RoleImpl.DelegatingHierarchyAccess
- All Implemented Interfaces:
Role.AllHierarchyAccess,Role.HierarchyAccess
- Enclosing class:
- RoleImpl
public abstract static class RoleImpl.DelegatingHierarchyAccess
extends Object
implements Role.AllHierarchyAccess
Implementation of
Role.HierarchyAccess that
delegates all methods to an underlying hierarchy access.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDelegatingHierarchyAccess(Role.HierarchyAccess hierarchyAccess) Creates a DelegatingHierarchyAccess. -
Method Summary
Modifier and TypeMethodDescriptionReturns the access to whole hierarchy.Returns the access the current role has to a given member.intReturns the depth of the lowest level to which the current Role has access.Returns the policy by which cell values are calculated if not all of a member's children are visible.intReturns the depth of the highest level to which the current Role has access.booleanhasInaccessibleDescendants(Member member) Returnstrueif at least one of the descendants of the given Member is inaccessible to this Role.
-
Field Details
-
hierarchyAccess
-
-
Constructor Details
-
DelegatingHierarchyAccess
Creates a DelegatingHierarchyAccess.- Parameters:
hierarchyAccess- Underlying hierarchy access
-
-
Method Details
-
getAccess
Description copied from interface:Role.HierarchyAccessReturns the access the current role has to a given member.Visibility is:
Access.NONEif member is not visible,Access.ALLif member and all children are visible,Access.CUSTOMif some of the children are not visible.
For these purposes, children which are below the bottom level are regarded as visible.
- Specified by:
getAccessin interfaceRole.HierarchyAccess- Parameters:
member- Member.- Returns:
- Return current role's access to member.
-
getTopLevelDepth
public int getTopLevelDepth()Description copied from interface:Role.HierarchyAccessReturns the depth of the highest level to which the current Role has access. The 'all' level, if present, has a depth of zero.- Specified by:
getTopLevelDepthin interfaceRole.HierarchyAccess- Returns:
- Returns depth of the highest accessible level.
-
getBottomLevelDepth
public int getBottomLevelDepth()Description copied from interface:Role.HierarchyAccessReturns the depth of the lowest level to which the current Role has access. The 'all' level, if present, has a depth of zero.- Specified by:
getBottomLevelDepthin interfaceRole.HierarchyAccess- Returns:
- Returns depth of the lowest accessible level.
-
getRollupPolicy
Description copied from interface:Role.HierarchyAccessReturns the policy by which cell values are calculated if not all of a member's children are visible.- Specified by:
getRollupPolicyin interfaceRole.HierarchyAccess- Returns:
- Returns rollup policy.
-
hasInaccessibleDescendants
Description copied from interface:Role.HierarchyAccessReturnstrueif at least one of the descendants of the given Member is inaccessible to this Role.Descendants which are inaccessible because they are below the bottom level are ignored.
- Specified by:
hasInaccessibleDescendantsin interfaceRole.HierarchyAccess- Parameters:
member- Member- Returns:
- Returns whether a descendant is inaccessible.
-
getAccess
Description copied from interface:Role.AllHierarchyAccessReturns the access to whole hierarchy.- Specified by:
getAccessin interfaceRole.AllHierarchyAccess- Returns:
- the access to the hierarchy.
-