当前位置: 首页>>代码示例>>Java>>正文


Java PermissionCheckValue类代码示例

本文整理汇总了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;
}
 
开发者ID:Alfresco,项目名称:records-management-old,代码行数:27,代码来源:RMAfterInvocationProvider.java

示例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;
}
 
开发者ID:Alfresco,项目名称:records-management-old,代码行数:26,代码来源:RMAfterInvocationProvider.java

示例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;
}
 
开发者ID:Alfresco,项目名称:alfresco-repository,代码行数:9,代码来源:ACLEntryAfterInvocationProvider.java

示例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;
}
 
开发者ID:Alfresco,项目名称:records-management-old,代码行数:9,代码来源:RMAfterInvocationProvider.java


注:本文中的org.alfresco.repo.security.permissions.PermissionCheckValue类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。