Liferay 7.0-ce-b4

com.liferay.portal.service.impl
Class ResourceLocalServiceImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseLocalServiceImpl
      extended by com.liferay.portal.service.base.ResourceLocalServiceBaseImpl
          extended by com.liferay.portal.service.impl.ResourceLocalServiceImpl
All Implemented Interfaces:
IdentifiableOSGiService, BaseLocalService, ResourceLocalService

public class ResourceLocalServiceImpl
extends ResourceLocalServiceBaseImpl

Provides the local service for accessing, adding, and updating resources.

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


Field Summary
 
Fields inherited from class com.liferay.portal.service.base.ResourceLocalServiceBaseImpl
counterLocalService, resourceBlockFinder, resourceBlockLocalService, resourceBlockPersistence, resourceLocalService, resourcePermissionFinder, resourcePermissionLocalService, resourcePermissionPersistence, roleFinder, roleLocalService, rolePersistence
 
Constructor Summary
ResourceLocalServiceImpl()
           
 
Method Summary
protected  void addGroupPermissions(long companyId, long groupId, long userId, String name, Resource resource, boolean portletActions, PermissionedModel permissionedModel)
           
protected  void addGroupPermissions(long groupId, Resource resource, String[] actionIds)
           
protected  void addGroupPermissionsBlocks(long groupId, Resource resource, List<String> actionIds, PermissionedModel permissionedModel)
           
protected  void addGuestPermissions(long companyId, long groupId, long userId, String name, Resource resource, boolean portletActions, PermissionedModel permissionedModel)
           
protected  void addGuestPermissions(long companyId, Resource resource, String[] actionIds)
           
protected  void addGuestPermissionsBlocks(long companyId, long groupId, Resource resource, List<String> actionIds, PermissionedModel permissionedModel)
           
 void addModelResources(AuditedModel auditedModel, 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, Resource resource, ModelPermissions modelPermissions, PermissionedModel permissionedModel)
           
protected  void addModelResources(long companyId, long groupId, long userId, Resource resource, String[] groupPermissions, String[] guestPermissions, PermissionedModel permissionedModel)
           
 void addModelResources(long companyId, long groupId, long userId, String name, long primKey, 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, ModelPermissions modelPermissions)
           
protected  void addModelResources(long companyId, long groupId, long userId, String name, String primKey, ModelPermissions modelPermissions, 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, PermissionedModel permissionedModel)
           
protected  void addResources(long companyId, long groupId, long userId, Resource resource, boolean portletActions, 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, PermissionedModel permissionedModel)
           
 void addResources(long companyId, long groupId, String name, boolean portletActions)
          Adds resources for the entity with the name.
 void deleteResource(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, PermissionedModel permissionedModel)
           
protected  void filterOwnerActions(String name, List<String> actionIds)
           
protected  long getGroupId(AuditedModel auditedModel)
           
protected  PermissionedModel getPermissionedModel(AuditedModel auditedModel)
           
 Resource getResource(long companyId, String name, int scope, String primKey)
          Returns a new resource with the name and primary key at the scope.
