2014-02-08 49 views
1

得到一個範圍值,我在Liferay的portlet中的MVC類以下電話:如何在Liferay中

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); 

我想知道如何得到的範圍值。最好是全局範圍值。

回答

2

在你的情況下,你必須使用ResourceConstants.SCOPE_INDIVIDUAL

0

答案是Liferay中的ResourceConstants。

ResourceConstants.SCOPE_COMPANY 

當然還有其他的範圍,但這是常量的對象。