public class ResourceLocalServiceImpl extends ResourceLocalServiceBaseImpl
Permissions in Liferay are defined for resource/action pairs. Some resources, known as portlet resources, define actions that the end-user can perform with respect to a portlet window. Other resources, known as model resources, define actions that the end-user can perform with respect to the service/persistence layer.
On creating an entity instance, you should create resources for it. The
following example demonstrates adding resources for an instance of a model
entity named SomeWidget
. The IDs of the actions permitted for
the group and guests are passed in from the service context.
resourceLocalService.addModelResources(
SomeWidget.getCompanyId(), SomeWidget.getGroupId(), userId,
SomeWidget.class.getName(), SomeWidget.getPrimaryKey(),
serviceContext.getGroupPermissions, serviceContext.getGuestPermissions);
Just prior to deleting an entity instance, you should delete its resource at
the individual scope. The following example demonstrates deleting a resource
associated with the SomeWidget
model entity at the scope
individual scope.
resourceLocalService.deleteResource(
SomeWidget.getCompanyId(), SomeWidget.class.getName(),
ResourceConstants.SCOPE_INDIVIDUAL, SomeWidget.getPrimaryKey());
counterLocalService, resourceActionLocalService, resourceActionPersistence, resourceBlockFinder, resourceBlockLocalService, resourceBlockPersistence, resourceLocalService, resourcePermissionFinder, resourcePermissionLocalService, resourcePermissionPersistence, roleFinder, roleLocalService, rolePersistence
Constructor and Description |
---|
ResourceLocalServiceImpl() |
Modifier and Type | Method and Description |
---|---|
protected void |
addGroupPermissions(long companyId,
long groupId,
long userId,
String name,
com.liferay.portal.kernel.model.Resource resource,
boolean portletActions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
addGroupPermissions(long groupId,
com.liferay.portal.kernel.model.Resource resource,
String[] actionIds) |
protected void |
addGroupPermissionsBlocks(long groupId,
com.liferay.portal.kernel.model.Resource resource,
List<String> actionIds,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
addGuestPermissions(long companyId,
long groupId,
long userId,
String name,
com.liferay.portal.kernel.model.Resource resource,
boolean portletActions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
addGuestPermissions(long companyId,
com.liferay.portal.kernel.model.Resource resource,
String[] actionIds) |
protected void |
addGuestPermissionsBlocks(long companyId,
long groupId,
com.liferay.portal.kernel.model.Resource resource,
List<String> actionIds,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
void |
addModelResources(com.liferay.portal.kernel.model.AuditedModel auditedModel,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds resources for the model, always creating a resource at the
individual scope and only creating resources at the group, group
template, and company scope if such resources don't already exist.
|
protected void |
addModelResources(long companyId,
long groupId,
long userId,
com.liferay.portal.kernel.model.Resource resource,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
addModelResources(long companyId,
long groupId,
long userId,
com.liferay.portal.kernel.model.Resource resource,
String[] groupPermissions,
String[] guestPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
void |
addModelResources(long companyId,
long groupId,
long userId,
String name,
long primKey,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) |
void |
addModelResources(long companyId,
long groupId,
long userId,
String name,
long primKey,
String[] groupPermissions,
String[] guestPermissions)
Adds resources for the model with the name and primary key, always
creating a resource at the individual scope and only creating resources
at the group, group template, and company scope if such resources don't
already exist.
|
void |
addModelResources(long companyId,
long groupId,
long userId,
String name,
String primKey,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) |
protected void |
addModelResources(long companyId,
long groupId,
long userId,
String name,
String primKey,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
void |
addModelResources(long companyId,
long groupId,
long userId,
String name,
String primKey,
String[] groupPermissions,
String[] guestPermissions)
Adds resources for the model with the name and primary key string, always
creating a resource at the individual scope and only creating resources
at the group, group template, and company scope if such resources don't
already exist.
|
protected void |
addModelResources(long companyId,
long groupId,
long userId,
String name,
String primKey,
String[] groupPermissions,
String[] guestPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
addResources(long companyId,
long groupId,
long userId,
com.liferay.portal.kernel.model.Resource resource,
boolean portletActions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
void |
addResources(long companyId,
long groupId,
long userId,
String name,
long primKey,
boolean portletActions,
boolean addGroupPermissions,
boolean addGuestPermissions)
Adds resources for the entity with the name and primary key, always
creating a resource at the individual scope and only creating resources
at the group, group template, and company scope if such resources don't
already exist.
|
void |
addResources(long companyId,
long groupId,
long userId,
String name,
String primKey,
boolean portletActions,
boolean addGroupPermissions,
boolean addGuestPermissions)
Adds resources for the entity with the name and primary key string,
always creating a resource at the individual scope and only creating
resources at the group, group template, and company scope if such
resources don't already exist.
|
protected void |
addResources(long companyId,
long groupId,
long userId,
String name,
String primKey,
boolean portletActions,
boolean addGroupPermissions,
boolean addGuestPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
void |
addResources(long companyId,
long groupId,
String name,
boolean portletActions)
Adds resources for the entity with the name.
|
void |
copyModelResources(long companyId,
String name,
long oldPrimKey,
long newPrimKey) |
void |
deleteResource(com.liferay.portal.kernel.model.AuditedModel auditedModel,
int scope)
Deletes the resource associated with the model at the scope.
|
void |
deleteResource(long companyId,
String name,
int scope,
long primKey)
Deletes the resource matching the primary key at the scope.
|
void |
deleteResource(long companyId,
String name,
int scope,
String primKey)
Deletes the resource matching the primary key at the scope.
|
protected void |
deleteResource(long companyId,
String name,
int scope,
String primKey,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
filterOwnerActions(String name,
List<String> actionIds) |
protected long |
getGroupId(com.liferay.portal.kernel.model.AuditedModel auditedModel) |
protected com.liferay.portal.kernel.model.PermissionedModel |
getPermissionedModel(com.liferay.portal.kernel.model.AuditedModel auditedModel) |
com.liferay.portal.kernel.model.Resource |
getResource(long companyId,
String name,
int scope,
String primKey)
Returns a new resource with the name and primary key at the scope.
|
protected com.liferay.portal.kernel.model.Role |
getRole(long companyId,
long groupId,
String roleName) |
boolean |
hasUserPermissions(long userId,
long resourceId,
List<com.liferay.portal.kernel.model.Resource> resources,
String actionId,
long[] roleIds)
Returns
true if the roles have permission to perform the
action on the resources. |
protected void |
logHasUserPermissions(long userId,
long resourceId,
String actionId,
org.apache.commons.lang.time.StopWatch stopWatch,
int block) |
void |
updateModelResources(com.liferay.portal.kernel.model.AuditedModel auditedModel,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Updates the resources for the model, replacing their group and guest
permissions with new ones from the service context.
|
protected void |
updateResourceBlocks(long companyId,
long groupId,
com.liferay.portal.kernel.model.Resource resource,
String[] groupPermissions,
String[] guestPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
updateResourceBlocks(long groupId,
com.liferay.portal.kernel.model.Resource resource,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
protected void |
updateResourcePermissions(long companyId,
long groupId,
com.liferay.portal.kernel.model.Resource resource,
String[] groupPermissions,
String[] guestPermissions) |
protected void |
updateResourcePermissions(long groupId,
com.liferay.portal.kernel.model.Resource resource,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) |
protected void |
updateResourcePermissions(long companyId,
String name,
int scope,
String primKey,
String newPrimKey) |
void |
updateResources(long companyId,
long groupId,
String name,
long primKey,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions)
Updates resources matching the group, name, and primary key at the
individual scope, setting new permissions.
|
void |
updateResources(long companyId,
long groupId,
String name,
long primKey,
String[] groupPermissions,
String[] guestPermissions)
Updates resources matching the group, name, and primary key at the
individual scope, setting new group and guest permissions.
|
void |
updateResources(long companyId,
long groupId,
String name,
String primKey,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions)
Updates resources matching the group, name, and primary key string at the
individual scope, setting new permissions.
|
protected void |
updateResources(long companyId,
long groupId,
String name,
String primKey,
com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
void |
updateResources(long companyId,
long groupId,
String name,
String primKey,
String[] groupPermissions,
String[] guestPermissions)
Updates resources matching the group, name, and primary key string at the
individual scope, setting new group and guest permissions.
|
protected void |
updateResources(long companyId,
long groupId,
String name,
String primKey,
String[] groupPermissions,
String[] guestPermissions,
com.liferay.portal.kernel.model.PermissionedModel permissionedModel) |
void |
updateResources(long companyId,
String name,
int scope,
String primKey,
String newPrimKey)
Updates resources matching the name, primary key string and scope,
replacing the primary key of their resource permissions with the new
primary key.
|
protected void |
validate(String name,
boolean portletActions) |
afterPropertiesSet, destroy, getCounterLocalService, getOSGiServiceIdentifier, getResourceActionLocalService, getResourceActionPersistence, getResourceBlockFinder, getResourceBlockLocalService, getResourceBlockPersistence, getResourceLocalService, getResourcePermissionFinder, getResourcePermissionLocalService, getResourcePermissionPersistence, getRoleFinder, getRoleLocalService, getRolePersistence, runSQL, setCounterLocalService, setResourceActionLocalService, setResourceActionPersistence, setResourceBlockFinder, setResourceBlockLocalService, setResourceBlockPersistence, setResourceLocalService, setResourcePermissionFinder, setResourcePermissionLocalService, setResourcePermissionPersistence, setRoleFinder, setRoleLocalService, setRolePersistence
public void addModelResources(com.liferay.portal.kernel.model.AuditedModel auditedModel, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
ServiceContext.setAddGroupPermissions(
boolean)
and ServiceContext.setAddGuestPermissions(
boolean)
.
ServiceContext.setDeriveDefaultPermissions(
boolean)
.
ServiceContext.setGroupPermissions(String[])
and ServiceContext.setGuestPermissions(String[])
.
auditedModel
- the model to associate with the resourcesserviceContext
- the service context to apply. Can set whether to
add the model's default group and guest permissions, set whether
to derive default group and guest permissions from the model, set
group permissions to apply, and set guest permissions to apply.com.liferay.portal.kernel.exception.PortalException
public void addModelResources(long companyId, long groupId, long userId, String name, long primKey, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public void addModelResources(long companyId, long groupId, long userId, String name, long primKey, String[] groupPermissions, String[] guestPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupuserId
- the primary key of the user adding the resourcesname
- a name for the resource, typically the model's class nameprimKey
- the primary key of the model instance, optionally
0
if no instance existsgroupPermissions
- the group permissions to be appliedguestPermissions
- the guest permissions to be appliedcom.liferay.portal.kernel.exception.PortalException
public void addModelResources(long companyId, long groupId, long userId, String name, String primKey, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public void addModelResources(long companyId, long groupId, long userId, String name, String primKey, String[] groupPermissions, String[] guestPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupuserId
- the primary key of the user adding the resourcesname
- a name for the resource, typically the model's class nameprimKey
- the primary key string of the model instance, optionally
an empty string if no instance existsgroupPermissions
- the group permissions to be appliedguestPermissions
- the guest permissions to be appliedcom.liferay.portal.kernel.exception.PortalException
public void addResources(long companyId, long groupId, long userId, String name, long primKey, boolean portletActions, boolean addGroupPermissions, boolean addGuestPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupuserId
- the primary key of the user adding the resourcesname
- a name for the resource, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwiseprimKey
- the primary key of the resource instance, optionally
0
if no instance existsportletActions
- whether to associate portlet actions with the
resourceaddGroupPermissions
- whether to add group permissionsaddGuestPermissions
- whether to add guest permissionscom.liferay.portal.kernel.exception.PortalException
public void addResources(long companyId, long groupId, long userId, String name, String primKey, boolean portletActions, boolean addGroupPermissions, boolean addGuestPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupuserId
- the primary key of the user adding the resourcesname
- a name for the resource, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwiseprimKey
- the primary key string of the resource instance,
optionally an empty string if no instance existsportletActions
- whether to associate portlet actions with the
resourceaddGroupPermissions
- whether to add group permissionsaddGuestPermissions
- whether to add guest permissionscom.liferay.portal.kernel.exception.PortalException
public void addResources(long companyId, long groupId, String name, boolean portletActions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupname
- a name for the resource, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwiseportletActions
- whether to associate portlet actions with the
resourcecom.liferay.portal.kernel.exception.PortalException
public void copyModelResources(long companyId, String name, long oldPrimKey, long newPrimKey) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public void deleteResource(com.liferay.portal.kernel.model.AuditedModel auditedModel, int scope) throws com.liferay.portal.kernel.exception.PortalException
auditedModel
- the model associated with the resourcescope
- the scope of the resource. For more information see ResourceConstants
.com.liferay.portal.kernel.exception.PortalException
public void deleteResource(long companyId, String name, int scope, long primKey) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancename
- the resource's name, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwisescope
- the scope of the resource. For more information see ResourceConstants
.primKey
- the primary key of the resource instancecom.liferay.portal.kernel.exception.PortalException
public void deleteResource(long companyId, String name, int scope, String primKey) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancename
- the resource's name, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwisescope
- the scope of the resource. For more information see ResourceConstants
.primKey
- the primary key string of the resource instancecom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.model.Resource getResource(long companyId, String name, int scope, String primKey)
companyId
- the primary key of the portal instancename
- a name for the resource, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwisescope
- the scope of the resource. For more information see ResourceConstants
.primKey
- the primary key string of the resourcepublic boolean hasUserPermissions(long userId, long resourceId, List<com.liferay.portal.kernel.model.Resource> resources, String actionId, long[] roleIds) throws com.liferay.portal.kernel.exception.PortalException
true
if the roles have permission to perform the
action on the resources.userId
- the primary key of the user performing the permission
checkresourceId
- the primary key of the resource, typically the scope
group ID representing the scope in which the permission check is
being performedresources
- the resources for which permissions are to be checkedactionId
- the primary key of the action to be performed on the
resourcesroleIds
- the primary keys of the rolestrue
if the roles have permission to perform the
action on the resources;false
otherwisecom.liferay.portal.kernel.exception.PortalException
public void updateModelResources(com.liferay.portal.kernel.model.AuditedModel auditedModel, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
auditedModel
- the model associated with the resourcesserviceContext
- the service context to be applied. Can set group
and guest permissions.com.liferay.portal.kernel.exception.PortalException
public void updateResources(long companyId, long groupId, String name, long primKey, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupname
- the resource's name, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwiseprimKey
- the primary key of the resource instancemodelPermissions
- the model permissions to be appliedcom.liferay.portal.kernel.exception.PortalException
public void updateResources(long companyId, long groupId, String name, long primKey, String[] groupPermissions, String[] guestPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupname
- the resource's name, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwiseprimKey
- the primary key of the resource instancegroupPermissions
- the group permissions to be appliedguestPermissions
- the guest permissions to be appliedcom.liferay.portal.kernel.exception.PortalException
public void updateResources(long companyId, long groupId, String name, String primKey, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupname
- the resource's name, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwiseprimKey
- the primary key string of the resource instancemodelPermissions
- the model permissions to be appliedcom.liferay.portal.kernel.exception.PortalException
public void updateResources(long companyId, long groupId, String name, String primKey, String[] groupPermissions, String[] guestPermissions) throws com.liferay.portal.kernel.exception.PortalException
companyId
- the primary key of the portal instancegroupId
- the primary key of the groupname
- the resource's name, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwiseprimKey
- the primary key string of the resource instancegroupPermissions
- the group permissions to be appliedguestPermissions
- the guest permissions to be appliedcom.liferay.portal.kernel.exception.PortalException
public void updateResources(long companyId, String name, int scope, String primKey, String newPrimKey)
companyId
- the primary key of the portal instancename
- the resource's name, which should be a portlet ID if the
resource is a portlet or the resource's class name otherwisescope
- the scope of the resource. For more information see ResourceConstants
.primKey
- the primary key string of the resource instancenewPrimKey
- the new primary key string of the resourceprotected void addGroupPermissions(long companyId, long groupId, long userId, String name, com.liferay.portal.kernel.model.Resource resource, boolean portletActions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addGroupPermissions(long groupId, com.liferay.portal.kernel.model.Resource resource, String[] actionIds) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addGroupPermissionsBlocks(long groupId, com.liferay.portal.kernel.model.Resource resource, List<String> actionIds, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addGuestPermissions(long companyId, long groupId, long userId, String name, com.liferay.portal.kernel.model.Resource resource, boolean portletActions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addGuestPermissions(long companyId, com.liferay.portal.kernel.model.Resource resource, String[] actionIds) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addGuestPermissionsBlocks(long companyId, long groupId, com.liferay.portal.kernel.model.Resource resource, List<String> actionIds, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addModelResources(long companyId, long groupId, long userId, com.liferay.portal.kernel.model.Resource resource, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addModelResources(long companyId, long groupId, long userId, com.liferay.portal.kernel.model.Resource resource, String[] groupPermissions, String[] guestPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addModelResources(long companyId, long groupId, long userId, String name, String primKey, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addModelResources(long companyId, long groupId, long userId, String name, String primKey, String[] groupPermissions, String[] guestPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addResources(long companyId, long groupId, long userId, com.liferay.portal.kernel.model.Resource resource, boolean portletActions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void addResources(long companyId, long groupId, long userId, String name, String primKey, boolean portletActions, boolean addGroupPermissions, boolean addGuestPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void deleteResource(long companyId, String name, int scope, String primKey, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void filterOwnerActions(String name, List<String> actionIds)
protected long getGroupId(com.liferay.portal.kernel.model.AuditedModel auditedModel)
protected com.liferay.portal.kernel.model.PermissionedModel getPermissionedModel(com.liferay.portal.kernel.model.AuditedModel auditedModel)
protected com.liferay.portal.kernel.model.Role getRole(long companyId, long groupId, String roleName) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void logHasUserPermissions(long userId, long resourceId, String actionId, org.apache.commons.lang.time.StopWatch stopWatch, int block)
protected void updateResourceBlocks(long companyId, long groupId, com.liferay.portal.kernel.model.Resource resource, String[] groupPermissions, String[] guestPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void updateResourceBlocks(long groupId, com.liferay.portal.kernel.model.Resource resource, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void updateResourcePermissions(long companyId, long groupId, com.liferay.portal.kernel.model.Resource resource, String[] groupPermissions, String[] guestPermissions) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void updateResourcePermissions(long groupId, com.liferay.portal.kernel.model.Resource resource, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void updateResourcePermissions(long companyId, String name, int scope, String primKey, String newPrimKey)
protected void updateResources(long companyId, long groupId, String name, String primKey, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void updateResources(long companyId, long groupId, String name, String primKey, String[] groupPermissions, String[] guestPermissions, com.liferay.portal.kernel.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void validate(String name, boolean portletActions) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException