我在liferay的portlet MVC类中有以下调用:

ResourcePermissionServiceUtil.addResourcePermission(
    themeDisplay.getScopeGroupId(),
    themeDisplay.getCompanyId(),
    FileEntry.class.getName(),
    ??, //scope int value... how do I get this??
    Long.toString( fileEntry.getPrimaryKey()),
    RoleServiceUtil.getRole(themeDisplay.getCompanyId(), "Guest").getPrimaryKey(),
    ActionKeys.VIEW);


我想知道如何获得范围值。最好是一个全局范围值。

最佳答案

在您的情况下,您必须使用ResourceConstants.SCOPE_INDIVIDUAL

07-24 09:23