protected  Role getRole(long companyId, long groupId, String roleName)
           
 boolean hasUserPermissions(long userId, long resourceId, List<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(AuditedModel auditedModel, 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, Resource resource, String[] groupPermissions, String[] guestPermissions, PermissionedModel permissionedModel)
           
protected  void updateResourceBlocks(long groupId, Resource resource, ModelPermissions modelPermissions, PermissionedModel permissionedModel)
           
protected  void updateResourcePermissions(long companyId, long groupId, Resource resource, String[] groupPermissions, String[] guestPermissions)
           
protected  void updateResourcePermissions(long groupId, Resource resource, 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, 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, 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, ModelPermissions modelPermissions, 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, 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)
           
 
Methods inherited from class com.liferay.portal.service.base.ResourceLocalServiceBaseImpl
afterPropertiesSet, destroy, getCounterLocalService, getOSGiServiceIdentifier, getResourceBlockFinder, getResourceBlockLocalService, getResourceBlockPersistence, getResourceLocalService, getResourcePermissionFinder, getResourcePermissionLocalService, getResourcePermissionPersistence, getRoleFinder, getRoleLocalService, getRolePersistence, runSQL, setCounterLocalService, setResourceBlockFinder, setResourceBlockLocalService, setResourceBlockPersistence, setResourceLocalService, setResourcePermissionFinder, setResourcePermissionLocalService, setResourcePermissionPersistence, setRoleFinder, setRoleLocalService, setRolePersistence
 
Methods inherited from class com.liferay.portal.service.BaseLocalServiceImpl
getClassLoader, getLocalizationMap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ResourceLocalServiceImpl

public ResourceLocalServiceImpl()
Method Detail

addModelResources

public void addModelResources(AuditedModel auditedModel,
                              ServiceContext serviceContext)
                       throws PortalException
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.
  1. If the service context specifies that default group or default guest permissions are to be added, then only default permissions are added. See ServiceContext.setAddGroupPermissions( boolean) and ServiceContext.setAddGuestPermissions( boolean).
  2. Else ...
    1. If the service context specifies to derive default permissions, then default group and guest permissions are derived from the model and added. See ServiceContext.setDeriveDefaultPermissions( boolean).
    2. Lastly group and guest permissions from the service context are applied. See ServiceContext.setGroupPermissions(String[]) and ServiceContext.setGuestPermissions(String[]).

Parameters:
auditedModel - the model to associate with the resources
serviceContext - 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.
Throws:
PortalException

addModelResources

public void addModelResources(long companyId,
                              long groupId,
                              long userId,
                              String name,
                              long primKey,
                              ModelPermissions modelPermissions)
                       throws PortalException
Throws:
PortalException

addModelResources

public void addModelResources(long companyId,
                              long groupId,
                              long userId,
                              String name,
                              long primKey,
                              String[] groupPermissions,
                              String[] guestPermissions)
                       throws PortalException
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.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
userId - the primary key of the user adding the resources
name - a name for the resource, typically the model's class name
primKey - the primary key of the model instance, optionally 0 if no instance exists
groupPermissions - the group permissions to be applied
guestPermissions - the guest permissions to be applied
Throws:
PortalException

addModelResources

public void addModelResources(long companyId,
                              long groupId,
                              long userId,
                              String name,
                              String primKey,
                              ModelPermissions modelPermissions)
                       throws PortalException
Throws:
PortalException

addModelResources

public void addModelResources(long companyId,
                              long groupId,
                              long userId,
                              String name,
                              String primKey,
                              String[] groupPermissions,
                              String[] guestPermissions)
                       throws PortalException
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.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
userId - the primary key of the user adding the resources
name - a name for the resource, typically the model's class name
primKey - the primary key string of the model instance, optionally an empty string if no instance exists
groupPermissions - the group permissions to be applied
guestPermissions - the guest permissions to be applied
Throws:
PortalException

addResources

public void addResources(long companyId,
                         long groupId,
                         long userId,
                         String name,
                         long primKey,
                         boolean portletActions,
                         boolean addGroupPermissions,
                         boolean addGuestPermissions)
                  throws PortalException
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.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
userId - the primary key of the user adding the resources
name - a name for the resource, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
primKey - the primary key of the resource instance, optionally 0 if no instance exists
portletActions - whether to associate portlet actions with the resource
addGroupPermissions - whether to add group permissions
addGuestPermissions - whether to add guest permissions
Throws:
PortalException

addResources

public void addResources(long companyId,
                         long groupId,
                         long userId,
                         String name,
                         String primKey,
                         boolean portletActions,
                         boolean addGroupPermissions,
                         boolean addGuestPermissions)
                  throws PortalException
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.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
userId - the primary key of the user adding the resources
name - a name for the resource, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
primKey - the primary key string of the resource instance, optionally an empty string if no instance exists
portletActions - whether to associate portlet actions with the resource
addGroupPermissions - whether to add group permissions
addGuestPermissions - whether to add guest permissions
Throws:
PortalException

addResources

public void addResources(long companyId,
                         long groupId,
                         String name,
                         boolean portletActions)
                  throws PortalException
Adds resources for the entity with the name. Use this method if the user is unknown or irrelevant and there is no current entity instance.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
name - a name for the resource, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
portletActions - whether to associate portlet actions with the resource
Throws:
PortalException

deleteResource

public void deleteResource(AuditedModel auditedModel,
                           int scope)
                    throws PortalException
Deletes the resource associated with the model at the scope.

Parameters:
auditedModel - the model associated with the resource
scope - the scope of the resource. For more information see ResourceConstants.
Throws:
PortalException

deleteResource

public void deleteResource(long companyId,
                           String name,
                           int scope,
                           long primKey)
                    throws PortalException
Deletes the resource matching the primary key at the scope.

Parameters:
companyId - the primary key of the portal instance
name - the resource's name, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
scope - the scope of the resource. For more information see ResourceConstants.
primKey - the primary key of the resource instance
Throws:
PortalException

deleteResource

public void deleteResource(long companyId,
                           String name,
                           int scope,
                           String primKey)
                    throws PortalException
Deletes the resource matching the primary key at the scope.

Parameters:
companyId - the primary key of the portal instance
name - the resource's name, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
scope - the scope of the resource. For more information see ResourceConstants.
primKey - the primary key string of the resource instance
Throws:
PortalException

getResource

public Resource getResource(long companyId,
                            String name,
                            int scope,
                            String primKey)
Returns a new resource with the name and primary key at the scope.

Parameters:
companyId - the primary key of the portal instance
name - a name for the resource, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
scope - the scope of the resource. For more information see ResourceConstants.
primKey - the primary key string of the resource
Returns:
the new resource

hasUserPermissions

public boolean hasUserPermissions(long userId,
                                  long resourceId,
                                  List<Resource> resources,
                                  String actionId,
                                  long[] roleIds)
                           throws PortalException
Returns true if the roles have permission to perform the action on the resources.

Parameters:
userId - the primary key of the user performing the permission check
resourceId - the primary key of the resource, typically the scope group ID representing the scope in which the permission check is being performed
resources - the resources for which permissions are to be checked
actionId - the primary key of the action to be performed on the resources
roleIds - the primary keys of the roles
Returns:
true if the roles have permission to perform the action on the resources;false otherwise
Throws:
PortalException

updateModelResources

public void updateModelResources(AuditedModel auditedModel,
                                 ServiceContext serviceContext)
                          throws PortalException
Updates the resources for the model, replacing their group and guest permissions with new ones from the service context.

Parameters:
auditedModel - the model associated with the resources
serviceContext - the service context to be applied. Can set group and guest permissions.
Throws:
PortalException

updateResources

public void updateResources(long companyId,
                            long groupId,
                            String name,
                            long primKey,
                            ModelPermissions modelPermissions)
                     throws PortalException
Updates resources matching the group, name, and primary key at the individual scope, setting new permissions.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
name - the resource's name, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
primKey - the primary key of the resource instance
modelPermissions - the model permissions to be applied
Throws:
PortalException

updateResources

public void updateResources(long companyId,
                            long groupId,
                            String name,
                            long primKey,
                            String[] groupPermissions,
                            String[] guestPermissions)
                     throws PortalException
Updates resources matching the group, name, and primary key at the individual scope, setting new group and guest permissions.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
name - the resource's name, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
primKey - the primary key of the resource instance
groupPermissions - the group permissions to be applied
guestPermissions - the guest permissions to be applied
Throws:
PortalException

updateResources

public void updateResources(long companyId,
                            long groupId,
                            String name,
                            String primKey,
                            ModelPermissions modelPermissions)
                     throws PortalException
Updates resources matching the group, name, and primary key string at the individual scope, setting new permissions.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
name - the resource's name, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
primKey - the primary key string of the resource instance
modelPermissions - the model permissions to be applied
Throws:
PortalException

updateResources

public void updateResources(long companyId,
                            long groupId,
                            String name,
                            String primKey,
                            String[] groupPermissions,
                            String[] guestPermissions)
                     throws PortalException
Updates resources matching the group, name, and primary key string at the individual scope, setting new group and guest permissions.

Parameters:
companyId - the primary key of the portal instance
groupId - the primary key of the group
name - the resource's name, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
primKey - the primary key string of the resource instance
groupPermissions - the group permissions to be applied
guestPermissions - the guest permissions to be applied
Throws:
PortalException

updateResources

public 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.

Parameters:
companyId - the primary key of the portal instance
name - the resource's name, which should be a portlet ID if the resource is a portlet or the resource's class name otherwise
scope - the scope of the resource. For more information see ResourceConstants.
primKey - the primary key string of the resource instance
newPrimKey - the new primary key string of the resource

addGroupPermissions

protected void addGroupPermissions(long companyId,
                                   long groupId,
                                   long userId,
                                   String name,
                                   Resource resource,
                                   boolean portletActions,
                                   PermissionedModel permissionedModel)
                            throws PortalException
Throws:
PortalException

addGroupPermissions

protected void addGroupPermissions(long groupId,
                                   Resource resource,
                                   String[] actionIds)
                            throws PortalException
Throws:
PortalException

addGroupPermissionsBlocks

protected void addGroupPermissionsBlocks(long groupId,
                                         Resource resource,
                                         List<String> actionIds,
                                         PermissionedModel permissionedModel)
                                  throws PortalException
Throws:
PortalException

addGuestPermissions

protected void addGuestPermissions(long companyId,
                                   long groupId,
                                   long userId,
                                   String name,
                                   Resource resource,
                                   boolean portletActions,
                                   PermissionedModel permissionedModel)
                            throws PortalException
Throws:
PortalException

addGuestPermissions

protected void addGuestPermissions(long companyId,
                                   Resource resource,
                                   String[] actionIds)
                            throws PortalException
Throws:
PortalException

addGuestPermissionsBlocks

protected void addGuestPermissionsBlocks(long companyId,
                                         long groupId,
                                         Resource resource,
                                         List<String> actionIds,
                                         PermissionedModel permissionedModel)
                                  throws PortalException
Throws:
PortalException

addModelResources

protected void addModelResources(long companyId,
                                 long groupId,
                                 long userId,
                                 Resource resource,
                                 ModelPermissions modelPermissions,
                                 PermissionedModel permissionedModel)
                          throws PortalException
Throws:
PortalException

addModelResources

protected void addModelResources(long companyId,
                                 long groupId,
                                 long userId,
                                 Resource resource,
                                 String[] groupPermissions,
                                 String[] guestPermissions,
                                 PermissionedModel permissionedModel)
                          throws PortalException
Throws:
PortalException

addModelResources

protected void addModelResources(long companyId,
                                 long groupId,
                                 long userId,
                                 String name,
                                 String primKey,
                                 ModelPermissions modelPermissions,
                                 PermissionedModel permissionedModel)
                          throws PortalException
Throws:
PortalException

addModelResources

protected void addModelResources(long companyId,
                                 long groupId,
                                 long userId,
                                 String name,
                                 String primKey,
                                 String[] groupPermissions,
                                 String[] guestPermissions,
                                 PermissionedModel permissionedModel)
                          throws PortalException
Throws:
PortalException

addResources

protected void addResources(long companyId,
                            long groupId,
                            long userId,
                            Resource resource,
                            boolean portletActions,
                            PermissionedModel permissionedModel)
                     throws PortalException
Throws:
PortalException

addResources

protected void addResources(long companyId,
                            long groupId,
                            long userId,
                            String name,
                            String primKey,
                            boolean portletActions,
                            boolean addGroupPermissions,
                            boolean addGuestPermissions,
                            PermissionedModel permissionedModel)
                     throws PortalException
Throws:
PortalException

deleteResource

protected void deleteResource(long companyId,
                              String name,
                              int scope,
                              String primKey,
                              PermissionedModel permissionedModel)
                       throws PortalException
Throws:
PortalException

filterOwnerActions

protected void filterOwnerActions(String name,
                                  List<String> actionIds)

getGroupId

protected long getGroupId(AuditedModel auditedModel)

getPermissionedModel

protected PermissionedModel getPermissionedModel(AuditedModel auditedModel)

getRole

protected Role getRole(long companyId,
                       long groupId,
                       String roleName)
                throws PortalException
Throws:
PortalException

logHasUserPermissions

protected void logHasUserPermissions(long userId,
                                     long resourceId,
                                     String actionId,
                                     org.apache.commons.lang.time.StopWatch stopWatch,
                                     int block)

updateResourceBlocks

protected void updateResourceBlocks(long companyId,
                                    long groupId,
                                    Resource resource,
                                    String[] groupPermissions,
                                    String[] guestPermissions,
                                    PermissionedModel permissionedModel)
                             throws PortalException
Throws:
PortalException

updateResourceBlocks

protected void updateResourceBlocks(long groupId,
                                    Resource resource,
                                    ModelPermissions modelPermissions,
                                    PermissionedModel permissionedModel)
                             throws PortalException
Throws:
PortalException

updateResourcePermissions

protected void updateResourcePermissions(long companyId,
                                         long groupId,
                                         Resource resource,
                                         String[] groupPermissions,
                                         String[] guestPermissions)
                                  throws PortalException
Throws:
PortalException

updateResourcePermissions

protected void updateResourcePermissions(long groupId,
                                         Resource resource,
                                         ModelPermissions modelPermissions)
                                  throws PortalException
Throws:
PortalException

updateResourcePermissions

protected void updateResourcePermissions(long companyId,
                                         String name,
                                         int scope,
                                         String primKey,
                                         String newPrimKey)

updateResources

protected void updateResources(long companyId,
                               long groupId,
                               String name,
                               String primKey,
                               ModelPermissions modelPermissions,
                               PermissionedModel permissionedModel)
                        throws PortalException
Throws:
PortalException

updateResources

protected void updateResources(long companyId,
                               long groupId,
                               String name,
                               String primKey,
                               String[] groupPermissions,
                               String[] guestPermissions,
                               PermissionedModel permissionedModel)
                        throws PortalException
Throws:
PortalException

validate

protected void validate(String name,
                        boolean portletActions)
                 throws PortalException
Throws:
PortalException

Liferay 7.0-ce-b4