|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portal.service.ResourceTypePermissionLocalServiceUtil
public class ResourceTypePermissionLocalServiceUtil
The utility for the resource type permission local service. This utility wraps ResourceTypePermissionLocalServiceImpl
and is the primary access point for service operations in application layer code running on the local server.
This is a local service. 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.
ResourceTypePermissionLocalService
,
ResourceTypePermissionLocalServiceBaseImpl
,
ResourceTypePermissionLocalServiceImpl
Constructor Summary | |
---|---|
ResourceTypePermissionLocalServiceUtil()
|
Method Summary | |
---|---|
static ResourceTypePermission |
addResourceTypePermission(ResourceTypePermission resourceTypePermission)
Adds the resource type permission to the database. |
static ResourceTypePermission |
createResourceTypePermission(long resourceTypePermissionId)
Creates a new resource type permission with the primary key. |
static ResourceTypePermission |
deleteResourceTypePermission(long resourceTypePermissionId)
Deletes the resource type permission with the primary key from the database. |
static ResourceTypePermission |
deleteResourceTypePermission(ResourceTypePermission resourceTypePermission)
Deletes the resource type permission from the database. |
static DynamicQuery |
dynamicQuery()
|
static List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows. |
static List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows. |
static List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows. |
static long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows that match the dynamic query. |
static ResourceTypePermission |
fetchResourceTypePermission(long resourceTypePermissionId)
|
static String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
static long |
getCompanyScopeActionIds(long companyId,
String name,
long roleId)
|
static long |
getGroupScopeActionIds(long companyId,
long groupId,
String name,
long roleId)
|
static List<ResourceTypePermission> |
getGroupScopeResourceTypePermissions(long companyId,
String name,
long roleId)
|
static PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
|
static ResourceBlockPermissionsContainer |
getResourceBlockPermissionsContainer(long companyId,
long groupId,
String name)
|
static ResourceTypePermission |
getResourceTypePermission(long resourceTypePermissionId)
Returns the resource type permission with the primary key. |
static List<ResourceTypePermission> |
getResourceTypePermissions(int start,
int end)
Returns a range of all the resource type permissions. |
static int |
getResourceTypePermissionsCount()
Returns the number of resource type permissions. |
static List<ResourceTypePermission> |
getRoleResourceTypePermissions(long roleId)
|
static ResourceTypePermissionLocalService |
getService()
|
static boolean |
hasCompanyScopePermission(long companyId,
String name,
long roleId,
String actionId)
|
static boolean |
hasEitherScopePermission(long companyId,
String name,
long roleId,
String actionId)
|
static boolean |
hasGroupScopePermission(long companyId,
long groupId,
String name,
long roleId,
String actionId)
|
static void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
void |
setService(ResourceTypePermissionLocalService service)
Deprecated. |
static void |
updateCompanyScopeResourceTypePermissions(long companyId,
String name,
long roleId,
long actionIdsLong,
long operator)
|
static void |
updateGroupScopeResourceTypePermissions(long companyId,
long groupId,
String name,
long roleId,
long actionIdsLong,
long operator)
|
static ResourceTypePermission |
updateResourceTypePermission(ResourceTypePermission resourceTypePermission)
Updates the resource type permission in the database or adds it if it does not yet exist. |
static ResourceTypePermission |
updateResourceTypePermission(ResourceTypePermission resourceTypePermission,
boolean merge)
Updates the resource type permission in the database or adds it if it does not yet exist. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ResourceTypePermissionLocalServiceUtil()
Method Detail |
---|
public static ResourceTypePermission addResourceTypePermission(ResourceTypePermission resourceTypePermission) throws SystemException
resourceTypePermission
- the resource type permission
SystemException
- if a system exception occurredpublic static ResourceTypePermission createResourceTypePermission(long resourceTypePermissionId)
resourceTypePermissionId
- the primary key for the new resource type permission
public static ResourceTypePermission deleteResourceTypePermission(long resourceTypePermissionId) throws PortalException, SystemException
resourceTypePermissionId
- the primary key of the resource type permission
PortalException
- if a resource type permission with the primary key could not be found
SystemException
- if a system exception occurredpublic static ResourceTypePermission deleteResourceTypePermission(ResourceTypePermission resourceTypePermission) throws SystemException
resourceTypePermission
- the resource type permission
SystemException
- if a system exception occurredpublic static DynamicQuery dynamicQuery()
public static List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query
SystemException
- if a system exception occurredpublic static List dynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)
SystemException
- if a system exception occurredpublic static List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic static long dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query
SystemException
- if a system exception occurredpublic static ResourceTypePermission fetchResourceTypePermission(long resourceTypePermissionId) throws SystemException
SystemException
public static ResourceTypePermission getResourceTypePermission(long resourceTypePermissionId) throws PortalException, SystemException
resourceTypePermissionId
- the primary key of the resource type permission
PortalException
- if a resource type permission with the primary key could not be found
SystemException
- if a system exception occurredpublic static PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException, SystemException
PortalException
SystemException
public static List<ResourceTypePermission> getResourceTypePermissions(int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
start
- the lower bound of the range of resource type permissionsend
- the upper bound of the range of resource type permissions (not inclusive)
SystemException
- if a system exception occurredpublic static int getResourceTypePermissionsCount() throws SystemException
SystemException
- if a system exception occurredpublic static ResourceTypePermission updateResourceTypePermission(ResourceTypePermission resourceTypePermission) throws SystemException
resourceTypePermission
- the resource type permission
SystemException
- if a system exception occurredpublic static ResourceTypePermission updateResourceTypePermission(ResourceTypePermission resourceTypePermission, boolean merge) throws SystemException
resourceTypePermission
- the resource type permissionmerge
- whether to merge the resource type permission with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)
for an explanation.
SystemException
- if a system exception occurredpublic static String getBeanIdentifier()
public static void setBeanIdentifier(String beanIdentifier)
beanIdentifier
- the Spring bean ID for this beanpublic static long getCompanyScopeActionIds(long companyId, String name, long roleId) throws SystemException
SystemException
public static long getGroupScopeActionIds(long companyId, long groupId, String name, long roleId) throws SystemException
SystemException
public static List<ResourceTypePermission> getGroupScopeResourceTypePermissions(long companyId, String name, long roleId) throws SystemException
SystemException
public static ResourceBlockPermissionsContainer getResourceBlockPermissionsContainer(long companyId, long groupId, String name) throws SystemException
SystemException
public static List<ResourceTypePermission> getRoleResourceTypePermissions(long roleId) throws SystemException
SystemException
public static boolean hasCompanyScopePermission(long companyId, String name, long roleId, String actionId) throws PortalException, SystemException
PortalException
SystemException
public static boolean hasEitherScopePermission(long companyId, String name, long roleId, String actionId) throws PortalException, SystemException
PortalException
SystemException
public static boolean hasGroupScopePermission(long companyId, long groupId, String name, long roleId, String actionId) throws PortalException, SystemException
PortalException
SystemException
public static void updateCompanyScopeResourceTypePermissions(long companyId, String name, long roleId, long actionIdsLong, long operator) throws SystemException
SystemException
public static void updateGroupScopeResourceTypePermissions(long companyId, long groupId, String name, long roleId, long actionIdsLong, long operator) throws SystemException
SystemException
public static ResourceTypePermissionLocalService getService()
public void setService(ResourceTypePermissionLocalService service)
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |