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

com.liferay.portlet.asset.service.AssetVocabularyLocalServiceWrapper Maven / Gradle / Ivy

/**
 * 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.portlet.asset.service;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.service.ServiceWrapper;

/**
 * Provides a wrapper for {@link AssetVocabularyLocalService}.
 *
 * @author Brian Wing Shun Chan
 * @see AssetVocabularyLocalService
 * @generated
 */
@ProviderType
public class AssetVocabularyLocalServiceWrapper
	implements AssetVocabularyLocalService,
		ServiceWrapper {
	public AssetVocabularyLocalServiceWrapper(
		AssetVocabularyLocalService assetVocabularyLocalService) {
		_assetVocabularyLocalService = assetVocabularyLocalService;
	}

	/**
	* Adds the asset vocabulary to the database. Also notifies the appropriate model listeners.
	*
	* @param assetVocabulary the asset vocabulary
	* @return the asset vocabulary that was added
	* @throws SystemException if a system exception occurred
	*/
	@Override
	public com.liferay.portlet.asset.model.AssetVocabulary addAssetVocabulary(
		com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
		throws com.liferay.portal.kernel.exception.SystemException {
		return _assetVocabularyLocalService.addAssetVocabulary(assetVocabulary);
	}

	/**
	* Creates a new asset vocabulary with the primary key. Does not add the asset vocabulary to the database.
	*
	* @param vocabularyId the primary key for the new asset vocabulary
	* @return the new asset vocabulary
	*/
	@Override
	public com.liferay.portlet.asset.model.AssetVocabulary createAssetVocabulary(
		long vocabularyId) {
		return _assetVocabularyLocalService.createAssetVocabulary(vocabularyId);
	}

	/**
	* Deletes the asset vocabulary with the primary key from the database. Also notifies the appropriate model listeners.
	*
	* @param vocabularyId the primary key of the asset vocabulary
	* @return the asset vocabulary that was removed
	* @throws PortalException if a asset vocabulary with the primary key could not be found
	* @throws SystemException if a system exception occurred
	*/
	@Override
	public com.liferay.portlet.asset.model.AssetVocabulary deleteAssetVocabulary(
		long vocabularyId)
		throws com.liferay.portal.kernel.exception.PortalException,
			com.liferay.portal.kernel.exception.SystemException {
		return _assetVocabularyLocalService.deleteAssetVocabulary(vocabularyId);
	}

	/**
	* Deletes the asset vocabulary from the database. Also notifies the appropriate model listeners.
	*
	* @param assetVocabulary the asset vocabulary
	* @return the asset vocabulary that was removed
	* @throws SystemException if a system exception occurred
	*/
	@Override
	public com.liferay.portlet.asset.model.AssetVocabulary deleteAssetVocabulary(
		com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
		throws com.liferay.portal.kernel.exception.SystemException {
		return _assetVocabularyLocalService.deleteAssetVocabulary(assetVocabulary);
	}

	@Override
	public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
		return _assetVocabularyLocalService.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
	*/
	@Override
	@SuppressWarnings("rawtypes")
	public java.util.List dynamicQuery(
		com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
		throws com.liferay.portal.kernel.exception.SystemException {
		return _assetVocabularyLocalService.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.portlet.asset.model.impl.AssetVocabularyModelImpl}. 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 */ @Override @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 { return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start, 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.portlet.asset.model.impl.AssetVocabularyModelImpl}. 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 */ @Override @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 { return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start, end, orderByComparator); } /** * 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 */ @Override public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.dynamicQueryCount(dynamicQuery); } /** * 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 */ @Override 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 { return _assetVocabularyLocalService.dynamicQueryCount(dynamicQuery, projection); } @Override public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabulary( long vocabularyId) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.fetchAssetVocabulary(vocabularyId); } /** * Returns the asset vocabulary with the matching UUID and company. * * @param uuid the asset vocabulary's UUID * @param companyId the primary key of the company * @return the matching asset vocabulary, or null if a matching asset vocabulary could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabularyByUuidAndCompanyId( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.fetchAssetVocabularyByUuidAndCompanyId(uuid, companyId); } /** * Returns the asset vocabulary matching the UUID and group. * * @param uuid the asset vocabulary's UUID * @param groupId the primary key of the group * @return the matching asset vocabulary, or null if a matching asset vocabulary could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabularyByUuidAndGroupId( java.lang.String uuid, long groupId) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.fetchAssetVocabularyByUuidAndGroupId(uuid, groupId); } /** * Returns the asset vocabulary with the primary key. * * @param vocabularyId the primary key of the asset vocabulary * @return the asset vocabulary * @throws PortalException if a asset vocabulary with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabulary( long vocabularyId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getAssetVocabulary(vocabularyId); } @Override public com.liferay.portal.model.PersistedModel getPersistedModel( java.io.Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getPersistedModel(primaryKeyObj); } /** * Returns the asset vocabulary with the matching UUID and company. * * @param uuid the asset vocabulary's UUID * @param companyId the primary key of the company * @return the matching asset vocabulary * @throws PortalException if a matching asset vocabulary could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabularyByUuidAndCompanyId( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getAssetVocabularyByUuidAndCompanyId(uuid, companyId); } /** * Returns the asset vocabulary matching the UUID and group. * * @param uuid the asset vocabulary's UUID * @param groupId the primary key of the group * @return the matching asset vocabulary * @throws PortalException if a matching asset vocabulary could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabularyByUuidAndGroupId( java.lang.String uuid, long groupId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getAssetVocabularyByUuidAndGroupId(uuid, groupId); } /** * Returns a range of all the asset vocabularies. * *

* 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.portlet.asset.model.impl.AssetVocabularyModelImpl}. 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 asset vocabularies * @param end the upper bound of the range of asset vocabularies (not inclusive) * @return the range of asset vocabularies * @throws SystemException if a system exception occurred */ @Override public java.util.List getAssetVocabularies( int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getAssetVocabularies(start, end); } /** * Returns the number of asset vocabularies. * * @return the number of asset vocabularies * @throws SystemException if a system exception occurred */ @Override public int getAssetVocabulariesCount() throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getAssetVocabulariesCount(); } /** * Updates the asset vocabulary in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. * * @param assetVocabulary the asset vocabulary * @return the asset vocabulary that was updated * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.asset.model.AssetVocabulary updateAssetVocabulary( com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.updateAssetVocabulary(assetVocabulary); } /** * Returns the Spring bean ID for this bean. * * @return the Spring bean ID for this bean */ @Override public java.lang.String getBeanIdentifier() { return _assetVocabularyLocalService.getBeanIdentifier(); } /** * Sets the Spring bean ID for this bean. * * @param beanIdentifier the Spring bean ID for this bean */ @Override public void setBeanIdentifier(java.lang.String beanIdentifier) { _assetVocabularyLocalService.setBeanIdentifier(beanIdentifier); } @Override public com.liferay.portlet.asset.model.AssetVocabulary addDefaultVocabulary( long groupId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.addDefaultVocabulary(groupId); } /** * @deprecated As of 6.1.0 */ @Override public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary( long userId, java.util.Map titleMap, java.util.Map descriptionMap, java.lang.String settings, com.liferay.portal.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.addVocabulary(userId, titleMap, descriptionMap, settings, serviceContext); } @Override public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary( long userId, java.lang.String title, java.util.Map titleMap, java.util.Map descriptionMap, java.lang.String settings, com.liferay.portal.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.addVocabulary(userId, title, titleMap, descriptionMap, settings, serviceContext); } @Override public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary( long userId, java.lang.String title, com.liferay.portal.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.addVocabulary(userId, title, serviceContext); } @Override public void addVocabularyResources( com.liferay.portlet.asset.model.AssetVocabulary vocabulary, boolean addGroupPermissions, boolean addGuestPermissions) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _assetVocabularyLocalService.addVocabularyResources(vocabulary, addGroupPermissions, addGuestPermissions); } @Override public void addVocabularyResources( com.liferay.portlet.asset.model.AssetVocabulary vocabulary, java.lang.String[] groupPermissions, java.lang.String[] guestPermissions) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _assetVocabularyLocalService.addVocabularyResources(vocabulary, groupPermissions, guestPermissions); } @Override public void deleteVocabularies(long groupId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _assetVocabularyLocalService.deleteVocabularies(groupId); } @Override public void deleteVocabulary( com.liferay.portlet.asset.model.AssetVocabulary vocabulary) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _assetVocabularyLocalService.deleteVocabulary(vocabulary); } @Override public void deleteVocabulary(long vocabularyId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _assetVocabularyLocalService.deleteVocabulary(vocabularyId); } @Override public java.util.List getCompanyVocabularies( long companyId) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getCompanyVocabularies(companyId); } @Override public java.util.List getGroupsVocabularies( long[] groupIds) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getGroupsVocabularies(groupIds); } @Override public java.util.List getGroupsVocabularies( long[] groupIds, java.lang.String className) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getGroupsVocabularies(groupIds, className); } @Override public java.util.List getGroupVocabularies( long groupId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getGroupVocabularies(groupId); } @Override public java.util.List getGroupVocabularies( long groupId, boolean addDefaultVocabulary) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getGroupVocabularies(groupId, addDefaultVocabulary); } @Override public java.util.List getGroupVocabularies( long groupId, java.lang.String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc) throws com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getGroupVocabularies(groupId, name, start, end, obc); } @Override public com.liferay.portlet.asset.model.AssetVocabulary getGroupVocabulary( long groupId, java.lang.String name) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getGroupVocabulary(groupId, name); } @Override public java.util.List getVocabularies( long[] vocabularyIds) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getVocabularies(vocabularyIds); } @Override public com.liferay.portlet.asset.model.AssetVocabulary getVocabulary( long vocabularyId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.getVocabulary(vocabularyId); } /** * @deprecated As of 6.1.0 */ @Override public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary( long vocabularyId, java.util.Map titleMap, java.util.Map descriptionMap, java.lang.String settings, com.liferay.portal.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.updateVocabulary(vocabularyId, titleMap, descriptionMap, settings, serviceContext); } @Override public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary( long vocabularyId, java.lang.String title, java.util.Map titleMap, java.util.Map descriptionMap, java.lang.String settings, com.liferay.portal.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _assetVocabularyLocalService.updateVocabulary(vocabularyId, title, titleMap, descriptionMap, settings, serviceContext); } /** * @deprecated As of 6.1.0, replaced by {@link #getWrappedService} */ public AssetVocabularyLocalService getWrappedAssetVocabularyLocalService() { return _assetVocabularyLocalService; } /** * @deprecated As of 6.1.0, replaced by {@link #setWrappedService} */ public void setWrappedAssetVocabularyLocalService( AssetVocabularyLocalService assetVocabularyLocalService) { _assetVocabularyLocalService = assetVocabularyLocalService; } @Override public AssetVocabularyLocalService getWrappedService() { return _assetVocabularyLocalService; } @Override public void setWrappedService( AssetVocabularyLocalService assetVocabularyLocalService) { _assetVocabularyLocalService = assetVocabularyLocalService; } private AssetVocabularyLocalService _assetVocabularyLocalService; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy