All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.service.ResourceBlockLocalService Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 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.service;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.transaction.Isolation;
import com.liferay.portal.kernel.transaction.Propagation;
import com.liferay.portal.kernel.transaction.Transactional;

/**
 * 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.
	 */

	/**
	* 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
	* @throws SystemException if a system exception occurred
	*/
	public com.liferay.portal.model.ResourceBlock addResourceBlock(
		com.liferay.portal.model.ResourceBlock resourceBlock)
		throws com.liferay.portal.kernel.exception.SystemException;

	/**
	* 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 com.liferay.portal.model.ResourceBlock createResourceBlock(
		long resourceBlockId);

	/**
	* 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
	* @throws SystemException if a system exception occurred
	*/
	public com.liferay.portal.model.ResourceBlock deleteResourceBlock(
		long resourceBlockId)
		throws com.liferay.portal.kernel.exception.PortalException,
			com.liferay.portal.kernel.exception.SystemException;

	/**
	* 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
	* @throws SystemException if a system exception occurred
	*/
	public com.liferay.portal.model.ResourceBlock deleteResourceBlock(
		com.liferay.portal.model.ResourceBlock resourceBlock)
		throws com.liferay.portal.kernel.exception.SystemException;

	public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery();

	/**
	* Performs a dynamic query on the database and returns the matching rows.
	*
	* @param dynamicQuery the dynamic query
	* @return the matching rows
	* @throws SystemException if a system exception occurred
	*/
	@SuppressWarnings("rawtypes")
	public java.util.List dynamicQuery(
		com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
		throws com.liferay.portal.kernel.exception.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 {@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 * @throws SystemException if a system exception occurred */ @SuppressWarnings("rawtypes") public java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) throws com.liferay.portal.kernel.exception.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 {@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 * @throws SystemException if a system exception occurred */ @SuppressWarnings("rawtypes") public java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of rows that match the dynamic query. * * @param dynamicQuery the dynamic query * @return the number of rows that match the dynamic query * @throws SystemException if a system exception occurred */ public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of rows that match the dynamic query. * * @param dynamicQuery the dynamic query * @param projection the projection to apply to the query * @return the number of rows that match the dynamic query * @throws SystemException if a system exception occurred */ public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) throws com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public com.liferay.portal.model.ResourceBlock fetchResourceBlock( long resourceBlockId) throws com.liferay.portal.kernel.exception.SystemException; /** * 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 * @throws SystemException if a system exception occurred */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public com.liferay.portal.model.ResourceBlock getResourceBlock( long resourceBlockId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; @Override @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public com.liferay.portal.model.PersistedModel getPersistedModel( java.io.Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; /** * 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 * @throws SystemException if a system exception occurred */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List getResourceBlocks( int start, int end) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of resource blocks. * * @return the number of resource blocks * @throws SystemException if a system exception occurred */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getResourceBlocksCount() throws com.liferay.portal.kernel.exception.SystemException; /** * 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 * @throws SystemException if a system exception occurred */ public com.liferay.portal.model.ResourceBlock updateResourceBlock( com.liferay.portal.model.ResourceBlock resourceBlock) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the Spring bean ID for this bean. * * @return the Spring bean ID for this bean */ public java.lang.String getBeanIdentifier(); /** * Sets the Spring bean ID for this bean. * * @param beanIdentifier the Spring bean ID for this bean */ public void setBeanIdentifier(java.lang.String beanIdentifier); public void addCompanyScopePermission(long companyId, java.lang.String name, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void addCompanyScopePermissions(long companyId, java.lang.String name, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void addGroupScopePermission(long companyId, long groupId, java.lang.String name, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void addGroupScopePermissions(long companyId, long groupId, java.lang.String name, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void addIndividualScopePermission(long companyId, long groupId, java.lang.String name, long primKey, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void addIndividualScopePermission(long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void addIndividualScopePermissions(long companyId, long groupId, java.lang.String name, long primKey, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void addIndividualScopePermissions(long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; /** * 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 * @throws SystemException if a system exception occurred */ public com.liferay.portal.model.ResourceBlock addResourceBlock( long companyId, long groupId, java.lang.String name, java.lang.String permissionsHash, com.liferay.portal.model.ResourceBlockPermissionsContainer resourceBlockPermissionsContainer) throws com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public long getActionId(java.lang.String name, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public long getActionIds(java.lang.String name, java.util.List actionIds) throws com.liferay.portal.kernel.exception.PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List getActionIds( java.lang.String name, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List getCompanyScopePermissions( com.liferay.portal.model.ResourceBlock resourceBlock, long roleId) throws com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List getGroupScopePermissions( com.liferay.portal.model.ResourceBlock resourceBlock, long roleId) throws com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public com.liferay.portal.model.PermissionedModel getPermissionedModel( java.lang.String name, long primKey) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List getPermissions( com.liferay.portal.model.ResourceBlock resourceBlock, long roleId) throws com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public com.liferay.portal.model.ResourceBlock getResourceBlock( java.lang.String name, long primKey) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List getResourceBlockIds( com.liferay.portal.security.permission.ResourceBlockIdsBag resourceBlockIdsBag, java.lang.String name, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public com.liferay.portal.security.permission.ResourceBlockIdsBag getResourceBlockIdsBag( long companyId, long groupId, java.lang.String name, long[] roleIds) throws com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasPermission(java.lang.String name, long primKey, java.lang.String actionId, com.liferay.portal.security.permission.ResourceBlockIdsBag resourceBlockIdsBag) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasPermission(java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, java.lang.String actionId, com.liferay.portal.security.permission.ResourceBlockIdsBag resourceBlockIdsBag) throws com.liferay.portal.kernel.exception.PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean isSupported(java.lang.String name); public void releasePermissionedModelResourceBlock( com.liferay.portal.model.PermissionedModel permissionedModel) throws com.liferay.portal.kernel.exception.SystemException; public void releasePermissionedModelResourceBlock(java.lang.String name, long primKey) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; /** * 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 * @throws SystemException if a system exception occurred */ public void releaseResourceBlock(long resourceBlockId) throws com.liferay.portal.kernel.exception.SystemException; /** * 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 * @throws SystemException if a system exception occurred */ public void releaseResourceBlock( com.liferay.portal.model.ResourceBlock resourceBlock) throws com.liferay.portal.kernel.exception.SystemException; public void removeAllGroupScopePermissions(long companyId, java.lang.String name, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void removeAllGroupScopePermissions(long companyId, java.lang.String name, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void removeCompanyScopePermission(long companyId, java.lang.String name, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void removeCompanyScopePermissions(long companyId, java.lang.String name, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void removeGroupScopePermission(long companyId, long groupId, java.lang.String name, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void removeGroupScopePermissions(long companyId, long groupId, java.lang.String name, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void removeIndividualScopePermission(long companyId, long groupId, java.lang.String name, long primKey, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void removeIndividualScopePermission(long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, long roleId, java.lang.String actionId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void removeIndividualScopePermissions(long companyId, long groupId, java.lang.String name, long primKey, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void removeIndividualScopePermissions(long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void setCompanyScopePermissions(long companyId, java.lang.String name, long roleId, java.util.List actionIds) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void setCompanyScopePermissions(long companyId, java.lang.String name, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void setGroupScopePermissions(long companyId, long groupId, java.lang.String name, long roleId, java.util.List actionIds) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void setGroupScopePermissions(long companyId, long groupId, java.lang.String name, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void setIndividualScopePermissions(long companyId, long groupId, java.lang.String name, long primKey, long roleId, java.util.List actionIds) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void setIndividualScopePermissions(long companyId, long groupId, java.lang.String name, long primKey, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void setIndividualScopePermissions(long companyId, long groupId, java.lang.String name, long primKey, java.util.Map roleIdsToActionIds) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void setIndividualScopePermissions(long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, long roleId, java.util.List actionIds) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; public void setIndividualScopePermissions(long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, long roleId, long actionIdsLong) throws com.liferay.portal.kernel.exception.SystemException; public void updateCompanyScopePermissions(long companyId, java.lang.String name, long roleId, long actionIdsLong, int operator) throws com.liferay.portal.kernel.exception.SystemException; public void updateGroupScopePermissions(long companyId, long groupId, java.lang.String name, long roleId, long actionIdsLong, int operator) throws com.liferay.portal.kernel.exception.SystemException; public void updateIndividualScopePermissions(long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, long roleId, long actionIdsLong, int operator) throws com.liferay.portal.kernel.exception.SystemException; public com.liferay.portal.model.ResourceBlock updateResourceBlockId( long companyId, long groupId, java.lang.String name, com.liferay.portal.model.PermissionedModel permissionedModel, java.lang.String permissionsHash, com.liferay.portal.model.ResourceBlockPermissionsContainer resourceBlockPermissionsContainer) throws com.liferay.portal.kernel.exception.SystemException; public void verifyResourceBlockId(long companyId, java.lang.String name, long primKey) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy