@Deprecated public class ResourceBlockPermissionLocalServiceWrapper extends Object implements ResourceBlockPermissionLocalService, ServiceWrapper<ResourceBlockPermissionLocalService>
ResourceBlockPermissionLocalService.ResourceBlockPermissionLocalService| Constructor and Description |
|---|
ResourceBlockPermissionLocalServiceWrapper(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
ResourceBlockPermission |
addResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
Deprecated.
Adds the resource block permission to the database.
|
void |
addResourceBlockPermissions(long resourceBlockId,
ResourceBlockPermissionsContainer resourceBlockPermissionsContainer)
Deprecated.
|
ResourceBlockPermission |
createResourceBlockPermission(long resourceBlockPermissionId)
Deprecated.
Creates a new resource block permission with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel)
Deprecated.
|
ResourceBlockPermission |
deleteResourceBlockPermission(long resourceBlockPermissionId)
Deprecated.
Deletes the resource block permission with the primary key from the database.
|
ResourceBlockPermission |
deleteResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
Deprecated.
Deletes the resource block permission from the database.
|
void |
deleteResourceBlockPermissions(long resourceBlockId)
Deprecated.
|
DynamicQuery |
dynamicQuery()
Deprecated.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Deprecated.
Performs a dynamic query on the database and returns the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Deprecated.
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Deprecated.
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Deprecated.
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Deprecated.
Returns the number of rows matching the dynamic query.
|
ResourceBlockPermission |
fetchResourceBlockPermission(long resourceBlockPermissionId)
Deprecated.
|
ActionableDynamicQuery |
getActionableDynamicQuery()
Deprecated.
|
Map<Long,Set<String>> |
getAvailableResourceBlockPermissionActionIds(String name,
long primKey,
List<String> actionIds)
Deprecated.
|
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery()
Deprecated.
|
String |
getOSGiServiceIdentifier()
Deprecated.
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
Deprecated.
|
ResourceBlockPermission |
getResourceBlockPermission(long resourceBlockPermissionId)
Deprecated.
Returns the resource block permission with the primary key.
|
List<ResourceBlockPermission> |
getResourceBlockPermissions(int start,
int end)
Deprecated.
Returns a range of all the resource block permissions.
|
ResourceBlockPermissionsContainer |
getResourceBlockPermissionsContainer(long resourceBlockId)
Deprecated.
|
int |
getResourceBlockPermissionsCount()
Deprecated.
Returns the number of resource block permissions.
|
int |
getResourceBlockPermissionsCount(long resourceBlockId,
long roleId)
Deprecated.
|
ResourceBlockPermissionLocalService |
getWrappedService()
Deprecated.
|
void |
setWrappedService(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
Deprecated.
|
void |
updateResourceBlockPermission(long resourceBlockId,
long roleId,
long actionIdsLong,
int operator)
Deprecated.
|
ResourceBlockPermission |
updateResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
Deprecated.
Updates the resource block permission in the database or adds it if it does not yet exist.
|
public ResourceBlockPermissionLocalServiceWrapper(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
public ResourceBlockPermission addResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
addResourceBlockPermission in interface ResourceBlockPermissionLocalServiceresourceBlockPermission - the resource block permissionpublic void addResourceBlockPermissions(long resourceBlockId,
ResourceBlockPermissionsContainer resourceBlockPermissionsContainer)
addResourceBlockPermissions in interface ResourceBlockPermissionLocalServicepublic ResourceBlockPermission createResourceBlockPermission(long resourceBlockPermissionId)
createResourceBlockPermission in interface ResourceBlockPermissionLocalServiceresourceBlockPermissionId - the primary key for the new resource block permissionpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicedeletePersistedModel in interface ResourceBlockPermissionLocalServicePortalExceptionpublic ResourceBlockPermission deleteResourceBlockPermission(long resourceBlockPermissionId) throws PortalException
deleteResourceBlockPermission in interface ResourceBlockPermissionLocalServiceresourceBlockPermissionId - the primary key of the resource block permissionPortalException - if a resource block permission with the primary key could not be foundpublic ResourceBlockPermission deleteResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
deleteResourceBlockPermission in interface ResourceBlockPermissionLocalServiceresourceBlockPermission - the resource block permissionpublic void deleteResourceBlockPermissions(long resourceBlockId)
deleteResourceBlockPermissions in interface ResourceBlockPermissionLocalServicepublic DynamicQuery dynamicQuery()
dynamicQuery in interface ResourceBlockPermissionLocalServicepublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface ResourceBlockPermissionLocalServicedynamicQuery - the dynamic querypublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.ResourceBlockPermissionModelImpl.
dynamicQuery in interface ResourceBlockPermissionLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.ResourceBlockPermissionModelImpl.
dynamicQuery in interface ResourceBlockPermissionLocalServicedynamicQuery - 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)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount in interface ResourceBlockPermissionLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface ResourceBlockPermissionLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic ResourceBlockPermission fetchResourceBlockPermission(long resourceBlockPermissionId)
fetchResourceBlockPermission in interface ResourceBlockPermissionLocalServicepublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface ResourceBlockPermissionLocalServicepublic Map<Long,Set<String>> getAvailableResourceBlockPermissionActionIds(String name,
long primKey,
List<String> actionIds)
throws PortalException
getAvailableResourceBlockPermissionActionIds in interface ResourceBlockPermissionLocalServicePortalExceptionpublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface ResourceBlockPermissionLocalServicepublic String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface ResourceBlockPermissionLocalServicepublic PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface ResourceBlockPermissionLocalServicePortalExceptionpublic ResourceBlockPermission getResourceBlockPermission(long resourceBlockPermissionId) throws PortalException
getResourceBlockPermission in interface ResourceBlockPermissionLocalServiceresourceBlockPermissionId - the primary key of the resource block permissionPortalException - if a resource block permission with the primary key could not be foundpublic List<ResourceBlockPermission> getResourceBlockPermissions(int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.ResourceBlockPermissionModelImpl.
getResourceBlockPermissions in interface ResourceBlockPermissionLocalServicestart - the lower bound of the range of resource block permissionsend - the upper bound of the range of resource block permissions (not inclusive)public ResourceBlockPermissionsContainer getResourceBlockPermissionsContainer(long resourceBlockId)
getResourceBlockPermissionsContainer in interface ResourceBlockPermissionLocalServicepublic int getResourceBlockPermissionsCount()
getResourceBlockPermissionsCount in interface ResourceBlockPermissionLocalServicepublic int getResourceBlockPermissionsCount(long resourceBlockId,
long roleId)
getResourceBlockPermissionsCount in interface ResourceBlockPermissionLocalServicepublic void updateResourceBlockPermission(long resourceBlockId,
long roleId,
long actionIdsLong,
int operator)
updateResourceBlockPermission in interface ResourceBlockPermissionLocalServicepublic ResourceBlockPermission updateResourceBlockPermission(ResourceBlockPermission resourceBlockPermission)
updateResourceBlockPermission in interface ResourceBlockPermissionLocalServiceresourceBlockPermission - the resource block permissionpublic ResourceBlockPermissionLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<ResourceBlockPermissionLocalService>public void setWrappedService(ResourceBlockPermissionLocalService resourceBlockPermissionLocalService)
setWrappedService in interface ServiceWrapper<ResourceBlockPermissionLocalService>