/** * 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.counter.service.base; import aQute.bnd.annotation.ProviderType; import com.liferay.counter.kernel.model.Counter; import com.liferay.counter.kernel.service.CounterLocalService; import com.liferay.counter.kernel.service.persistence.CounterFinder; import com.liferay.counter.kernel.service.persistence.CounterPersistence; import com.liferay.portal.kernel.bean.BeanReference; import com.liferay.portal.kernel.dao.db.DB; import com.liferay.portal.kernel.dao.db.DBManagerUtil; import com.liferay.portal.kernel.dao.jdbc.SqlUpdate; import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil; import com.liferay.portal.kernel.dao.orm.DynamicQuery; import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil; 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.PersistedModel; import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService; import com.liferay.portal.kernel.search.Indexable; import com.liferay.portal.kernel.search.IndexableType; import com.liferay.portal.kernel.service.BaseLocalServiceImpl; import com.liferay.portal.kernel.service.PersistedModelLocalServiceRegistry; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.kernel.util.PortalUtil; import java.io.Serializable; import java.util.List; import javax.sql.DataSource; /** * Provides the base implementation for the counter local service. * * <p> * This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.counter.service.impl.CounterLocalServiceImpl}. * </p> * * @author Brian Wing Shun Chan * @see com.liferay.counter.service.impl.CounterLocalServiceImpl * @see com.liferay.counter.kernel.service.CounterLocalServiceUtil * @generated */ @ProviderType public abstract class CounterLocalServiceBaseImpl extends BaseLocalServiceImpl implements CounterLocalService, IdentifiableOSGiService { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link com.liferay.counter.kernel.service.CounterLocalServiceUtil} to access the counter local service. */ /** * Adds the counter to the database. Also notifies the appropriate model listeners. * * @param counter the counter * @return the counter that was added */ @Indexable(type = IndexableType.REINDEX) @Override public Counter addCounter(Counter counter) { counter.setNew(true); return counterPersistence.update(counter); } /** * Creates a new counter with the primary key. Does not add the counter to the database. * * @param name the primary key for the new counter * @return the new counter */ @Override public Counter createCounter(String name) { return counterPersistence.create(name); } /** * Deletes the counter with the primary key from the database. Also notifies the appropriate model listeners. * * @param name the primary key of the counter * @return the counter that was removed * @throws PortalException if a counter with the primary key could not be found */ @Indexable(type = IndexableType.DELETE) @Override public Counter deleteCounter(String name) throws PortalException { return counterPersistence.remove(name); } /** * Deletes the counter from the database. Also notifies the appropriate model listeners. * * @param counter the counter * @return the counter that was removed */ @Indexable(type = IndexableType.DELETE) @Override public Counter deleteCounter(Counter counter) { return counterPersistence.remove(counter); } @Override public DynamicQuery dynamicQuery() { Class<?> clazz = getClass(); return DynamicQueryFactoryUtil.forClass(Counter.class, clazz.getClassLoader()); } /** * Performs a dynamic query on the database and returns the matching rows. * * @param dynamicQuery the dynamic query * @return the matching rows */ @Override public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) { return counterPersistence.findWithDynamicQuery(dynamicQuery); } /** * Performs a dynamic query on the database and returns a range of the matching rows. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> 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.counter.model.impl.CounterModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end) { return counterPersistence.findWithDynamicQuery(dynamicQuery, start, end); } /** * Performs a dynamic query on the database and returns an ordered range of the matching rows. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> 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.counter.model.impl.CounterModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @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 <code>null</code>) * @return the ordered range of matching rows */ @Override public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator) { return counterPersistence.findWithDynamicQuery(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(DynamicQuery dynamicQuery) { return counterPersistence.countWithDynamicQuery(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(DynamicQuery dynamicQuery, Projection projection) { return counterPersistence.countWithDynamicQuery(dynamicQuery, projection); } @Override public Counter fetchCounter(String name) { return counterPersistence.fetchByPrimaryKey(name); } /** * Returns the counter with the primary key. * * @param name the primary key of the counter * @return the counter * @throws PortalException if a counter with the primary key could not be found */ @Override public Counter getCounter(String name) throws PortalException { return counterPersistence.findByPrimaryKey(name); } /** * @throws PortalException */ @Override public PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException { return counterLocalService.deleteCounter((Counter)persistedModel); } @Override public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException { return counterPersistence.findByPrimaryKey(primaryKeyObj); } /** * Returns a range of all the counters. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> 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.counter.model.impl.CounterModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @param start the lower bound of the range of counters * @param end the upper bound of the range of counters (not inclusive) * @return the range of counters */ @Override public List<Counter> getCounters(int start, int end) { return counterPersistence.findAll(start, end); } /** * Returns the number of counters. * * @return the number of counters */ @Override public int getCountersCount() { return counterPersistence.countAll(); } /** * Updates the counter in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. * * @param counter the counter * @return the counter that was updated */ @Indexable(type = IndexableType.REINDEX) @Override public Counter updateCounter(Counter counter) { return counterPersistence.update(counter); } /** * Returns the counter local service. * * @return the counter local service */ public CounterLocalService getCounterLocalService() { return counterLocalService; } /** * Sets the counter local service. * * @param counterLocalService the counter local service */ public void setCounterLocalService(CounterLocalService counterLocalService) { this.counterLocalService = counterLocalService; } /** * Returns the counter persistence. * * @return the counter persistence */ public CounterPersistence getCounterPersistence() { return counterPersistence; } /** * Sets the counter persistence. * * @param counterPersistence the counter persistence */ public void setCounterPersistence(CounterPersistence counterPersistence) { this.counterPersistence = counterPersistence; } /** * Returns the counter finder. * * @return the counter finder */ public CounterFinder getCounterFinder() { return counterFinder; } /** * Sets the counter finder. * * @param counterFinder the counter finder */ public void setCounterFinder(CounterFinder counterFinder) { this.counterFinder = counterFinder; } public void afterPropertiesSet() { persistedModelLocalServiceRegistry.register("com.liferay.counter.kernel.model.Counter", counterLocalService); } public void destroy() { persistedModelLocalServiceRegistry.unregister( "com.liferay.counter.kernel.model.Counter"); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ @Override public String getOSGiServiceIdentifier() { return CounterLocalService.class.getName(); } protected Class<?> getModelClass() { return Counter.class; } protected String getModelClassName() { return Counter.class.getName(); } /** * Performs a SQL query. * * @param sql the sql query */ protected void runSQL(String sql) { try { DataSource dataSource = counterPersistence.getDataSource(); DB db = DBManagerUtil.getDB(); sql = db.buildSQL(sql); sql = PortalUtil.transformSQL(sql); SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource, sql); sqlUpdate.update(); } catch (Exception e) { throw new SystemException(e); } } @BeanReference(type = CounterLocalService.class) protected CounterLocalService counterLocalService; @BeanReference(type = CounterPersistence.class) protected CounterPersistence counterPersistence; @BeanReference(type = CounterFinder.class) protected CounterFinder counterFinder; @BeanReference(type = PersistedModelLocalServiceRegistry.class) protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry; }