com.liferay.portal.kernel.service.ResourceBlockLocalService Maven / Gradle / Ivy
Show all versions of com.liferay.portal.kernel Show documentation
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.kernel.service;
import aQute.bnd.annotation.ProviderType;
import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery;
import com.liferay.portal.kernel.dao.orm.DynamicQuery;
import com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery;
import com.liferay.portal.kernel.dao.orm.Projection;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.model.PermissionedModel;
import com.liferay.portal.kernel.model.PersistedModel;
import com.liferay.portal.kernel.model.ResourceBlock;
import com.liferay.portal.kernel.model.ResourceBlockPermissionsContainer;
import com.liferay.portal.kernel.model.Role;
import com.liferay.portal.kernel.search.Indexable;
import com.liferay.portal.kernel.search.IndexableType;
import com.liferay.portal.kernel.security.permission.ResourceBlockIdsBag;
import com.liferay.portal.kernel.transaction.Isolation;
import com.liferay.portal.kernel.transaction.Propagation;
import com.liferay.portal.kernel.transaction.Transactional;
import com.liferay.portal.kernel.util.OrderByComparator;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* Provides the local service interface for ResourceBlock. 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.
*
* @author Brian Wing Shun Chan
* @see ResourceBlockLocalServiceUtil
* @see com.liferay.portal.service.base.ResourceBlockLocalServiceBaseImpl
* @see com.liferay.portal.service.impl.ResourceBlockLocalServiceImpl
* @generated
*/
@ProviderType
@Transactional(isolation = Isolation.PORTAL, rollbackFor = {
PortalException.class, SystemException.class})
public interface ResourceBlockLocalService extends BaseLocalService,
PermissionedModelLocalService {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. Always use {@link ResourceBlockLocalServiceUtil} to access the resource block local service. Add custom service methods to {@link com.liferay.portal.service.impl.ResourceBlockLocalServiceImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
*/
public void addCompanyScopePermission(long companyId,
java.lang.String name, long roleId, java.lang.String actionId)
throws PortalException;
public void addCompanyScopePermissions(long companyId,
java.lang.String name, long roleId, long actionIdsLong);
public void addGroupScopePermission(long companyId, long groupId,
java.lang.String name, long roleId, java.lang.String actionId)
throws PortalException;
public void addGroupScopePermissions(long companyId, long groupId,
java.lang.String name, long roleId, long actionIdsLong);
public void addIndividualScopePermission(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
long roleId, java.lang.String actionId) throws PortalException;
public void addIndividualScopePermission(long companyId, long groupId,
java.lang.String name, long primKey, long roleId,
java.lang.String actionId) throws PortalException;
public void addIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
long roleId, long actionIdsLong);
public void addIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, long primKey, long roleId, long actionIdsLong)
throws PortalException;
/**
* Adds a resource block if necessary and associates the resource block
* permissions with it. The resource block will have an initial reference
* count of one.
*
* @param companyId the primary key of the resource block's company
* @param groupId the primary key of the resource block's group
* @param name the resource block's name
* @param permissionsHash the resource block's permission hash
* @param resourceBlockPermissionsContainer the resource block's
permissions container
* @return the new resource block
*/
public ResourceBlock addResourceBlock(long companyId, long groupId,
java.lang.String name, java.lang.String permissionsHash,
ResourceBlockPermissionsContainer resourceBlockPermissionsContainer);
/**
* Adds the resource block to the database. Also notifies the appropriate model listeners.
*
* @param resourceBlock the resource block
* @return the resource block that was added
*/
@Indexable(type = IndexableType.REINDEX)
public ResourceBlock addResourceBlock(ResourceBlock resourceBlock);
/**
* Creates a new resource block with the primary key. Does not add the resource block to the database.
*
* @param resourceBlockId the primary key for the new resource block
* @return the new resource block
*/
public ResourceBlock createResourceBlock(long resourceBlockId);
/**
* @throws PortalException
*/
@Override
public PersistedModel deletePersistedModel(PersistedModel persistedModel)
throws PortalException;
/**
* Deletes the resource block from the database. Also notifies the appropriate model listeners.
*
* @param resourceBlock the resource block
* @return the resource block that was removed
*/
@Indexable(type = IndexableType.DELETE)
public ResourceBlock deleteResourceBlock(ResourceBlock resourceBlock);
/**
* Deletes the resource block with the primary key from the database. Also notifies the appropriate model listeners.
*
* @param resourceBlockId the primary key of the resource block
* @return the resource block that was removed
* @throws PortalException if a resource block with the primary key could not be found
*/
@Indexable(type = IndexableType.DELETE)
public ResourceBlock deleteResourceBlock(long resourceBlockId)
throws PortalException;
public DynamicQuery dynamicQuery();
/**
* Performs a dynamic query on the database and returns the matching rows.
*
* @param dynamicQuery the dynamic query
* @return the matching rows
*/
public List dynamicQuery(DynamicQuery dynamicQuery);
/**
* 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 {@link 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 and pagination is required (start
and end
are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.ResourceBlockModelImpl}. 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.
*
*
* @param dynamicQuery the dynamic query
* @param start the lower bound of the range of model instances
* @param end the upper bound of the range of model instances (not inclusive)
* @return the range of matching rows
*/
public List dynamicQuery(DynamicQuery dynamicQuery, int start,
int end);
/**
* 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 {@link 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 and pagination is required (start
and end
are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.ResourceBlockModelImpl}. 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.
*
*
* @param dynamicQuery the dynamic query
* @param start the lower bound of the range of model instances
* @param end the upper bound of the range of model instances (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching rows
*/
public List dynamicQuery(DynamicQuery dynamicQuery, int start,
int end, OrderByComparator orderByComparator);
/**
* Returns the number of rows matching the dynamic query.
*
* @param dynamicQuery the dynamic query
* @return the number of rows matching the dynamic query
*/
public long dynamicQueryCount(DynamicQuery dynamicQuery);
/**
* Returns the number of rows matching the dynamic query.
*
* @param dynamicQuery the dynamic query
* @param projection the projection to apply to the query
* @return the number of rows matching the dynamic query
*/
public long dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public ResourceBlock fetchResourceBlock(long resourceBlockId);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public long getActionId(java.lang.String name, java.lang.String actionId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public long getActionIds(java.lang.String name,
List actionIds) throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getActionIds(java.lang.String name,
long actionIdsLong);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public ActionableDynamicQuery getActionableDynamicQuery();
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCompanyScopePermissions(
ResourceBlock resourceBlock, long roleId);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getGroupScopePermissions(
ResourceBlock resourceBlock, long roleId);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery();
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
public java.lang.String getOSGiServiceIdentifier();
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public PermissionedModel getPermissionedModel(java.lang.String name,
long primKey) throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getPermissions(ResourceBlock resourceBlock,
long roleId);
@Override
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public ResourceBlock getResourceBlock(java.lang.String name, long primKey)
throws PortalException;
/**
* Returns the resource block with the primary key.
*
* @param resourceBlockId the primary key of the resource block
* @return the resource block
* @throws PortalException if a resource block with the primary key could not be found
*/
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public ResourceBlock getResourceBlock(long resourceBlockId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getResourceBlockIds(
ResourceBlockIdsBag resourceBlockIdsBag, java.lang.String name,
java.lang.String actionId) throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public ResourceBlockIdsBag getResourceBlockIdsBag(long companyId,
long groupId, java.lang.String name, long[] roleIds);
/**
* Returns a range of all the resource blocks.
*
*
* 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 {@link 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 and pagination is required (start
and end
are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.ResourceBlockModelImpl}. 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.
*
*
* @param start the lower bound of the range of resource blocks
* @param end the upper bound of the range of resource blocks (not inclusive)
* @return the range of resource blocks
*/
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getResourceBlocks(int start, int end);
/**
* Returns the number of resource blocks.
*
* @return the number of resource blocks
*/
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getResourceBlocksCount();
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getRoles(java.lang.String name, long primKey,
java.lang.String actionId) throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public boolean hasPermission(java.lang.String name,
PermissionedModel permissionedModel, java.lang.String actionId,
ResourceBlockIdsBag resourceBlockIdsBag) throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public boolean hasPermission(java.lang.String name, long primKey,
java.lang.String actionId, ResourceBlockIdsBag resourceBlockIdsBag)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public boolean isSupported(java.lang.String name);
public void releasePermissionedModelResourceBlock(java.lang.String name,
long primKey) throws PortalException;
@Transactional(isolation = Isolation.READ_COMMITTED, propagation = Propagation.REQUIRES_NEW)
public void releasePermissionedModelResourceBlock(
PermissionedModel permissionedModel);
/**
* Decrements the reference count of the resource block and updates it in
* the database or deletes the resource block if the reference count reaches
* zero.
*
* @param resourceBlock the resource block
*/
@Transactional(isolation = Isolation.READ_COMMITTED, propagation = Propagation.REQUIRES_NEW)
public void releaseResourceBlock(ResourceBlock resourceBlock);
/**
* Decrements the reference count of the resource block and updates it in
* the database or deletes the resource block if the reference count reaches
* zero.
*
* @param resourceBlockId the primary key of the resource block
*/
@Transactional(isolation = Isolation.READ_COMMITTED, propagation = Propagation.REQUIRES_NEW)
public void releaseResourceBlock(long resourceBlockId);
public void removeAllGroupScopePermissions(long companyId,
java.lang.String name, long roleId, java.lang.String actionId)
throws PortalException;
public void removeAllGroupScopePermissions(long companyId,
java.lang.String name, long roleId, long actionIdsLong);
public void removeCompanyScopePermission(long companyId,
java.lang.String name, long roleId, java.lang.String actionId)
throws PortalException;
public void removeCompanyScopePermissions(long companyId,
java.lang.String name, long roleId, long actionIdsLong);
public void removeGroupScopePermission(long companyId, long groupId,
java.lang.String name, long roleId, java.lang.String actionId)
throws PortalException;
public void removeGroupScopePermissions(long companyId, long groupId,
java.lang.String name, long roleId, long actionIdsLong);
public void removeIndividualScopePermission(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
long roleId, java.lang.String actionId) throws PortalException;
public void removeIndividualScopePermission(long companyId, long groupId,
java.lang.String name, long primKey, long roleId,
java.lang.String actionId) throws PortalException;
public void removeIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
long roleId, long actionIdsLong);
public void removeIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, long primKey, long roleId, long actionIdsLong)
throws PortalException;
public void setCompanyScopePermissions(long companyId,
java.lang.String name, long roleId, List actionIds)
throws PortalException;
public void setCompanyScopePermissions(long companyId,
java.lang.String name, long roleId, long actionIdsLong);
public void setGroupScopePermissions(long companyId, long groupId,
java.lang.String name, long roleId, List actionIds)
throws PortalException;
public void setGroupScopePermissions(long companyId, long groupId,
java.lang.String name, long roleId, long actionIdsLong);
public void setIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
long roleId, List actionIds)
throws PortalException;
public void setIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
long roleId, long actionIdsLong);
public void setIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, long primKey, long roleId,
List actionIds) throws PortalException;
public void setIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, long primKey, long roleId, long actionIdsLong)
throws PortalException;
public void setIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, long primKey,
Map roleIdsToActionIds)
throws PortalException;
public void updateCompanyScopePermissions(long companyId,
java.lang.String name, long roleId, long actionIdsLong, int operator);
public void updateGroupScopePermissions(long companyId, long groupId,
java.lang.String name, long roleId, long actionIdsLong, int operator);
public void updateIndividualScopePermissions(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
long roleId, long actionIdsLong, int operator);
/**
* Updates the resource block in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
*
* @param resourceBlock the resource block
* @return the resource block that was updated
*/
@Indexable(type = IndexableType.REINDEX)
public ResourceBlock updateResourceBlock(ResourceBlock resourceBlock);
@Transactional(isolation = Isolation.READ_COMMITTED, propagation = Propagation.REQUIRES_NEW)
public ResourceBlock updateResourceBlockId(long companyId, long groupId,
java.lang.String name, PermissionedModel permissionedModel,
java.lang.String permissionsHash,
ResourceBlockPermissionsContainer resourceBlockPermissionsContainer);
public void verifyResourceBlockId(long companyId, java.lang.String name,
long primKey) throws PortalException;
}