本文整理汇总了Java中org.alfresco.repo.security.permissions.PermissionCheckValue类的典型用法代码示例。如果您正苦于以下问题:Java PermissionCheckValue类的具体用法?Java PermissionCheckValue怎么用?Java PermissionCheckValue使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PermissionCheckValue类属于org.alfresco.repo.security.permissions包,在下文中一共展示了PermissionCheckValue类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getParentReadCheckNode
import org.alfresco.repo.security.permissions.PermissionCheckValue; //导入依赖的package包/类
private NodeRef getParentReadCheckNode(Object current)
{
NodeRef testNodeRef = null;
if (StoreRef.class.isAssignableFrom(current.getClass()))
{
testNodeRef = null;
}
else if (NodeRef.class.isAssignableFrom(current.getClass()))
{
testNodeRef = nodeService.getPrimaryParent((NodeRef) current).getParentRef();
}
else if (ChildAssociationRef.class.isAssignableFrom(current.getClass()))
{
testNodeRef = ((ChildAssociationRef) current).getParentRef();
}
else if (PermissionCheckValue.class.isAssignableFrom(current.getClass()))
{
NodeRef nodeRef = ((PermissionCheckValue) current).getNodeRef();
testNodeRef = nodeService.getPrimaryParent(nodeRef).getParentRef();
}
else
{
throw new ACLEntryVoterException("The specified array is not of NodeRef or ChildAssociationRef");
}
return testNodeRef;
}
示例2: getChildReadCheckNode
import org.alfresco.repo.security.permissions.PermissionCheckValue; //导入依赖的package包/类
private NodeRef getChildReadCheckNode(Object current)
{
NodeRef testNodeRef = null;
if (StoreRef.class.isAssignableFrom(current.getClass()))
{
testNodeRef = nodeService.getRootNode((StoreRef) current);
}
else if (NodeRef.class.isAssignableFrom(current.getClass()))
{
testNodeRef = (NodeRef) current;
}
else if (ChildAssociationRef.class.isAssignableFrom(current.getClass()))
{
testNodeRef = ((ChildAssociationRef) current).getChildRef();
}
else if (PermissionCheckValue.class.isAssignableFrom(current.getClass()))
{
testNodeRef = ((PermissionCheckValue) current).getNodeRef();
}
else
{
throw new ACLEntryVoterException("The specified array is not of NodeRef or ChildAssociationRef");
}
return testNodeRef;
}
示例3: decide
import org.alfresco.repo.security.permissions.PermissionCheckValue; //导入依赖的package包/类
private PermissionCheckValue decide(Authentication authentication, Object object, ConfigAttributeDefinition config, PermissionCheckValue returnedObject) throws AccessDeniedException
{
// Get the wrapped value
NodeRef nodeRef = returnedObject.getNodeRef();
decide(authentication, object, config, nodeRef);
// This passes
return returnedObject;
}
示例4: decide
import org.alfresco.repo.security.permissions.PermissionCheckValue; //导入依赖的package包/类
private PermissionCheckValue decide(Authentication authentication, Object object, ConfigAttributeDefinition config, PermissionCheckValue returnedObject)
{
// Get the wrapped value
NodeRef nodeRef = returnedObject.getNodeRef();
decide(authentication, object, config, nodeRef);
// This passes
return returnedObject;
}