/** * 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.KBTemplate; import com.liferay.knowledgebase.service.KBTemplateLocalService; 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.UserPersistence; import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence; 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 template 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.KBTemplateLocalServiceImpl}. * </p> * * @author Brian Wing Shun Chan * @see com.liferay.knowledgebase.service.impl.KBTemplateLocalServiceImpl * @see com.liferay.knowledgebase.service.KBTemplateLocalServiceUtil * @generated */ public abstract class KBTemplateLocalServiceBaseImpl extends BaseLocalServiceImpl implements KBTemplateLocalService, IdentifiableBean { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link com.liferay.knowledgebase.service.KBTemplateLocalServiceUtil} to access the k b template local service. */ /** * Adds the k b template to the database. Also notifies the appropriate model listeners. * * @param kbTemplate the k b template * @return the k b template that was added * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.REINDEX) @Override public KBTemplate addKBTemplate(KBTemplate kbTemplate) throws SystemException { kbTemplate.setNew(true); return kbTemplatePersistence.update(kbTemplate); } /** * Creates a new k b template with the primary key. Does not add the k b template to the database. * * @param kbTemplateId the primary key for the new k b template * @return the new k b template */ @Override public KBTemplate createKBTemplate(long kbTemplateId) { return kbTemplatePersistence.create(kbTemplateId); } /** * Deletes the k b template with the primary key from the database. Also notifies the appropriate model listeners. * * @param kbTemplateId the primary key of the k b template * @return the k b template that was removed * @throws PortalException if a k b template with the primary key could not be found * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.DELETE) @Override public KBTemplate deleteKBTemplate(long kbTemplateId) throws PortalException, SystemException { return kbTemplatePersistence.remove(kbTemplateId); } /** * Deletes the k b template from the database. Also notifies the appropriate model listeners. * * @param kbTemplate the k b template * @return the k b template that was removed * @throws PortalException * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.DELETE) @Override public KBTemplate deleteKBTemplate(KBTemplate kbTemplate) throws PortalException, SystemException { return kbTemplatePersistence.remove(kbTemplate); } @Override public DynamicQuery dynamicQuery() { Class<?> clazz = getClass(); return DynamicQueryFactoryUtil.forClass(KBTemplate.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 kbTemplatePersistence.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.KBTemplateModelImpl}. 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 kbTemplatePersistence.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.KBTemplateModelImpl}. 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 kbTemplatePersistence.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 kbTemplatePersistence.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 kbTemplatePersistence.countWithDynamicQuery(dynamicQuery, projection); } @Override public KBTemplate fetchKBTemplate(long kbTemplateId) throws SystemException { return kbTemplatePersistence.fetchByPrimaryKey(kbTemplateId); } /** * Returns the k b template with the matching UUID and company. * * @param uuid the k b template's UUID * @param companyId the primary key of the company * @return the matching k b template, or <code>null</code> if a matching k b template could not be found * @throws SystemException if a system exception occurred */ @Override public KBTemplate fetchKBTemplateByUuidAndCompanyId(String uuid, long companyId) throws SystemException { return kbTemplatePersistence.fetchByUuid_C_First(uuid, companyId, null); } /** * Returns the k b template matching the UUID and group. * * @param uuid the k b template's UUID * @param groupId the primary key of the group * @return the matching k b template, or <code>null</code> if a matching k b template could not be found * @throws SystemException if a system exception occurred */ @Override public KBTemplate fetchKBTemplateByUuidAndGroupId(String uuid, long groupId) throws SystemException { return kbTemplatePersistence.fetchByUUID_G(uuid, groupId); } /** * Returns the k b template with the primary key. * * @param kbTemplateId the primary key of the k b template * @return the k b template * @throws PortalException if a k b template with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public KBTemplate getKBTemplate(long kbTemplateId) throws PortalException, SystemException { return kbTemplatePersistence.findByPrimaryKey(kbTemplateId); } @Override public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException, SystemException { return kbTemplatePersistence.findByPrimaryKey(primaryKeyObj); } /** * Returns the k b template with the matching UUID and company. * * @param uuid the k b template's UUID * @param companyId the primary key of the company * @return the matching k b template * @throws PortalException if a matching k b template could not be found * @throws SystemException if a system exception occurred */ @Override public KBTemplate getKBTemplateByUuidAndCompanyId(String uuid, long companyId) throws PortalException, SystemException { return kbTemplatePersistence.findByUuid_C_First(uuid, companyId, null); } /** * Returns the k b template matching the UUID and group. * * @param uuid the k b template's UUID * @param groupId the primary key of the group * @return the matching k b template * @throws PortalException if a matching k b template could not be found * @throws SystemException if a system exception occurred */ @Override public KBTemplate getKBTemplateByUuidAndGroupId(String uuid, long groupId) throws PortalException, SystemException { return kbTemplatePersistence.findByUUID_G(uuid, groupId); } /** * Returns a range of all the k b templates. * * <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.KBTemplateModelImpl}. 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 templates * @param end the upper bound of the range of k b templates (not inclusive) * @return the range of k b templates * @throws SystemException if a system exception occurred */ @Override public List<KBTemplate> getKBTemplates(int start, int end) throws SystemException { return kbTemplatePersistence.findAll(start, end); } /** * Returns the number of k b templates. * * @return the number of k b templates * @throws SystemException if a system exception occurred */ @Override public int getKBTemplatesCount() throws SystemException { return kbTemplatePersistence.countAll(); } /** * Updates the k b template in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. * * @param kbTemplate the k b template * @return the k b template that was updated * @throws SystemException if a system exception occurred */ @Indexable(type = IndexableType.REINDEX) @Override public KBTemplate updateKBTemplate(KBTemplate kbTemplate) throws SystemException { return kbTemplatePersistence.update(kbTemplate); } /** * 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 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 asset entry local service. * * @return the asset entry local service */ public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() { return assetEntryLocalService; } /** * Sets the asset entry local service. * * @param assetEntryLocalService the asset entry local service */ public void setAssetEntryLocalService( com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) { this.assetEntryLocalService = assetEntryLocalService; } /** * Returns the asset entry remote service. * * @return the asset entry remote service */ public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() { return assetEntryService; } /** * Sets the asset entry remote service. * * @param assetEntryService the asset entry remote service */ public void setAssetEntryService( com.liferay.portlet.asset.service.AssetEntryService assetEntryService) { this.assetEntryService = assetEntryService; } /** * Returns the asset entry persistence. * * @return the asset entry persistence */ public AssetEntryPersistence getAssetEntryPersistence() { return assetEntryPersistence; } /** * Sets the asset entry persistence. * * @param assetEntryPersistence the asset entry persistence */ public void setAssetEntryPersistence( AssetEntryPersistence assetEntryPersistence) { this.assetEntryPersistence = assetEntryPersistence; } /** * 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.KBTemplate", kbTemplateLocalService); } public void destroy() { PersistedModelLocalServiceRegistryUtil.unregister( "com.liferay.knowledgebase.model.KBTemplate"); } /** * 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 KBTemplate.class; } protected String getModelClassName() { return KBTemplate.class.getName(); } /** * Performs an SQL query. * * @param sql the sql query */ protected void runSQL(String sql) throws SystemException { try { DataSource dataSource = kbTemplatePersistence.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.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.asset.service.AssetEntryLocalService.class) protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService; @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class) protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService; @BeanReference(type = AssetEntryPersistence.class) protected AssetEntryPersistence assetEntryPersistence; @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 KBTemplateLocalServiceClpInvoker _clpInvoker = new KBTemplateLocalServiceClpInvoker(); }