|
Liferay 6.2-ce-ga5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.liferay.portal.service.ResourceLocalServiceUtil
@ProviderType public class ResourceLocalServiceUtil
Provides the local service utility for Resource. This utility wraps
com.liferay.portal.service.impl.ResourceLocalServiceImpl
and is the
primary access point for service operations in application layer code running
on the local server. Methods of this service will not have security checks
based on the propagated JAAS credentials because this service can only be
accessed from within the same VM.
ResourceLocalService
,
ResourceLocalServiceBaseImpl
,
com.liferay.portal.service.impl.ResourceLocalServiceImpl
Constructor Summary | |
---|---|
ResourceLocalServiceUtil()
|
Method Summary | |
---|---|
static 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. |
static 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. |
static 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. |
static 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. |
static 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. |
static void |
addResources(long companyId,
long groupId,
String name,
boolean portletActions)
Adds resources for the entity with the name. |
static void |
deleteResource(AuditedModel auditedModel,
int scope)
Deletes the resource associated with the model at the scope. |
static void |
deleteResource(long companyId,
String name,
int scope,
long primKey)
Deletes the resource matching the primary key at the scope. |
static void |
deleteResource(long companyId,
String name,
int scope,
String primKey)
Deletes the resource matching the primary key at the scope. |
static String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
static Resource |
getResource(long companyId,
String name,
int scope,
String primKey)
Returns a new resource with the name and primary key at the scope. |
static ResourceLocalService |
getService()
|
static 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. |
static void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
void |
setService(ResourceLocalService service)
Deprecated. As of 6.2.0 |
static 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. |
static 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. |
static 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. |
static 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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ResourceLocalServiceUtil()
Method Detail |
---|
public static String getBeanIdentifier()
public static void setBeanIdentifier(String beanIdentifier)
beanIdentifier
- the Spring bean ID for this beanpublic static void addModelResources(AuditedModel auditedModel, ServiceContext serviceContext) throws PortalException, SystemException
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.
PortalException
- if no portal actions could be found associated
with the model or if a portal exception occurred
SystemException
- if a system exception occurredpublic static void addModelResources(long companyId, long groupId, long userId, String name, long primKey, String[] groupPermissions, String[] guestPermissions) throws PortalException, SystemException
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 applied
PortalException
- if no portal actions could be found associated
with the model or if a portal exception occurred
SystemException
- if a system exception occurredpublic static void addModelResources(long companyId, long groupId, long userId, String name, String primKey, String[] groupPermissions, String[] guestPermissions) throws PortalException, SystemException
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 applied
PortalException
- if no portal actions could be found associated
with the model or if a portal exception occurred
SystemException
- if a system exception occurredpublic static void addResources(long companyId, long groupId, long userId, String name, long primKey, boolean portletActions, boolean addGroupPermissions, boolean addGuestPermissions) throws PortalException, SystemException
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 permissions
PortalException
- if no portal actions could be found associated
with the resource or if a portal exception occurred
SystemException
- if a system exception occurredpublic static void addResources(long companyId, long groupId, long userId, String name, String primKey, boolean portletActions, boolean addGroupPermissions, boolean addGuestPermissions) throws PortalException, SystemException
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 permissions
PortalException
- if no portal actions could be found associated
with the resource or if a portal exception occurred
SystemException
- if a system exception occurredpublic static void addResources(long companyId, long groupId, String name, boolean portletActions) throws PortalException, SystemException
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
resource
PortalException
- if no portal actions could be found associated
with the resource or if a portal exception occurred
SystemException
- if a system exception occurredpublic static void deleteResource(AuditedModel auditedModel, int scope) throws PortalException, SystemException
auditedModel
- the model associated with the resourcescope
- the scope of the resource. For more information see ResourceConstants
.
PortalException
- if a portal exception occurred
SystemException
- if a system exception occurredpublic static void deleteResource(long companyId, String name, int scope, long primKey) throws PortalException, SystemException
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 instance
PortalException
- if a portal exception occurred
SystemException
- if a system exception occurredpublic static void deleteResource(long companyId, String name, int scope, String primKey) throws PortalException, SystemException
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 instance
PortalException
- if a portal exception occurred
SystemException
- if a system exception occurredpublic static 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 resource
public static boolean hasUserPermissions(long userId, long resourceId, List<Resource> resources, String actionId, long[] roleIds) throws PortalException, SystemException
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 roles
true
if the roles have permission to perform the
action on the resources;false
otherwise
PortalException
- if any one of the roles with the primary keys
could not be found or if a resource action with the action ID
could not be found
SystemException
- if a system exception occurredpublic static void updateModelResources(AuditedModel auditedModel, ServiceContext serviceContext) throws PortalException, SystemException
auditedModel
- the model associated with the resourcesserviceContext
- the service context to be applied. Can set group
and guest permissions.
PortalException
- if a portal exception occurred
SystemException
- if a system exception occurredpublic static void updateResources(long companyId, long groupId, String name, long primKey, String[] groupPermissions, String[] guestPermissions) throws PortalException, SystemException
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 applied
PortalException
- if a portal exception occurred
SystemException
- if a system exception occurredpublic static void updateResources(long companyId, long groupId, String name, String primKey, String[] groupPermissions, String[] guestPermissions) throws PortalException, SystemException
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 applied
PortalException
- if a portal exception occurred
SystemException
- if a system exception occurredpublic static void updateResources(long companyId, String name, int scope, String primKey, String newPrimKey) throws SystemException
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 resource
SystemException
- if a system exception occurredpublic static ResourceLocalService getService()
public void setService(ResourceLocalService service)
|
Liferay 6.2-ce-ga5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |