/** * 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.knowledgebase.service.base; import com.liferay.knowledgebase.model.KBComment; import com.liferay.knowledgebase.service.KBCommentLocalService; import com.liferay.knowledgebase.service.persistence.KBArticleFinder; import com.liferay.knowledgebase.service.persistence.KBArticlePersistence; import com.liferay.knowledgebase.service.persistence.KBCommentPersistence; import com.liferay.knowledgebase.service.persistence.KBFolderPersistence; import com.liferay.knowledgebase.service.persistence.KBTemplatePersistence; import com.liferay.portal.kernel.bean.BeanReference; import com.liferay.portal.kernel.bean.IdentifiableBean; 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.search.Indexable; import com.liferay.portal.kernel.search.IndexableType; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.model.PersistedModel; import com.liferay.portal.service.BaseLocalServiceImpl; import com.liferay.portal.service.PersistedModelLocalServiceRegistryUtil; import com.liferay.portal.service.persistence.ClassNamePersistence; import com.liferay.portal.service.persistence.PortletPreferencesPersistence; import com.liferay.portal.service.persistence.UserPersistence; import com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence; import com.liferay.portlet.social.service.persistence.SocialActivityPersistence; import java.io.Serializable; import java.util.List; import javax.sql.DataSource; /** * Provides the base implementation for the k b comment 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.knowledgebase.service.impl.KBCommentLocalServiceImpl}. * </p> * * @author Brian Wing Shun Chan * @see com.liferay.knowledgebase.service.impl.KBCommentLocalServiceImpl * @see com.liferay.knowledgebase.service.KBCommentLocalServiceUtil * @generated */ public abstract class KBCommentLocalServiceBaseImpl extends BaseLocalServiceImpl implements KBCommentLocalService, IdentifiableBean { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link com.liferay.knowledgebase.service.KBCommentLocalServiceUtil} to access the k b comment local service. */ /** * Adds the k b comment to the database. Also notifies the appropriate model listeners. * * @param kbComment the k b comment * @return the k b comment that was added * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.REINDEX) @Override public KBComment addKBComment(KBComment kbComment) throws SystemException { kbComment.setNew(true); return kbCommentPersistence.update(kbComment); } /** * Creates a new k b comment with the primary key. Does not add the k b comment to the database. * * @param kbCommentId the primary key for the new k b comment * @return the new k b comment */ @Override public KBComment createKBComment(long kbCommentId) { return kbCommentPersistence.create(kbCommentId); } /** * Deletes the k b comment with the primary key from the database. Also notifies the appropriate model listeners. * * @param kbCommentId the primary key of the k b comment * @return the k b comment that was removed * @throws PortalException if a k b comment with the primary key could not be found * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.DELETE) @Override public KBComment deleteKBComment(long kbCommentId) throws PortalException, SystemException { return kbCommentPersistence.remove(kbCommentId); } /** * Deletes the k b comment from the database. Also notifies the appropriate model listeners. * * @param kbComment the k b comment * @return the k b comment that was removed * @throws PortalException * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.DELETE) @Override public KBComment deleteKBComment(KBComment kbComment) throws PortalException, SystemException { return kbCommentPersistence.remove(kbComment); } @Override public DynamicQuery dynamicQuery() { Class<?> clazz = getClass(); return DynamicQueryFactoryUtil.forClass(KBComment.class, clazz.getClassLoader()); } /** * 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 List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException { return kbCommentPersistence.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.knowledgebase.model.impl.KBCommentModelImpl}. 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 * @throws SystemException if a system exception occurred */ @Override @SuppressWarnings("rawtypes") public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException { return kbCommentPersistence.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.knowledgebase.model.impl.KBCommentModelImpl}. 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 * @throws SystemException if a system exception occurred */ @Override @SuppressWarnings("rawtypes") public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException { return kbCommentPersistence.findWithDynamicQuery(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(DynamicQuery dynamicQuery) throws SystemException { return kbCommentPersistence.countWithDynamicQuery(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(DynamicQuery dynamicQuery, Projection projection) throws SystemException { return kbCommentPersistence.countWithDynamicQuery(dynamicQuery, projection); } @Override public KBComment fetchKBComment(long kbCommentId) throws SystemException { return kbCommentPersistence.fetchByPrimaryKey(kbCommentId); } /** * Returns the k b comment with the matching UUID and company. * * @param uuid the k b comment's UUID * @param companyId the primary key of the company * @return the matching k b comment, or <code>null</code> if a matching k b comment could not be found * @throws SystemException if a system exception occurred */ @Override public KBComment fetchKBCommentByUuidAndCompanyId(String uuid, long companyId) throws SystemException { return kbCommentPersistence.fetchByUuid_C_First(uuid, companyId, null); } /** * Returns the k b comment matching the UUID and group. * * @param uuid the k b comment's UUID * @param groupId the primary key of the group * @return the matching k b comment, or <code>null</code> if a matching k b comment could not be found * @throws SystemException if a system exception occurred */ @Override public KBComment fetchKBCommentByUuidAndGroupId(String uuid, long groupId) throws SystemException { return kbCommentPersistence.fetchByUUID_G(uuid, groupId); } /** * Returns the k b comment with the primary key. * * @param kbCommentId the primary key of the k b comment * @return the k b comment * @throws PortalException if a k b comment with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public KBComment getKBComment(long kbCommentId) throws PortalException, SystemException { return kbCommentPersistence.findByPrimaryKey(kbCommentId); } @Override public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException, SystemException { return kbCommentPersistence.findByPrimaryKey(primaryKeyObj); } /** * Returns the k b comment with the matching UUID and company. * * @param uuid the k b comment's UUID * @param companyId the primary key of the company * @return the matching k b comment * @throws PortalException if a matching k b comment could not be found * @throws SystemException if a system exception occurred */ @Override public KBComment getKBCommentByUuidAndCompanyId(String uuid, long companyId) throws PortalException, SystemException { return kbCommentPersistence.findByUuid_C_First(uuid, companyId, null); } /** * Returns the k b comment matching the UUID and group. * * @param uuid the k b comment's UUID * @param groupId the primary key of the group * @return the matching k b comment * @throws PortalException if a matching k b comment could not be found * @throws SystemException if a system exception occurred */ @Override public KBComment getKBCommentByUuidAndGroupId(String uuid, long groupId) throws PortalException, SystemException { return kbCommentPersistence.findByUUID_G(uuid, groupId); } /** * Returns a range of all the k b comments. * * <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.knowledgebase.model.impl.KBCommentModelImpl}. 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 k b comments * @param end the upper bound of the range of k b comments (not inclusive) * @return the range of k b comments * @throws SystemException if a system exception occurred */ @Override public List<KBComment> getKBComments(int start, int end) throws SystemException { return kbCommentPersistence.findAll(start, end); } /** * Returns the number of k b comments. * * @return the number of k b comments * @throws SystemException if a system exception occurred */ @Override public int getKBCommentsCount() throws SystemException { return kbCommentPersistence.countAll(); } /** * Updates the k b comment in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. * * @param kbComment the k b comment * @return the k b comment that was updated * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.REINDEX) @Override public KBComment updateKBComment(KBComment kbComment) throws SystemException { return kbCommentPersistence.update(kbComment); } /** * Returns the k b article local service. * * @return the k b article local service */ public com.liferay.knowledgebase.service.KBArticleLocalService getKBArticleLocalService() { return kbArticleLocalService; } /** * Sets the k b article local service. * * @param kbArticleLocalService the k b article local service */ public void setKBArticleLocalService( com.liferay.knowledgebase.service.KBArticleLocalService kbArticleLocalService) { this.kbArticleLocalService = kbArticleLocalService; } /** * Returns the k b article remote service. * * @return the k b article remote service */ public com.liferay.knowledgebase.service.KBArticleService getKBArticleService() { return kbArticleService; } /** * Sets the k b article remote service. * * @param kbArticleService the k b article remote service */ public void setKBArticleService( com.liferay.knowledgebase.service.KBArticleService kbArticleService) { this.kbArticleService = kbArticleService; } /** * Returns the k b article persistence. * * @return the k b article persistence */ public KBArticlePersistence getKBArticlePersistence() { return kbArticlePersistence; } /** * Sets the k b article persistence. * * @param kbArticlePersistence the k b article persistence */ public void setKBArticlePersistence( KBArticlePersistence kbArticlePersistence) { this.kbArticlePersistence = kbArticlePersistence; } /** * Returns the k b article finder. * * @return the k b article finder */ public KBArticleFinder getKBArticleFinder() { return kbArticleFinder; } /** * Sets the k b article finder. * * @param kbArticleFinder the k b article finder */ public void setKBArticleFinder(KBArticleFinder kbArticleFinder) { this.kbArticleFinder = kbArticleFinder; } /** * Returns the k b comment local service. * * @return the k b comment local service */ public com.liferay.knowledgebase.service.KBCommentLocalService getKBCommentLocalService() { return kbCommentLocalService; } /** * Sets the k b comment local service. * * @param kbCommentLocalService the k b comment local service */ public void setKBCommentLocalService( com.liferay.knowledgebase.service.KBCommentLocalService kbCommentLocalService) { this.kbCommentLocalService = kbCommentLocalService; } /** * Returns the k b comment remote service. * * @return the k b comment remote service */ public com.liferay.knowledgebase.service.KBCommentService getKBCommentService() { return kbCommentService; } /** * Sets the k b comment remote service. * * @param kbCommentService the k b comment remote service */ public void setKBCommentService( com.liferay.knowledgebase.service.KBCommentService kbCommentService) { this.kbCommentService = kbCommentService; } /** * Returns the k b comment persistence. * * @return the k b comment persistence */ public KBCommentPersistence getKBCommentPersistence() { return kbCommentPersistence; } /** * Sets the k b comment persistence. * * @param kbCommentPersistence the k b comment persistence */ public void setKBCommentPersistence( KBCommentPersistence kbCommentPersistence) { this.kbCommentPersistence = kbCommentPersistence; } /** * Returns the k b folder local service. * * @return the k b folder local service */ public com.liferay.knowledgebase.service.KBFolderLocalService getKBFolderLocalService() { return kbFolderLocalService; } /** * Sets the k b folder local service. * * @param kbFolderLocalService the k b folder local service */ public void setKBFolderLocalService( com.liferay.knowledgebase.service.KBFolderLocalService kbFolderLocalService) { this.kbFolderLocalService = kbFolderLocalService; } /** * Returns the k b folder remote service. * * @return the k b folder remote service */ public com.liferay.knowledgebase.service.KBFolderService getKBFolderService() { return kbFolderService; } /** * Sets the k b folder remote service. * * @param kbFolderService the k b folder remote service */ public void setKBFolderService( com.liferay.knowledgebase.service.KBFolderService kbFolderService) { this.kbFolderService = kbFolderService; } /** * Returns the k b folder persistence. * * @return the k b folder persistence */ public KBFolderPersistence getKBFolderPersistence() { return kbFolderPersistence; } /** * Sets the k b folder persistence. * * @param kbFolderPersistence the k b folder persistence */ public void setKBFolderPersistence(KBFolderPersistence kbFolderPersistence) { this.kbFolderPersistence = kbFolderPersistence; } /** * Returns the k b template local service. * * @return the k b template local service */ public com.liferay.knowledgebase.service.KBTemplateLocalService getKBTemplateLocalService() { return kbTemplateLocalService; } /** * Sets the k b template local service. * * @param kbTemplateLocalService the k b template local service */ public void setKBTemplateLocalService( com.liferay.knowledgebase.service.KBTemplateLocalService kbTemplateLocalService) { this.kbTemplateLocalService = kbTemplateLocalService; } /** * Returns the k b template remote service. * * @return the k b template remote service */ public com.liferay.knowledgebase.service.KBTemplateService getKBTemplateService() { return kbTemplateService; } /** * Sets the k b template remote service. * * @param kbTemplateService the k b template remote service */ public void setKBTemplateService( com.liferay.knowledgebase.service.KBTemplateService kbTemplateService) { this.kbTemplateService = kbTemplateService; } /** * Returns the k b template persistence. * * @return the k b template persistence */ public KBTemplatePersistence getKBTemplatePersistence() { return kbTemplatePersistence; } /** * Sets the k b template persistence. * * @param kbTemplatePersistence the k b template persistence */ public void setKBTemplatePersistence( KBTemplatePersistence kbTemplatePersistence) { this.kbTemplatePersistence = kbTemplatePersistence; } /** * Returns the counter local service. * * @return the counter local service */ public com.liferay.counter.service.CounterLocalService getCounterLocalService() { return counterLocalService; } /** * Sets the counter local service. * * @param counterLocalService the counter local service */ public void setCounterLocalService( com.liferay.counter.service.CounterLocalService counterLocalService) { this.counterLocalService = counterLocalService; } /** * Returns the class name local service. * * @return the class name local service */ public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() { return classNameLocalService; } /** * Sets the class name local service. * * @param classNameLocalService the class name local service */ public void setClassNameLocalService( com.liferay.portal.service.ClassNameLocalService classNameLocalService) { this.classNameLocalService = classNameLocalService; } /** * Returns the class name remote service. * * @return the class name remote service */ public com.liferay.portal.service.ClassNameService getClassNameService() { return classNameService; } /** * Sets the class name remote service. * * @param classNameService the class name remote service */ public void setClassNameService( com.liferay.portal.service.ClassNameService classNameService) { this.classNameService = classNameService; } /** * Returns the class name persistence. * * @return the class name persistence */ public ClassNamePersistence getClassNamePersistence() { return classNamePersistence; } /** * Sets the class name persistence. * * @param classNamePersistence the class name persistence */ public void setClassNamePersistence( ClassNamePersistence classNamePersistence) { this.classNamePersistence = classNamePersistence; } /** * Returns the portlet preferences local service. * * @return the portlet preferences local service */ public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() { return portletPreferencesLocalService; } /** * Sets the portlet preferences local service. * * @param portletPreferencesLocalService the portlet preferences local service */ public void setPortletPreferencesLocalService( com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) { this.portletPreferencesLocalService = portletPreferencesLocalService; } /** * Returns the portlet preferences remote service. * * @return the portlet preferences remote service */ public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() { return portletPreferencesService; } /** * Sets the portlet preferences remote service. * * @param portletPreferencesService the portlet preferences remote service */ public void setPortletPreferencesService( com.liferay.portal.service.PortletPreferencesService portletPreferencesService) { this.portletPreferencesService = portletPreferencesService; } /** * Returns the portlet preferences persistence. * * @return the portlet preferences persistence */ public PortletPreferencesPersistence getPortletPreferencesPersistence() { return portletPreferencesPersistence; } /** * Sets the portlet preferences persistence. * * @param portletPreferencesPersistence the portlet preferences persistence */ public void setPortletPreferencesPersistence( PortletPreferencesPersistence portletPreferencesPersistence) { this.portletPreferencesPersistence = portletPreferencesPersistence; } /** * Returns the resource local service. * * @return the resource local service */ public com.liferay.portal.service.ResourceLocalService getResourceLocalService() { return resourceLocalService; } /** * Sets the resource local service. * * @param resourceLocalService the resource local service */ public void setResourceLocalService( com.liferay.portal.service.ResourceLocalService resourceLocalService) { this.resourceLocalService = resourceLocalService; } /** * Returns the user local service. * * @return the user local service */ public com.liferay.portal.service.UserLocalService getUserLocalService() { return userLocalService; } /** * Sets the user local service. * * @param userLocalService the user local service */ public void setUserLocalService( com.liferay.portal.service.UserLocalService userLocalService) { this.userLocalService = userLocalService; } /** * Returns the user remote service. * * @return the user remote service */ public com.liferay.portal.service.UserService getUserService() { return userService; } /** * Sets the user remote service. * * @param userService the user remote service */ public void setUserService( com.liferay.portal.service.UserService userService) { this.userService = userService; } /** * Returns the user persistence. * * @return the user persistence */ public UserPersistence getUserPersistence() { return userPersistence; } /** * Sets the user persistence. * * @param userPersistence the user persistence */ public void setUserPersistence(UserPersistence userPersistence) { this.userPersistence = userPersistence; } /** * Returns the ratings entry local service. * * @return the ratings entry local service */ public com.liferay.portlet.ratings.service.RatingsEntryLocalService getRatingsEntryLocalService() { return ratingsEntryLocalService; } /** * Sets the ratings entry local service. * * @param ratingsEntryLocalService the ratings entry local service */ public void setRatingsEntryLocalService( com.liferay.portlet.ratings.service.RatingsEntryLocalService ratingsEntryLocalService) { this.ratingsEntryLocalService = ratingsEntryLocalService; } /** * Returns the ratings entry remote service. * * @return the ratings entry remote service */ public com.liferay.portlet.ratings.service.RatingsEntryService getRatingsEntryService() { return ratingsEntryService; } /** * Sets the ratings entry remote service. * * @param ratingsEntryService the ratings entry remote service */ public void setRatingsEntryService( com.liferay.portlet.ratings.service.RatingsEntryService ratingsEntryService) { this.ratingsEntryService = ratingsEntryService; } /** * Returns the ratings entry persistence. * * @return the ratings entry persistence */ public RatingsEntryPersistence getRatingsEntryPersistence() { return ratingsEntryPersistence; } /** * Sets the ratings entry persistence. * * @param ratingsEntryPersistence the ratings entry persistence */ public void setRatingsEntryPersistence( RatingsEntryPersistence ratingsEntryPersistence) { this.ratingsEntryPersistence = ratingsEntryPersistence; } /** * Returns the social activity local service. * * @return the social activity local service */ public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() { return socialActivityLocalService; } /** * Sets the social activity local service. * * @param socialActivityLocalService the social activity local service */ public void setSocialActivityLocalService( com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) { this.socialActivityLocalService = socialActivityLocalService; } /** * Returns the social activity remote service. * * @return the social activity remote service */ public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() { return socialActivityService; } /** * Sets the social activity remote service. * * @param socialActivityService the social activity remote service */ public void setSocialActivityService( com.liferay.portlet.social.service.SocialActivityService socialActivityService) { this.socialActivityService = socialActivityService; } /** * Returns the social activity persistence. * * @return the social activity persistence */ public SocialActivityPersistence getSocialActivityPersistence() { return socialActivityPersistence; } /** * Sets the social activity persistence. * * @param socialActivityPersistence the social activity persistence */ public void setSocialActivityPersistence( SocialActivityPersistence socialActivityPersistence) { this.socialActivityPersistence = socialActivityPersistence; } public void afterPropertiesSet() { Class<?> clazz = getClass(); _classLoader = clazz.getClassLoader(); PersistedModelLocalServiceRegistryUtil.register("com.liferay.knowledgebase.model.KBComment", kbCommentLocalService); } public void destroy() { PersistedModelLocalServiceRegistryUtil.unregister( "com.liferay.knowledgebase.model.KBComment"); } /** * Returns the Spring bean ID for this bean. * * @return the Spring bean ID for this bean */ @Override public String getBeanIdentifier() { return _beanIdentifier; } /** * Sets the Spring bean ID for this bean. * * @param beanIdentifier the Spring bean ID for this bean */ @Override public void setBeanIdentifier(String beanIdentifier) { _beanIdentifier = beanIdentifier; } @Override public Object invokeMethod(String name, String[] parameterTypes, Object[] arguments) throws Throwable { Thread currentThread = Thread.currentThread(); ClassLoader contextClassLoader = currentThread.getContextClassLoader(); if (contextClassLoader != _classLoader) { currentThread.setContextClassLoader(_classLoader); } try { return _clpInvoker.invokeMethod(name, parameterTypes, arguments); } finally { if (contextClassLoader != _classLoader) { currentThread.setContextClassLoader(contextClassLoader); } } } protected Class<?> getModelClass() { return KBComment.class; } protected String getModelClassName() { return KBComment.class.getName(); } /** * Performs an SQL query. * * @param sql the sql query */ protected void runSQL(String sql) throws SystemException { try { DataSource dataSource = kbCommentPersistence.getDataSource(); SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource, sql, new int[0]); sqlUpdate.update(); } catch (Exception e) { throw new SystemException(e); } } @BeanReference(type = com.liferay.knowledgebase.service.KBArticleLocalService.class) protected com.liferay.knowledgebase.service.KBArticleLocalService kbArticleLocalService; @BeanReference(type = com.liferay.knowledgebase.service.KBArticleService.class) protected com.liferay.knowledgebase.service.KBArticleService kbArticleService; @BeanReference(type = KBArticlePersistence.class) protected KBArticlePersistence kbArticlePersistence; @BeanReference(type = KBArticleFinder.class) protected KBArticleFinder kbArticleFinder; @BeanReference(type = com.liferay.knowledgebase.service.KBCommentLocalService.class) protected com.liferay.knowledgebase.service.KBCommentLocalService kbCommentLocalService; @BeanReference(type = com.liferay.knowledgebase.service.KBCommentService.class) protected com.liferay.knowledgebase.service.KBCommentService kbCommentService; @BeanReference(type = KBCommentPersistence.class) protected KBCommentPersistence kbCommentPersistence; @BeanReference(type = com.liferay.knowledgebase.service.KBFolderLocalService.class) protected com.liferay.knowledgebase.service.KBFolderLocalService kbFolderLocalService; @BeanReference(type = com.liferay.knowledgebase.service.KBFolderService.class) protected com.liferay.knowledgebase.service.KBFolderService kbFolderService; @BeanReference(type = KBFolderPersistence.class) protected KBFolderPersistence kbFolderPersistence; @BeanReference(type = com.liferay.knowledgebase.service.KBTemplateLocalService.class) protected com.liferay.knowledgebase.service.KBTemplateLocalService kbTemplateLocalService; @BeanReference(type = com.liferay.knowledgebase.service.KBTemplateService.class) protected com.liferay.knowledgebase.service.KBTemplateService kbTemplateService; @BeanReference(type = KBTemplatePersistence.class) protected KBTemplatePersistence kbTemplatePersistence; @BeanReference(type = com.liferay.counter.service.CounterLocalService.class) protected com.liferay.counter.service.CounterLocalService counterLocalService; @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class) protected com.liferay.portal.service.ClassNameLocalService classNameLocalService; @BeanReference(type = com.liferay.portal.service.ClassNameService.class) protected com.liferay.portal.service.ClassNameService classNameService; @BeanReference(type = ClassNamePersistence.class) protected ClassNamePersistence classNamePersistence; @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class) protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService; @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class) protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService; @BeanReference(type = PortletPreferencesPersistence.class) protected PortletPreferencesPersistence portletPreferencesPersistence; @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class) protected com.liferay.portal.service.ResourceLocalService resourceLocalService; @BeanReference(type = com.liferay.portal.service.UserLocalService.class) protected com.liferay.portal.service.UserLocalService userLocalService; @BeanReference(type = com.liferay.portal.service.UserService.class) protected com.liferay.portal.service.UserService userService; @BeanReference(type = UserPersistence.class) protected UserPersistence userPersistence; @BeanReference(type = com.liferay.portlet.ratings.service.RatingsEntryLocalService.class) protected com.liferay.portlet.ratings.service.RatingsEntryLocalService ratingsEntryLocalService; @BeanReference(type = com.liferay.portlet.ratings.service.RatingsEntryService.class) protected com.liferay.portlet.ratings.service.RatingsEntryService ratingsEntryService; @BeanReference(type = RatingsEntryPersistence.class) protected RatingsEntryPersistence ratingsEntryPersistence; @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class) protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService; @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class) protected com.liferay.portlet.social.service.SocialActivityService socialActivityService; @BeanReference(type = SocialActivityPersistence.class) protected SocialActivityPersistence socialActivityPersistence; private String _beanIdentifier; private ClassLoader _classLoader; private KBCommentLocalServiceClpInvoker _clpInvoker = new KBCommentLocalServiceClpInvoker(); }