Liferay 6.1.2-ce-ga3

com.liferay.portal.service
Interface ResourceBlockPermissionLocalService

All Superinterfaces:
BaseLocalService, PermissionedModelLocalService, PersistedModelLocalService
All Known Implementing Classes:
ResourceBlockPermissionLocalServiceBaseImpl, ResourceBlockPermissionLocalServiceImpl, ResourceBlockPermissionLocalServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface ResourceBlockPermissionLocalService
extends BaseLocalService, PermissionedModelLocalService

The interface for the resource block permission local service.

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.

See Also:
ResourceBlockPermissionLocalServiceUtil, ResourceBlockPermissionLocalServiceBaseImpl, ResourceBlockPermissionLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 ResourceBlockPermission addResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
          Adds the resource block permission to the database.
 void addResourceBlockPermissions(long resourceBlockId, ResourceBlockPermissionsContainer resourceBlockPermissionsContainer)
           
 ResourceBlockPermission createResourceBlockPermission(long resourceBlockPermissionId)
          Creates a new resource block permission with the primary key.
 ResourceBlockPermission deleteResourceBlockPermission(long resourceBlockPermissionId)
          Deletes the resource block permission with the primary key from the database.
 ResourceBlockPermission deleteResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
          Deletes the resource block permission from the database.
 void deleteResourceBlockPermissions(long resourceBlockId)
           
 DynamicQuery dynamicQuery()
           
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 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.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows that match the dynamic query.
 ResourceBlockPermission fetchResourceBlockPermission(long resourceBlockPermissionId)
           
 Map<Long,Set<String>> getAvailableResourceBlockPermissionActionIds(long[] roleIds, String name, long primKey, List<String> actionIds)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 ResourceBlockPermission getResourceBlockPermission(long resourceBlockPermissionId)
          Returns the resource block permission with the primary key.
 List<ResourceBlockPermission> getResourceBlockPermissions(int start, int end)
          Returns a range of all the resource block permissions.
 ResourceBlockPermissionsContainer getResourceBlockPermissionsContainer(long resourceBlockId)
           
 int getResourceBlockPermissionsCount()
          Returns the number of resource block permissions.
 int getResourceBlockPermissionsCount(long resourceBlockId, long roleId)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void updateResourceBlockPermission(long resourceBlockId, long roleId, long actionIdsLong, int operator)
           
 ResourceBlockPermission updateResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
          Updates the resource block permission in the database or adds it if it does not yet exist.
 ResourceBlockPermission updateResourceBlockPermission(ResourceBlockPermission resourceBlockPermission, boolean merge)
          Updates the resource block permission in the database or adds it if it does not yet exist.
 

Method Detail

addResourceBlockPermission

ResourceBlockPermission addResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
                                                   throws SystemException
Adds the resource block permission to the database. Also notifies the appropriate model listeners.

Parameters:
resourceBlockPermission - the resource block permission
Returns:
the resource block permission that was added
Throws:
SystemException - if a system exception occurred

createResourceBlockPermission

ResourceBlockPermission createResourceBlockPermission(long resourceBlockPermissionId)
Creates a new resource block permission with the primary key. Does not add the resource block permission to the database.

Parameters:
resourceBlockPermissionId - the primary key for the new resource block permission
Returns:
the new resource block permission

deleteResourceBlockPermission

ResourceBlockPermission deleteResourceBlockPermission(long resourceBlockPermissionId)
                                                      throws PortalException,
                                                             SystemException
Deletes the resource block permission with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
resourceBlockPermissionId - the primary key of the resource block permission
Returns:
the resource block permission that was removed
Throws:
PortalException - if a resource block permission with the primary key could not be found
SystemException - if a system exception occurred

deleteResourceBlockPermission

ResourceBlockPermission deleteResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
                                                      throws SystemException
Deletes the resource block permission from the database. Also notifies the appropriate model listeners.

Parameters:
resourceBlockPermission - the resource block permission
Returns:
the resource block permission that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

DynamicQuery dynamicQuery()

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery,
                  int start,
                  int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

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.

Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery,
                  int start,
                  int end,
                  OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

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.

Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Returns the number of rows that match the dynamic query.

Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchResourceBlockPermission

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ResourceBlockPermission fetchResourceBlockPermission(long resourceBlockPermissionId)
                                                     throws SystemException
Throws:
SystemException

getResourceBlockPermission

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ResourceBlockPermission getResourceBlockPermission(long resourceBlockPermissionId)
                                                   throws PortalException,
                                                          SystemException
Returns the resource block permission with the primary key.

Parameters:
resourceBlockPermissionId - the primary key of the resource block permission
Returns:
the resource block permission
Throws:
PortalException - if a resource block permission with the primary key could not be found
SystemException - if a system exception occurred

getPersistedModel

@Transactional(propagation=SUPPORTS,
               readOnly=true)
PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Throws:
PortalException
SystemException

getResourceBlockPermissions

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<ResourceBlockPermission> getResourceBlockPermissions(int start,
                                                                                                   int end)
                                                          throws SystemException
Returns a range of all the resource block permissions.

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.

Parameters:
start - the lower bound of the range of resource block permissions
end - the upper bound of the range of resource block permissions (not inclusive)
Returns:
the range of resource block permissions
Throws:
SystemException - if a system exception occurred

getResourceBlockPermissionsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getResourceBlockPermissionsCount()
                                     throws SystemException
Returns the number of resource block permissions.

Returns:
the number of resource block permissions
Throws:
SystemException - if a system exception occurred

updateResourceBlockPermission

ResourceBlockPermission updateResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
                                                      throws SystemException
Updates the resource block permission in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
resourceBlockPermission - the resource block permission
Returns:
the resource block permission that was updated
Throws:
SystemException - if a system exception occurred

updateResourceBlockPermission

ResourceBlockPermission updateResourceBlockPermission(ResourceBlockPermission resourceBlockPermission,
                                                      boolean merge)
                                                      throws SystemException
Updates the resource block permission in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
resourceBlockPermission - the resource block permission
merge - whether to merge the resource block permission with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the resource block permission that was updated
Throws:
SystemException - if a system exception occurred

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

addResourceBlockPermissions

void addResourceBlockPermissions(long resourceBlockId,
                                 ResourceBlockPermissionsContainer resourceBlockPermissionsContainer)
                                 throws SystemException
Throws:
SystemException

deleteResourceBlockPermissions

void deleteResourceBlockPermissions(long resourceBlockId)
                                    throws SystemException
Throws:
SystemException

getAvailableResourceBlockPermissionActionIds

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Map<Long,Set<String>> getAvailableResourceBlockPermissionActionIds(long[] roleIds,
                                                                                                            String name,
                                                                                                            long primKey,
                                                                                                            List<String> actionIds)
                                                                   throws PortalException,
                                                                          SystemException
Throws:
PortalException
SystemException

getResourceBlockPermissionsContainer

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ResourceBlockPermissionsContainer getResourceBlockPermissionsContainer(long resourceBlockId)
                                                                       throws SystemException
Throws:
SystemException

getResourceBlockPermissionsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getResourceBlockPermissionsCount(long resourceBlockId,
                                                                              long roleId)
                                     throws SystemException
Throws:
SystemException

updateResourceBlockPermission

void updateResourceBlockPermission(long resourceBlockId,
                                   long roleId,
                                   long actionIdsLong,
                                   int operator)
                                   throws SystemException
Throws:
SystemException

Liferay 6.1.2-ce-ga3