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

com.liferay.calendar.service.CalendarResourceLocalServiceWrapper Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * 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.calendar.service;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.service.ServiceWrapper;

/**
 * Provides a wrapper for {@link CalendarResourceLocalService}.
 *
 * @author Eduardo Lundgren
 * @see CalendarResourceLocalService
 * @generated
 */
@ProviderType
public class CalendarResourceLocalServiceWrapper
	implements CalendarResourceLocalService,
			   ServiceWrapper {

	public CalendarResourceLocalServiceWrapper(
		CalendarResourceLocalService calendarResourceLocalService) {

		_calendarResourceLocalService = calendarResourceLocalService;
	}

	/**
	 * Adds the calendar resource to the database. Also notifies the appropriate model listeners.
	 *
	 * @param calendarResource the calendar resource
	 * @return the calendar resource that was added
	 */
	@Override
	public com.liferay.calendar.model.CalendarResource addCalendarResource(
		com.liferay.calendar.model.CalendarResource calendarResource) {

		return _calendarResourceLocalService.addCalendarResource(
			calendarResource);
	}

	@Override
	public com.liferay.calendar.model.CalendarResource addCalendarResource(
			long userId, long groupId, long classNameId, long classPK,
			String classUuid, String code,
			java.util.Map nameMap,
			java.util.Map descriptionMap,
			boolean active,
			com.liferay.portal.kernel.service.ServiceContext serviceContext)
		throws com.liferay.portal.kernel.exception.PortalException {

		return _calendarResourceLocalService.addCalendarResource(
			userId, groupId, classNameId, classPK, classUuid, code, nameMap,
			descriptionMap, active, serviceContext);
	}

	/**
	 * Creates a new calendar resource with the primary key. Does not add the calendar resource to the database.
	 *
	 * @param calendarResourceId the primary key for the new calendar resource
	 * @return the new calendar resource
	 */
	@Override
	public com.liferay.calendar.model.CalendarResource createCalendarResource(
		long calendarResourceId) {

		return _calendarResourceLocalService.createCalendarResource(
			calendarResourceId);
	}

	/**
	 * Deletes the calendar resource from the database. Also notifies the appropriate model listeners.
	 *
	 * @param calendarResource the calendar resource
	 * @return the calendar resource that was removed
	 * @throws PortalException
	 */
	@Override
	public com.liferay.calendar.model.CalendarResource deleteCalendarResource(
			com.liferay.calendar.model.CalendarResource calendarResource)
		throws com.liferay.portal.kernel.exception.PortalException {

		return _calendarResourceLocalService.deleteCalendarResource(
			calendarResource);
	}

	/**
	 * Deletes the calendar resource with the primary key from the database. Also notifies the appropriate model listeners.
	 *
	 * @param calendarResourceId the primary key of the calendar resource
	 * @return the calendar resource that was removed
	 * @throws PortalException if a calendar resource with the primary key could not be found
	 */
	@Override
	public com.liferay.calendar.model.CalendarResource deleteCalendarResource(
			long calendarResourceId)
		throws com.liferay.portal.kernel.exception.PortalException {

		return _calendarResourceLocalService.deleteCalendarResource(
			calendarResourceId);
	}

	@Override
	public void deleteCalendarResources(long groupId)
		throws com.liferay.portal.kernel.exception.PortalException {

		_calendarResourceLocalService.deleteCalendarResources(groupId);
	}

	/**
	 * @throws PortalException
	 */
	@Override
	public com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(
			com.liferay.portal.kernel.model.PersistedModel persistedModel)
		throws com.liferay.portal.kernel.exception.PortalException {

		return _calendarResourceLocalService.deletePersistedModel(
			persistedModel);
	}

	@Override
	public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
		return _calendarResourceLocalService.dynamicQuery();
	}

	/**
	 * Performs a dynamic query on the database and returns the matching rows.
	 *
	 * @param dynamicQuery the dynamic query
	 * @return the matching rows
	 */
	@Override
	public  java.util.List dynamicQuery(
		com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {

		return _calendarResourceLocalService.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 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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from com.liferay.calendar.model.impl.CalendarResourceModelImpl. 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 */ @Override public java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) { return _calendarResourceLocalService.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 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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from com.liferay.calendar.model.impl.CalendarResourceModelImpl. 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 */ @Override public java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) { return _calendarResourceLocalService.dynamicQuery( dynamicQuery, start, end, orderByComparator); } /** * Returns the number of rows matching the dynamic query. * * @param dynamicQuery the dynamic query * @return the number of rows matching the dynamic query */ @Override public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) { return _calendarResourceLocalService.dynamicQueryCount(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 */ @Override public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) { return _calendarResourceLocalService.dynamicQueryCount( dynamicQuery, projection); } @Override public com.liferay.calendar.model.CalendarResource fetchCalendarResource( long calendarResourceId) { return _calendarResourceLocalService.fetchCalendarResource( calendarResourceId); } @Override public com.liferay.calendar.model.CalendarResource fetchCalendarResource( long classNameId, long classPK) { return _calendarResourceLocalService.fetchCalendarResource( classNameId, classPK); } @Override public com.liferay.calendar.model.CalendarResource fetchCalendarResource( long groupId, String code) { return _calendarResourceLocalService.fetchCalendarResource( groupId, code); } /** * Returns the calendar resource matching the UUID and group. * * @param uuid the calendar resource's UUID * @param groupId the primary key of the group * @return the matching calendar resource, or null if a matching calendar resource could not be found */ @Override public com.liferay.calendar.model.CalendarResource fetchCalendarResourceByUuidAndGroupId(String uuid, long groupId) { return _calendarResourceLocalService. fetchCalendarResourceByUuidAndGroupId(uuid, groupId); } @Override public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() { return _calendarResourceLocalService.getActionableDynamicQuery(); } /** * Returns the calendar resource with the primary key. * * @param calendarResourceId the primary key of the calendar resource * @return the calendar resource * @throws PortalException if a calendar resource with the primary key could not be found */ @Override public com.liferay.calendar.model.CalendarResource getCalendarResource( long calendarResourceId) throws com.liferay.portal.kernel.exception.PortalException { return _calendarResourceLocalService.getCalendarResource( calendarResourceId); } /** * Returns the calendar resource matching the UUID and group. * * @param uuid the calendar resource's UUID * @param groupId the primary key of the group * @return the matching calendar resource * @throws PortalException if a matching calendar resource could not be found */ @Override public com.liferay.calendar.model.CalendarResource getCalendarResourceByUuidAndGroupId(String uuid, long groupId) throws com.liferay.portal.kernel.exception.PortalException { return _calendarResourceLocalService. getCalendarResourceByUuidAndGroupId(uuid, groupId); } /** * Returns a range of all the calendar resources. * *

* 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 and pagination is required (start and end are not com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from com.liferay.calendar.model.impl.CalendarResourceModelImpl. 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 calendar resources * @param end the upper bound of the range of calendar resources (not inclusive) * @return the range of calendar resources */ @Override public java.util.List getCalendarResources(int start, int end) { return _calendarResourceLocalService.getCalendarResources(start, end); } @Override public java.util.List getCalendarResources(long groupId) { return _calendarResourceLocalService.getCalendarResources(groupId); } /** * Returns all the calendar resources matching the UUID and company. * * @param uuid the UUID of the calendar resources * @param companyId the primary key of the company * @return the matching calendar resources, or an empty list if no matches were found */ @Override public java.util.List getCalendarResourcesByUuidAndCompanyId(String uuid, long companyId) { return _calendarResourceLocalService. getCalendarResourcesByUuidAndCompanyId(uuid, companyId); } /** * Returns a range of calendar resources matching the UUID and company. * * @param uuid the UUID of the calendar resources * @param companyId the primary key of the company * @param start the lower bound of the range of calendar resources * @param end the upper bound of the range of calendar resources (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the range of matching calendar resources, or an empty list if no matches were found */ @Override public java.util.List getCalendarResourcesByUuidAndCompanyId( String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) { return _calendarResourceLocalService. getCalendarResourcesByUuidAndCompanyId( uuid, companyId, start, end, orderByComparator); } /** * Returns the number of calendar resources. * * @return the number of calendar resources */ @Override public int getCalendarResourcesCount() { return _calendarResourceLocalService.getCalendarResourcesCount(); } @Override public com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery getExportActionableDynamicQuery( com.liferay.exportimport.kernel.lar.PortletDataContext portletDataContext) { return _calendarResourceLocalService.getExportActionableDynamicQuery( portletDataContext); } @Override public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery() { return _calendarResourceLocalService. getIndexableActionableDynamicQuery(); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ @Override public String getOSGiServiceIdentifier() { return _calendarResourceLocalService.getOSGiServiceIdentifier(); } @Override public com.liferay.portal.kernel.model.PersistedModel getPersistedModel( java.io.Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException { return _calendarResourceLocalService.getPersistedModel(primaryKeyObj); } @Override public java.util.List search( long companyId, long[] groupIds, long[] classNameIds, String code, String name, String description, boolean active, boolean andOperator, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) { return _calendarResourceLocalService.search( companyId, groupIds, classNameIds, code, name, description, active, andOperator, start, end, orderByComparator); } @Override public java.util.List searchByKeywords( long companyId, long[] groupIds, long[] classNameIds, String keywords, boolean active, boolean andOperator, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) { return _calendarResourceLocalService.searchByKeywords( companyId, groupIds, classNameIds, keywords, active, andOperator, start, end, orderByComparator); } @Override public int searchCount( long companyId, long[] groupIds, long[] classNameIds, String keywords, boolean active) { return _calendarResourceLocalService.searchCount( companyId, groupIds, classNameIds, keywords, active); } @Override public int searchCount( long companyId, long[] groupIds, long[] classNameIds, String code, String name, String description, boolean active, boolean andOperator) { return _calendarResourceLocalService.searchCount( companyId, groupIds, classNameIds, code, name, description, active, andOperator); } @Override public void updateAsset( long userId, com.liferay.calendar.model.CalendarResource calendarResource, long[] assetCategoryIds, String[] assetTagNames, Double priority) throws com.liferay.portal.kernel.exception.PortalException { _calendarResourceLocalService.updateAsset( userId, calendarResource, assetCategoryIds, assetTagNames, priority); } /** * Updates the calendar resource in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. * * @param calendarResource the calendar resource * @return the calendar resource that was updated */ @Override public com.liferay.calendar.model.CalendarResource updateCalendarResource( com.liferay.calendar.model.CalendarResource calendarResource) { return _calendarResourceLocalService.updateCalendarResource( calendarResource); } @Override public com.liferay.calendar.model.CalendarResource updateCalendarResource( long calendarResourceId, java.util.Map nameMap, java.util.Map descriptionMap, boolean active, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { return _calendarResourceLocalService.updateCalendarResource( calendarResourceId, nameMap, descriptionMap, active, serviceContext); } @Override public CalendarResourceLocalService getWrappedService() { return _calendarResourceLocalService; } @Override public void setWrappedService( CalendarResourceLocalService calendarResourceLocalService) { _calendarResourceLocalService = calendarResourceLocalService; } private CalendarResourceLocalService _calendarResourceLocalService; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy