Liferay 6.2-ce-ga5

com.liferay.portal.service
Class ResourceBlockPermissionLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.ResourceBlockPermissionLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PermissionedModelLocalService, PersistedModelLocalService, ResourceBlockPermissionLocalService, ServiceWrapper<ResourceBlockPermissionLocalService>

@ProviderType
public class ResourceBlockPermissionLocalServiceWrapper
extends Object
implements ResourceBlockPermissionLocalService, ServiceWrapper<ResourceBlockPermissionLocalService>

Provides a wrapper for ResourceBlockPermissionLocalService.

See Also:
ResourceBlockPermissionLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
ResourceBlockPermissionLocalServiceWrapper(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
           
 
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.
 long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          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)
           
 ResourceBlockPermissionLocalService getWrappedResourceBlockPermissionLocalService()
          Deprecated. As of 6.1.0, replaced by getWrappedService()
 ResourceBlockPermissionLocalService getWrappedService()
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedResourceBlockPermissionLocalService(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
          Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portal.service.ResourceBlockPermissionLocalService)
 void setWrappedService(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
           
 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ResourceBlockPermissionLocalServiceWrapper

public ResourceBlockPermissionLocalServiceWrapper(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
Method Detail

addResourceBlockPermission

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

Specified by:
addResourceBlockPermission in interface ResourceBlockPermissionLocalService
Parameters:
resourceBlockPermission - the resource block permission
Returns:
the resource block permission that was added
Throws:
SystemException - if a system exception occurred

createResourceBlockPermission

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

Specified by:
createResourceBlockPermission in interface ResourceBlockPermissionLocalService
Parameters:
resourceBlockPermissionId - the primary key for the new resource block permission
Returns:
the new resource block permission

deleteResourceBlockPermission

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

Specified by:
deleteResourceBlockPermission in interface ResourceBlockPermissionLocalService
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

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

Specified by:
deleteResourceBlockPermission in interface ResourceBlockPermissionLocalService
Parameters:
resourceBlockPermission - the resource block permission
Returns:
the resource block permission that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface ResourceBlockPermissionLocalService

dynamicQuery

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

Specified by:
dynamicQuery in interface ResourceBlockPermissionLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ResourceBlockPermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
dynamicQuery in interface ResourceBlockPermissionLocalService
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

public 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ResourceBlockPermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
dynamicQuery in interface ResourceBlockPermissionLocalService
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

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

Specified by:
dynamicQueryCount in interface ResourceBlockPermissionLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

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

Specified by:
dynamicQueryCount in interface ResourceBlockPermissionLocalService
Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchResourceBlockPermission

public ResourceBlockPermission fetchResourceBlockPermission(long resourceBlockPermissionId)
                                                     throws SystemException
Specified by:
fetchResourceBlockPermission in interface ResourceBlockPermissionLocalService
Throws:
SystemException

getResourceBlockPermission

public ResourceBlockPermission getResourceBlockPermission(long resourceBlockPermissionId)
                                                   throws PortalException,
                                                          SystemException
Returns the resource block permission with the primary key.

Specified by:
getResourceBlockPermission in interface ResourceBlockPermissionLocalService
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

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Specified by:
getPersistedModel in interface ResourceBlockPermissionLocalService
Throws:
PortalException
SystemException

getResourceBlockPermissions

public 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from ResourceBlockPermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
getResourceBlockPermissions in interface ResourceBlockPermissionLocalService
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

public int getResourceBlockPermissionsCount()
                                     throws SystemException
Returns the number of resource block permissions.

Specified by:
getResourceBlockPermissionsCount in interface ResourceBlockPermissionLocalService
Returns:
the number of resource block permissions
Throws:
SystemException - if a system exception occurred

updateResourceBlockPermission

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

Specified by:
updateResourceBlockPermission in interface ResourceBlockPermissionLocalService
Parameters:
resourceBlockPermission - the resource block permission
Returns:
the resource block permission that was updated
Throws:
SystemException - if a system exception occurred

getBeanIdentifier

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

Specified by:
getBeanIdentifier in interface ResourceBlockPermissionLocalService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

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

Specified by:
setBeanIdentifier in interface ResourceBlockPermissionLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

addResourceBlockPermissions

public void addResourceBlockPermissions(long resourceBlockId,
                                        ResourceBlockPermissionsContainer resourceBlockPermissionsContainer)
                                 throws SystemException
Specified by:
addResourceBlockPermissions in interface ResourceBlockPermissionLocalService
Throws:
SystemException

deleteResourceBlockPermissions

public void deleteResourceBlockPermissions(long resourceBlockId)
                                    throws SystemException
Specified by:
deleteResourceBlockPermissions in interface ResourceBlockPermissionLocalService
Throws:
SystemException

getAvailableResourceBlockPermissionActionIds

public Map<Long,Set<String>> getAvailableResourceBlockPermissionActionIds(long[] roleIds,
                                                                          String name,
                                                                          long primKey,
                                                                          List<String> actionIds)
                                                                   throws PortalException,
                                                                          SystemException
Specified by:
getAvailableResourceBlockPermissionActionIds in interface ResourceBlockPermissionLocalService
Throws:
PortalException
SystemException

getResourceBlockPermissionsContainer

public ResourceBlockPermissionsContainer getResourceBlockPermissionsContainer(long resourceBlockId)
                                                                       throws SystemException
Specified by:
getResourceBlockPermissionsContainer in interface ResourceBlockPermissionLocalService
Throws:
SystemException

getResourceBlockPermissionsCount

public int getResourceBlockPermissionsCount(long resourceBlockId,
                                            long roleId)
                                     throws SystemException
Specified by:
getResourceBlockPermissionsCount in interface ResourceBlockPermissionLocalService
Throws:
SystemException

updateResourceBlockPermission

public void updateResourceBlockPermission(long resourceBlockId,
                                          long roleId,
                                          long actionIdsLong,
                                          int operator)
                                   throws SystemException
Specified by:
updateResourceBlockPermission in interface ResourceBlockPermissionLocalService
Throws:
SystemException

getWrappedResourceBlockPermissionLocalService

public ResourceBlockPermissionLocalService getWrappedResourceBlockPermissionLocalService()
Deprecated. As of 6.1.0, replaced by getWrappedService()


setWrappedResourceBlockPermissionLocalService

public void setWrappedResourceBlockPermissionLocalService(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portal.service.ResourceBlockPermissionLocalService)


getWrappedService

public ResourceBlockPermissionLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<ResourceBlockPermissionLocalService>

setWrappedService

public void setWrappedService(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<ResourceBlockPermissionLocalService>

Liferay 6.2-ce-ga5