/**
* 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 org.oep.dossiermgt.service.base;
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.documentlibrary.service.persistence.DLFileEntryPersistence;
import org.oep.dossiermgt.model.DocFileVersion;
import org.oep.dossiermgt.service.DocFileVersionLocalService;
import org.oep.dossiermgt.service.persistence.DocFilePersistence;
import org.oep.dossiermgt.service.persistence.DocFileVersionPersistence;
import org.oep.dossiermgt.service.persistence.DocTemplateFinder;
import org.oep.dossiermgt.service.persistence.DocTemplatePersistence;
import org.oep.dossiermgt.service.persistence.DossierDocPersistence;
import org.oep.dossiermgt.service.persistence.DossierFolder2RolePersistence;
import org.oep.dossiermgt.service.persistence.DossierFolderPersistence;
import org.oep.dossiermgt.service.persistence.DossierPersistence;
import org.oep.dossiermgt.service.persistence.DossierProcAgentPersistence;
import org.oep.dossiermgt.service.persistence.DossierProcBookmarkPersistence;
import org.oep.dossiermgt.service.persistence.DossierProcFinder;
import org.oep.dossiermgt.service.persistence.DossierProcPersistence;
import org.oep.dossiermgt.service.persistence.DossierTagPersistence;
import org.oep.dossiermgt.service.persistence.EbMessagePersistence;
import org.oep.dossiermgt.service.persistence.EbPartnerShipFinder;
import org.oep.dossiermgt.service.persistence.EbPartnerShipPersistence;
import org.oep.dossiermgt.service.persistence.PaymentConfigPersistence;
import org.oep.dossiermgt.service.persistence.PaymentFilePersistence;
import org.oep.dossiermgt.service.persistence.PaymentRequestPersistence;
import org.oep.dossiermgt.service.persistence.ProfileDataPersistence;
import org.oep.dossiermgt.service.persistence.StatisticByAgencyPersistence;
import org.oep.dossiermgt.service.persistence.StatisticByDayPersistence;
import org.oep.dossiermgt.service.persistence.StatisticByDomainPersistence;
import java.io.Serializable;
import java.util.List;
import javax.sql.DataSource;
/**
* Provides the base implementation for the doc file version 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 org.oep.dossiermgt.service.impl.DocFileVersionLocalServiceImpl}.
* </p>
*
* @author trungdk
* @see org.oep.dossiermgt.service.impl.DocFileVersionLocalServiceImpl
* @see org.oep.dossiermgt.service.DocFileVersionLocalServiceUtil
* @generated
*/
public abstract class DocFileVersionLocalServiceBaseImpl
extends BaseLocalServiceImpl implements DocFileVersionLocalService,
IdentifiableBean {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this class directly. Always use {@link org.oep.dossiermgt.service.DocFileVersionLocalServiceUtil} to access the doc file version local service.
*/
/**
* Adds the doc file version to the database. Also notifies the appropriate model listeners.
*
* @param docFileVersion the doc file version
* @return the doc file version that was added
* @throws SystemException if a system exception occurred
*/
@Indexable(type = IndexableType.REINDEX)
@Override
public DocFileVersion addDocFileVersion(DocFileVersion docFileVersion)
throws SystemException {
docFileVersion.setNew(true);
return docFileVersionPersistence.update(docFileVersion);
}
/**
* Creates a new doc file version with the primary key. Does not add the doc file version to the database.
*
* @param docFileVersionId the primary key for the new doc file version
* @return the new doc file version
*/
@Override
public DocFileVersion createDocFileVersion(long docFileVersionId) {
return docFileVersionPersistence.create(docFileVersionId);
}
/**
* Deletes the doc file version with the primary key from the database. Also notifies the appropriate model listeners.
*
* @param docFileVersionId the primary key of the doc file version
* @return the doc file version that was removed
* @throws PortalException if a doc file version with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Indexable(type = IndexableType.DELETE)
@Override
public DocFileVersion deleteDocFileVersion(long docFileVersionId)
throws PortalException, SystemException {
return docFileVersionPersistence.remove(docFileVersionId);
}
/**
* Deletes the doc file version from the database. Also notifies the appropriate model listeners.
*
* @param docFileVersion the doc file version
* @return the doc file version that was removed
* @throws SystemException if a system exception occurred
*/
@Indexable(type = IndexableType.DELETE)
@Override
public DocFileVersion deleteDocFileVersion(DocFileVersion docFileVersion)
throws SystemException {
return docFileVersionPersistence.remove(docFileVersion);
}
@Override
public DynamicQuery dynamicQuery() {
Class<?> clazz = getClass();
return DynamicQueryFactoryUtil.forClass(DocFileVersion.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 docFileVersionPersistence.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 org.oep.dossiermgt.model.impl.DocFileVersionModelImpl}. 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 docFileVersionPersistence.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 org.oep.dossiermgt.model.impl.DocFileVersionModelImpl}. 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 docFileVersionPersistence.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 docFileVersionPersistence.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 docFileVersionPersistence.countWithDynamicQuery(dynamicQuery,
projection);
}
@Override
public DocFileVersion fetchDocFileVersion(long docFileVersionId)
throws SystemException {
return docFileVersionPersistence.fetchByPrimaryKey(docFileVersionId);
}
/**
* Returns the doc file version with the matching UUID and company.
*
* @param uuid the doc file version's UUID
* @param companyId the primary key of the company
* @return the matching doc file version, or <code>null</code> if a matching doc file version could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public DocFileVersion fetchDocFileVersionByUuidAndCompanyId(String uuid,
long companyId) throws SystemException {
return docFileVersionPersistence.fetchByUuid_C_First(uuid, companyId,
null);
}
/**
* Returns the doc file version matching the UUID and group.
*
* @param uuid the doc file version's UUID
* @param groupId the primary key of the group
* @return the matching doc file version, or <code>null</code> if a matching doc file version could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public DocFileVersion fetchDocFileVersionByUuidAndGroupId(String uuid,
long groupId) throws SystemException {
return docFileVersionPersistence.fetchByUUID_G(uuid, groupId);
}
/**
* Returns the doc file version with the primary key.
*
* @param docFileVersionId the primary key of the doc file version
* @return the doc file version
* @throws PortalException if a doc file version with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public DocFileVersion getDocFileVersion(long docFileVersionId)
throws PortalException, SystemException {
return docFileVersionPersistence.findByPrimaryKey(docFileVersionId);
}
@Override
public PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException, SystemException {
return docFileVersionPersistence.findByPrimaryKey(primaryKeyObj);
}
/**
* Returns the doc file version with the matching UUID and company.
*
* @param uuid the doc file version's UUID
* @param companyId the primary key of the company
* @return the matching doc file version
* @throws PortalException if a matching doc file version could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public DocFileVersion getDocFileVersionByUuidAndCompanyId(String uuid,
long companyId) throws PortalException, SystemException {
return docFileVersionPersistence.findByUuid_C_First(uuid, companyId,
null);
}
/**
* Returns the doc file version matching the UUID and group.
*
* @param uuid the doc file version's UUID
* @param groupId the primary key of the group
* @return the matching doc file version
* @throws PortalException if a matching doc file version could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public DocFileVersion getDocFileVersionByUuidAndGroupId(String uuid,
long groupId) throws PortalException, SystemException {
return docFileVersionPersistence.findByUUID_G(uuid, groupId);
}
/**
* Returns a range of all the doc file versions.
*
* <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 org.oep.dossiermgt.model.impl.DocFileVersionModelImpl}. 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 doc file versions
* @param end the upper bound of the range of doc file versions (not inclusive)
* @return the range of doc file versions
* @throws SystemException if a system exception occurred
*/
@Override
public List<DocFileVersion> getDocFileVersions(int start, int end)
throws SystemException {
return docFileVersionPersistence.findAll(start, end);
}
/**
* Returns the number of doc file versions.
*
* @return the number of doc file versions
* @throws SystemException if a system exception occurred
*/
@Override
public int getDocFileVersionsCount() throws SystemException {
return docFileVersionPersistence.countAll();
}
/**
* Updates the doc file version in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
*
* @param docFileVersion the doc file version
* @return the doc file version that was updated
* @throws SystemException if a system exception occurred
*/
@Indexable(type = IndexableType.REINDEX)
@Override
public DocFileVersion updateDocFileVersion(DocFileVersion docFileVersion)
throws SystemException {
return docFileVersionPersistence.update(docFileVersion);
}
/**
* Returns the doc file local service.
*
* @return the doc file local service
*/
public org.oep.dossiermgt.service.DocFileLocalService getDocFileLocalService() {
return docFileLocalService;
}
/**
* Sets the doc file local service.
*
* @param docFileLocalService the doc file local service
*/
public void setDocFileLocalService(
org.oep.dossiermgt.service.DocFileLocalService docFileLocalService) {
this.docFileLocalService = docFileLocalService;
}
/**
* Returns the doc file remote service.
*
* @return the doc file remote service
*/
public org.oep.dossiermgt.service.DocFileService getDocFileService() {
return docFileService;
}
/**
* Sets the doc file remote service.
*
* @param docFileService the doc file remote service
*/
public void setDocFileService(
org.oep.dossiermgt.service.DocFileService docFileService) {
this.docFileService = docFileService;
}
/**
* Returns the doc file persistence.
*
* @return the doc file persistence
*/
public DocFilePersistence getDocFilePersistence() {
return docFilePersistence;
}
/**
* Sets the doc file persistence.
*
* @param docFilePersistence the doc file persistence
*/
public void setDocFilePersistence(DocFilePersistence docFilePersistence) {
this.docFilePersistence = docFilePersistence;
}
/**
* Returns the doc file version local service.
*
* @return the doc file version local service
*/
public org.oep.dossiermgt.service.DocFileVersionLocalService getDocFileVersionLocalService() {
return docFileVersionLocalService;
}
/**
* Sets the doc file version local service.
*
* @param docFileVersionLocalService the doc file version local service
*/
public void setDocFileVersionLocalService(
org.oep.dossiermgt.service.DocFileVersionLocalService docFileVersionLocalService) {
this.docFileVersionLocalService = docFileVersionLocalService;
}
/**
* Returns the doc file version remote service.
*
* @return the doc file version remote service
*/
public org.oep.dossiermgt.service.DocFileVersionService getDocFileVersionService() {
return docFileVersionService;
}
/**
* Sets the doc file version remote service.
*
* @param docFileVersionService the doc file version remote service
*/
public void setDocFileVersionService(
org.oep.dossiermgt.service.DocFileVersionService docFileVersionService) {
this.docFileVersionService = docFileVersionService;
}
/**
* Returns the doc file version persistence.
*
* @return the doc file version persistence
*/
public DocFileVersionPersistence getDocFileVersionPersistence() {
return docFileVersionPersistence;
}
/**
* Sets the doc file version persistence.
*
* @param docFileVersionPersistence the doc file version persistence
*/
public void setDocFileVersionPersistence(
DocFileVersionPersistence docFileVersionPersistence) {
this.docFileVersionPersistence = docFileVersionPersistence;
}
/**
* Returns the doc template local service.
*
* @return the doc template local service
*/
public org.oep.dossiermgt.service.DocTemplateLocalService getDocTemplateLocalService() {
return docTemplateLocalService;
}
/**
* Sets the doc template local service.
*
* @param docTemplateLocalService the doc template local service
*/
public void setDocTemplateLocalService(
org.oep.dossiermgt.service.DocTemplateLocalService docTemplateLocalService) {
this.docTemplateLocalService = docTemplateLocalService;
}
/**
* Returns the doc template remote service.
*
* @return the doc template remote service
*/
public org.oep.dossiermgt.service.DocTemplateService getDocTemplateService() {
return docTemplateService;
}
/**
* Sets the doc template remote service.
*
* @param docTemplateService the doc template remote service
*/
public void setDocTemplateService(
org.oep.dossiermgt.service.DocTemplateService docTemplateService) {
this.docTemplateService = docTemplateService;
}
/**
* Returns the doc template persistence.
*
* @return the doc template persistence
*/
public DocTemplatePersistence getDocTemplatePersistence() {
return docTemplatePersistence;
}
/**
* Sets the doc template persistence.
*
* @param docTemplatePersistence the doc template persistence
*/
public void setDocTemplatePersistence(
DocTemplatePersistence docTemplatePersistence) {
this.docTemplatePersistence = docTemplatePersistence;
}
/**
* Returns the doc template finder.
*
* @return the doc template finder
*/
public DocTemplateFinder getDocTemplateFinder() {
return docTemplateFinder;
}
/**
* Sets the doc template finder.
*
* @param docTemplateFinder the doc template finder
*/
public void setDocTemplateFinder(DocTemplateFinder docTemplateFinder) {
this.docTemplateFinder = docTemplateFinder;
}
/**
* Returns the dossier local service.
*
* @return the dossier local service
*/
public org.oep.dossiermgt.service.DossierLocalService getDossierLocalService() {
return dossierLocalService;
}
/**
* Sets the dossier local service.
*
* @param dossierLocalService the dossier local service
*/
public void setDossierLocalService(
org.oep.dossiermgt.service.DossierLocalService dossierLocalService) {
this.dossierLocalService = dossierLocalService;
}
/**
* Returns the dossier persistence.
*
* @return the dossier persistence
*/
public DossierPersistence getDossierPersistence() {
return dossierPersistence;
}
/**
* Sets the dossier persistence.
*
* @param dossierPersistence the dossier persistence
*/
public void setDossierPersistence(DossierPersistence dossierPersistence) {
this.dossierPersistence = dossierPersistence;
}
/**
* Returns the dossier doc local service.
*
* @return the dossier doc local service
*/
public org.oep.dossiermgt.service.DossierDocLocalService getDossierDocLocalService() {
return dossierDocLocalService;
}
/**
* Sets the dossier doc local service.
*
* @param dossierDocLocalService the dossier doc local service
*/
public void setDossierDocLocalService(
org.oep.dossiermgt.service.DossierDocLocalService dossierDocLocalService) {
this.dossierDocLocalService = dossierDocLocalService;
}
/**
* Returns the dossier doc remote service.
*
* @return the dossier doc remote service
*/
public org.oep.dossiermgt.service.DossierDocService getDossierDocService() {
return dossierDocService;
}
/**
* Sets the dossier doc remote service.
*
* @param dossierDocService the dossier doc remote service
*/
public void setDossierDocService(
org.oep.dossiermgt.service.DossierDocService dossierDocService) {
this.dossierDocService = dossierDocService;
}
/**
* Returns the dossier doc persistence.
*
* @return the dossier doc persistence
*/
public DossierDocPersistence getDossierDocPersistence() {
return dossierDocPersistence;
}
/**
* Sets the dossier doc persistence.
*
* @param dossierDocPersistence the dossier doc persistence
*/
public void setDossierDocPersistence(
DossierDocPersistence dossierDocPersistence) {
this.dossierDocPersistence = dossierDocPersistence;
}
/**
* Returns the dossier folder local service.
*
* @return the dossier folder local service
*/
public org.oep.dossiermgt.service.DossierFolderLocalService getDossierFolderLocalService() {
return dossierFolderLocalService;
}
/**
* Sets the dossier folder local service.
*
* @param dossierFolderLocalService the dossier folder local service
*/
public void setDossierFolderLocalService(
org.oep.dossiermgt.service.DossierFolderLocalService dossierFolderLocalService) {
this.dossierFolderLocalService = dossierFolderLocalService;
}
/**
* Returns the dossier folder remote service.
*
* @return the dossier folder remote service
*/
public org.oep.dossiermgt.service.DossierFolderService getDossierFolderService() {
return dossierFolderService;
}
/**
* Sets the dossier folder remote service.
*
* @param dossierFolderService the dossier folder remote service
*/
public void setDossierFolderService(
org.oep.dossiermgt.service.DossierFolderService dossierFolderService) {
this.dossierFolderService = dossierFolderService;
}
/**
* Returns the dossier folder persistence.
*
* @return the dossier folder persistence
*/
public DossierFolderPersistence getDossierFolderPersistence() {
return dossierFolderPersistence;
}
/**
* Sets the dossier folder persistence.
*
* @param dossierFolderPersistence the dossier folder persistence
*/
public void setDossierFolderPersistence(
DossierFolderPersistence dossierFolderPersistence) {
this.dossierFolderPersistence = dossierFolderPersistence;
}
/**
* Returns the dossier folder2 role local service.
*
* @return the dossier folder2 role local service
*/
public org.oep.dossiermgt.service.DossierFolder2RoleLocalService getDossierFolder2RoleLocalService() {
return dossierFolder2RoleLocalService;
}
/**
* Sets the dossier folder2 role local service.
*
* @param dossierFolder2RoleLocalService the dossier folder2 role local service
*/
public void setDossierFolder2RoleLocalService(
org.oep.dossiermgt.service.DossierFolder2RoleLocalService dossierFolder2RoleLocalService) {
this.dossierFolder2RoleLocalService = dossierFolder2RoleLocalService;
}
/**
* Returns the dossier folder2 role remote service.
*
* @return the dossier folder2 role remote service
*/
public org.oep.dossiermgt.service.DossierFolder2RoleService getDossierFolder2RoleService() {
return dossierFolder2RoleService;
}
/**
* Sets the dossier folder2 role remote service.
*
* @param dossierFolder2RoleService the dossier folder2 role remote service
*/
public void setDossierFolder2RoleService(
org.oep.dossiermgt.service.DossierFolder2RoleService dossierFolder2RoleService) {
this.dossierFolder2RoleService = dossierFolder2RoleService;
}
/**
* Returns the dossier folder2 role persistence.
*
* @return the dossier folder2 role persistence
*/
public DossierFolder2RolePersistence getDossierFolder2RolePersistence() {
return dossierFolder2RolePersistence;
}
/**
* Sets the dossier folder2 role persistence.
*
* @param dossierFolder2RolePersistence the dossier folder2 role persistence
*/
public void setDossierFolder2RolePersistence(
DossierFolder2RolePersistence dossierFolder2RolePersistence) {
this.dossierFolder2RolePersistence = dossierFolder2RolePersistence;
}
/**
* Returns the dossier proc local service.
*
* @return the dossier proc local service
*/
public org.oep.dossiermgt.service.DossierProcLocalService getDossierProcLocalService() {
return dossierProcLocalService;
}
/**
* Sets the dossier proc local service.
*
* @param dossierProcLocalService the dossier proc local service
*/
public void setDossierProcLocalService(
org.oep.dossiermgt.service.DossierProcLocalService dossierProcLocalService) {
this.dossierProcLocalService = dossierProcLocalService;
}
/**
* Returns the dossier proc remote service.
*
* @return the dossier proc remote service
*/
public org.oep.dossiermgt.service.DossierProcService getDossierProcService() {
return dossierProcService;
}
/**
* Sets the dossier proc remote service.
*
* @param dossierProcService the dossier proc remote service
*/
public void setDossierProcService(
org.oep.dossiermgt.service.DossierProcService dossierProcService) {
this.dossierProcService = dossierProcService;
}
/**
* Returns the dossier proc persistence.
*
* @return the dossier proc persistence
*/
public DossierProcPersistence getDossierProcPersistence() {
return dossierProcPersistence;
}
/**
* Sets the dossier proc persistence.
*
* @param dossierProcPersistence the dossier proc persistence
*/
public void setDossierProcPersistence(
DossierProcPersistence dossierProcPersistence) {
this.dossierProcPersistence = dossierProcPersistence;
}
/**
* Returns the dossier proc finder.
*
* @return the dossier proc finder
*/
public DossierProcFinder getDossierProcFinder() {
return dossierProcFinder;
}
/**
* Sets the dossier proc finder.
*
* @param dossierProcFinder the dossier proc finder
*/
public void setDossierProcFinder(DossierProcFinder dossierProcFinder) {
this.dossierProcFinder = dossierProcFinder;
}
/**
* Returns the dossier proc agent local service.
*
* @return the dossier proc agent local service
*/
public org.oep.dossiermgt.service.DossierProcAgentLocalService getDossierProcAgentLocalService() {
return dossierProcAgentLocalService;
}
/**
* Sets the dossier proc agent local service.
*
* @param dossierProcAgentLocalService the dossier proc agent local service
*/
public void setDossierProcAgentLocalService(
org.oep.dossiermgt.service.DossierProcAgentLocalService dossierProcAgentLocalService) {
this.dossierProcAgentLocalService = dossierProcAgentLocalService;
}
/**
* Returns the dossier proc agent remote service.
*
* @return the dossier proc agent remote service
*/
public org.oep.dossiermgt.service.DossierProcAgentService getDossierProcAgentService() {
return dossierProcAgentService;
}
/**
* Sets the dossier proc agent remote service.
*
* @param dossierProcAgentService the dossier proc agent remote service
*/
public void setDossierProcAgentService(
org.oep.dossiermgt.service.DossierProcAgentService dossierProcAgentService) {
this.dossierProcAgentService = dossierProcAgentService;
}
/**
* Returns the dossier proc agent persistence.
*
* @return the dossier proc agent persistence
*/
public DossierProcAgentPersistence getDossierProcAgentPersistence() {
return dossierProcAgentPersistence;
}
/**
* Sets the dossier proc agent persistence.
*
* @param dossierProcAgentPersistence the dossier proc agent persistence
*/
public void setDossierProcAgentPersistence(
DossierProcAgentPersistence dossierProcAgentPersistence) {
this.dossierProcAgentPersistence = dossierProcAgentPersistence;
}
/**
* Returns the dossier proc bookmark local service.
*
* @return the dossier proc bookmark local service
*/
public org.oep.dossiermgt.service.DossierProcBookmarkLocalService getDossierProcBookmarkLocalService() {
return dossierProcBookmarkLocalService;
}
/**
* Sets the dossier proc bookmark local service.
*
* @param dossierProcBookmarkLocalService the dossier proc bookmark local service
*/
public void setDossierProcBookmarkLocalService(
org.oep.dossiermgt.service.DossierProcBookmarkLocalService dossierProcBookmarkLocalService) {
this.dossierProcBookmarkLocalService = dossierProcBookmarkLocalService;
}
/**
* Returns the dossier proc bookmark remote service.
*
* @return the dossier proc bookmark remote service
*/
public org.oep.dossiermgt.service.DossierProcBookmarkService getDossierProcBookmarkService() {
return dossierProcBookmarkService;
}
/**
* Sets the dossier proc bookmark remote service.
*
* @param dossierProcBookmarkService the dossier proc bookmark remote service
*/
public void setDossierProcBookmarkService(
org.oep.dossiermgt.service.DossierProcBookmarkService dossierProcBookmarkService) {
this.dossierProcBookmarkService = dossierProcBookmarkService;
}
/**
* Returns the dossier proc bookmark persistence.
*
* @return the dossier proc bookmark persistence
*/
public DossierProcBookmarkPersistence getDossierProcBookmarkPersistence() {
return dossierProcBookmarkPersistence;
}
/**
* Sets the dossier proc bookmark persistence.
*
* @param dossierProcBookmarkPersistence the dossier proc bookmark persistence
*/
public void setDossierProcBookmarkPersistence(
DossierProcBookmarkPersistence dossierProcBookmarkPersistence) {
this.dossierProcBookmarkPersistence = dossierProcBookmarkPersistence;
}
/**
* Returns the dossier tag local service.
*
* @return the dossier tag local service
*/
public org.oep.dossiermgt.service.DossierTagLocalService getDossierTagLocalService() {
return dossierTagLocalService;
}
/**
* Sets the dossier tag local service.
*
* @param dossierTagLocalService the dossier tag local service
*/
public void setDossierTagLocalService(
org.oep.dossiermgt.service.DossierTagLocalService dossierTagLocalService) {
this.dossierTagLocalService = dossierTagLocalService;
}
/**
* Returns the dossier tag remote service.
*
* @return the dossier tag remote service
*/
public org.oep.dossiermgt.service.DossierTagService getDossierTagService() {
return dossierTagService;
}
/**
* Sets the dossier tag remote service.
*
* @param dossierTagService the dossier tag remote service
*/
public void setDossierTagService(
org.oep.dossiermgt.service.DossierTagService dossierTagService) {
this.dossierTagService = dossierTagService;
}
/**
* Returns the dossier tag persistence.
*
* @return the dossier tag persistence
*/
public DossierTagPersistence getDossierTagPersistence() {
return dossierTagPersistence;
}
/**
* Sets the dossier tag persistence.
*
* @param dossierTagPersistence the dossier tag persistence
*/
public void setDossierTagPersistence(
DossierTagPersistence dossierTagPersistence) {
this.dossierTagPersistence = dossierTagPersistence;
}
/**
* Returns the eb message local service.
*
* @return the eb message local service
*/
public org.oep.dossiermgt.service.EbMessageLocalService getEbMessageLocalService() {
return ebMessageLocalService;
}
/**
* Sets the eb message local service.
*
* @param ebMessageLocalService the eb message local service
*/
public void setEbMessageLocalService(
org.oep.dossiermgt.service.EbMessageLocalService ebMessageLocalService) {
this.ebMessageLocalService = ebMessageLocalService;
}
/**
* Returns the eb message remote service.
*
* @return the eb message remote service
*/
public org.oep.dossiermgt.service.EbMessageService getEbMessageService() {
return ebMessageService;
}
/**
* Sets the eb message remote service.
*
* @param ebMessageService the eb message remote service
*/
public void setEbMessageService(
org.oep.dossiermgt.service.EbMessageService ebMessageService) {
this.ebMessageService = ebMessageService;
}
/**
* Returns the eb message persistence.
*
* @return the eb message persistence
*/
public EbMessagePersistence getEbMessagePersistence() {
return ebMessagePersistence;
}
/**
* Sets the eb message persistence.
*
* @param ebMessagePersistence the eb message persistence
*/
public void setEbMessagePersistence(
EbMessagePersistence ebMessagePersistence) {
this.ebMessagePersistence = ebMessagePersistence;
}
/**
* Returns the eb partner ship local service.
*
* @return the eb partner ship local service
*/
public org.oep.dossiermgt.service.EbPartnerShipLocalService getEbPartnerShipLocalService() {
return ebPartnerShipLocalService;
}
/**
* Sets the eb partner ship local service.
*
* @param ebPartnerShipLocalService the eb partner ship local service
*/
public void setEbPartnerShipLocalService(
org.oep.dossiermgt.service.EbPartnerShipLocalService ebPartnerShipLocalService) {
this.ebPartnerShipLocalService = ebPartnerShipLocalService;
}
/**
* Returns the eb partner ship remote service.
*
* @return the eb partner ship remote service
*/
public org.oep.dossiermgt.service.EbPartnerShipService getEbPartnerShipService() {
return ebPartnerShipService;
}
/**
* Sets the eb partner ship remote service.
*
* @param ebPartnerShipService the eb partner ship remote service
*/
public void setEbPartnerShipService(
org.oep.dossiermgt.service.EbPartnerShipService ebPartnerShipService) {
this.ebPartnerShipService = ebPartnerShipService;
}
/**
* Returns the eb partner ship persistence.
*
* @return the eb partner ship persistence
*/
public EbPartnerShipPersistence getEbPartnerShipPersistence() {
return ebPartnerShipPersistence;
}
/**
* Sets the eb partner ship persistence.
*
* @param ebPartnerShipPersistence the eb partner ship persistence
*/
public void setEbPartnerShipPersistence(
EbPartnerShipPersistence ebPartnerShipPersistence) {
this.ebPartnerShipPersistence = ebPartnerShipPersistence;
}
/**
* Returns the eb partner ship finder.
*
* @return the eb partner ship finder
*/
public EbPartnerShipFinder getEbPartnerShipFinder() {
return ebPartnerShipFinder;
}
/**
* Sets the eb partner ship finder.
*
* @param ebPartnerShipFinder the eb partner ship finder
*/
public void setEbPartnerShipFinder(EbPartnerShipFinder ebPartnerShipFinder) {
this.ebPartnerShipFinder = ebPartnerShipFinder;
}
/**
* Returns the payment config local service.
*
* @return the payment config local service
*/
public org.oep.dossiermgt.service.PaymentConfigLocalService getPaymentConfigLocalService() {
return paymentConfigLocalService;
}
/**
* Sets the payment config local service.
*
* @param paymentConfigLocalService the payment config local service
*/
public void setPaymentConfigLocalService(
org.oep.dossiermgt.service.PaymentConfigLocalService paymentConfigLocalService) {
this.paymentConfigLocalService = paymentConfigLocalService;
}
/**
* Returns the payment config remote service.
*
* @return the payment config remote service
*/
public org.oep.dossiermgt.service.PaymentConfigService getPaymentConfigService() {
return paymentConfigService;
}
/**
* Sets the payment config remote service.
*
* @param paymentConfigService the payment config remote service
*/
public void setPaymentConfigService(
org.oep.dossiermgt.service.PaymentConfigService paymentConfigService) {
this.paymentConfigService = paymentConfigService;
}
/**
* Returns the payment config persistence.
*
* @return the payment config persistence
*/
public PaymentConfigPersistence getPaymentConfigPersistence() {
return paymentConfigPersistence;
}
/**
* Sets the payment config persistence.
*
* @param paymentConfigPersistence the payment config persistence
*/
public void setPaymentConfigPersistence(
PaymentConfigPersistence paymentConfigPersistence) {
this.paymentConfigPersistence = paymentConfigPersistence;
}
/**
* Returns the payment file local service.
*
* @return the payment file local service
*/
public org.oep.dossiermgt.service.PaymentFileLocalService getPaymentFileLocalService() {
return paymentFileLocalService;
}
/**
* Sets the payment file local service.
*
* @param paymentFileLocalService the payment file local service
*/
public void setPaymentFileLocalService(
org.oep.dossiermgt.service.PaymentFileLocalService paymentFileLocalService) {
this.paymentFileLocalService = paymentFileLocalService;
}
/**
* Returns the payment file remote service.
*
* @return the payment file remote service
*/
public org.oep.dossiermgt.service.PaymentFileService getPaymentFileService() {
return paymentFileService;
}
/**
* Sets the payment file remote service.
*
* @param paymentFileService the payment file remote service
*/
public void setPaymentFileService(
org.oep.dossiermgt.service.PaymentFileService paymentFileService) {
this.paymentFileService = paymentFileService;
}
/**
* Returns the payment file persistence.
*
* @return the payment file persistence
*/
public PaymentFilePersistence getPaymentFilePersistence() {
return paymentFilePersistence;
}
/**
* Sets the payment file persistence.
*
* @param paymentFilePersistence the payment file persistence
*/
public void setPaymentFilePersistence(
PaymentFilePersistence paymentFilePersistence) {
this.paymentFilePersistence = paymentFilePersistence;
}
/**
* Returns the payment request local service.
*
* @return the payment request local service
*/
public org.oep.dossiermgt.service.PaymentRequestLocalService getPaymentRequestLocalService() {
return paymentRequestLocalService;
}
/**
* Sets the payment request local service.
*
* @param paymentRequestLocalService the payment request local service
*/
public void setPaymentRequestLocalService(
org.oep.dossiermgt.service.PaymentRequestLocalService paymentRequestLocalService) {
this.paymentRequestLocalService = paymentRequestLocalService;
}
/**
* Returns the payment request remote service.
*
* @return the payment request remote service
*/
public org.oep.dossiermgt.service.PaymentRequestService getPaymentRequestService() {
return paymentRequestService;
}
/**
* Sets the payment request remote service.
*
* @param paymentRequestService the payment request remote service
*/
public void setPaymentRequestService(
org.oep.dossiermgt.service.PaymentRequestService paymentRequestService) {
this.paymentRequestService = paymentRequestService;
}
/**
* Returns the payment request persistence.
*
* @return the payment request persistence
*/
public PaymentRequestPersistence getPaymentRequestPersistence() {
return paymentRequestPersistence;
}
/**
* Sets the payment request persistence.
*
* @param paymentRequestPersistence the payment request persistence
*/
public void setPaymentRequestPersistence(
PaymentRequestPersistence paymentRequestPersistence) {
this.paymentRequestPersistence = paymentRequestPersistence;
}
/**
* Returns the profile data local service.
*
* @return the profile data local service
*/
public org.oep.dossiermgt.service.ProfileDataLocalService getProfileDataLocalService() {
return profileDataLocalService;
}
/**
* Sets the profile data local service.
*
* @param profileDataLocalService the profile data local service
*/
public void setProfileDataLocalService(
org.oep.dossiermgt.service.ProfileDataLocalService profileDataLocalService) {
this.profileDataLocalService = profileDataLocalService;
}
/**
* Returns the profile data remote service.
*
* @return the profile data remote service
*/
public org.oep.dossiermgt.service.ProfileDataService getProfileDataService() {
return profileDataService;
}
/**
* Sets the profile data remote service.
*
* @param profileDataService the profile data remote service
*/
public void setProfileDataService(
org.oep.dossiermgt.service.ProfileDataService profileDataService) {
this.profileDataService = profileDataService;
}
/**
* Returns the profile data persistence.
*
* @return the profile data persistence
*/
public ProfileDataPersistence getProfileDataPersistence() {
return profileDataPersistence;
}
/**
* Sets the profile data persistence.
*
* @param profileDataPersistence the profile data persistence
*/
public void setProfileDataPersistence(
ProfileDataPersistence profileDataPersistence) {
this.profileDataPersistence = profileDataPersistence;
}
/**
* Returns the statistic by agency local service.
*
* @return the statistic by agency local service
*/
public org.oep.dossiermgt.service.StatisticByAgencyLocalService getStatisticByAgencyLocalService() {
return statisticByAgencyLocalService;
}
/**
* Sets the statistic by agency local service.
*
* @param statisticByAgencyLocalService the statistic by agency local service
*/
public void setStatisticByAgencyLocalService(
org.oep.dossiermgt.service.StatisticByAgencyLocalService statisticByAgencyLocalService) {
this.statisticByAgencyLocalService = statisticByAgencyLocalService;
}
/**
* Returns the statistic by agency remote service.
*
* @return the statistic by agency remote service
*/
public org.oep.dossiermgt.service.StatisticByAgencyService getStatisticByAgencyService() {
return statisticByAgencyService;
}
/**
* Sets the statistic by agency remote service.
*
* @param statisticByAgencyService the statistic by agency remote service
*/
public void setStatisticByAgencyService(
org.oep.dossiermgt.service.StatisticByAgencyService statisticByAgencyService) {
this.statisticByAgencyService = statisticByAgencyService;
}
/**
* Returns the statistic by agency persistence.
*
* @return the statistic by agency persistence
*/
public StatisticByAgencyPersistence getStatisticByAgencyPersistence() {
return statisticByAgencyPersistence;
}
/**
* Sets the statistic by agency persistence.
*
* @param statisticByAgencyPersistence the statistic by agency persistence
*/
public void setStatisticByAgencyPersistence(
StatisticByAgencyPersistence statisticByAgencyPersistence) {
this.statisticByAgencyPersistence = statisticByAgencyPersistence;
}
/**
* Returns the statistic by day local service.
*
* @return the statistic by day local service
*/
public org.oep.dossiermgt.service.StatisticByDayLocalService getStatisticByDayLocalService() {
return statisticByDayLocalService;
}
/**
* Sets the statistic by day local service.
*
* @param statisticByDayLocalService the statistic by day local service
*/
public void setStatisticByDayLocalService(
org.oep.dossiermgt.service.StatisticByDayLocalService statisticByDayLocalService) {
this.statisticByDayLocalService = statisticByDayLocalService;
}
/**
* Returns the statistic by day remote service.
*
* @return the statistic by day remote service
*/
public org.oep.dossiermgt.service.StatisticByDayService getStatisticByDayService() {
return statisticByDayService;
}
/**
* Sets the statistic by day remote service.
*
* @param statisticByDayService the statistic by day remote service
*/
public void setStatisticByDayService(
org.oep.dossiermgt.service.StatisticByDayService statisticByDayService) {
this.statisticByDayService = statisticByDayService;
}
/**
* Returns the statistic by day persistence.
*
* @return the statistic by day persistence
*/
public StatisticByDayPersistence getStatisticByDayPersistence() {
return statisticByDayPersistence;
}
/**
* Sets the statistic by day persistence.
*
* @param statisticByDayPersistence the statistic by day persistence
*/
public void setStatisticByDayPersistence(
StatisticByDayPersistence statisticByDayPersistence) {
this.statisticByDayPersistence = statisticByDayPersistence;
}
/**
* Returns the statistic by domain local service.
*
* @return the statistic by domain local service
*/
public org.oep.dossiermgt.service.StatisticByDomainLocalService getStatisticByDomainLocalService() {
return statisticByDomainLocalService;
}
/**
* Sets the statistic by domain local service.
*
* @param statisticByDomainLocalService the statistic by domain local service
*/
public void setStatisticByDomainLocalService(
org.oep.dossiermgt.service.StatisticByDomainLocalService statisticByDomainLocalService) {
this.statisticByDomainLocalService = statisticByDomainLocalService;
}
/**
* Returns the statistic by domain remote service.
*
* @return the statistic by domain remote service
*/
public org.oep.dossiermgt.service.StatisticByDomainService getStatisticByDomainService() {
return statisticByDomainService;
}
/**
* Sets the statistic by domain remote service.
*
* @param statisticByDomainService the statistic by domain remote service
*/
public void setStatisticByDomainService(
org.oep.dossiermgt.service.StatisticByDomainService statisticByDomainService) {
this.statisticByDomainService = statisticByDomainService;
}
/**
* Returns the statistic by domain persistence.
*
* @return the statistic by domain persistence
*/
public StatisticByDomainPersistence getStatisticByDomainPersistence() {
return statisticByDomainPersistence;
}
/**
* Sets the statistic by domain persistence.
*
* @param statisticByDomainPersistence the statistic by domain persistence
*/
public void setStatisticByDomainPersistence(
StatisticByDomainPersistence statisticByDomainPersistence) {
this.statisticByDomainPersistence = statisticByDomainPersistence;
}
/**
* 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 document library file entry local service.
*
* @return the document library file entry local service
*/
public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
return dlFileEntryLocalService;
}
/**
* Sets the document library file entry local service.
*
* @param dlFileEntryLocalService the document library file entry local service
*/
public void setDLFileEntryLocalService(
com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
this.dlFileEntryLocalService = dlFileEntryLocalService;
}
/**
* Returns the document library file entry remote service.
*
* @return the document library file entry remote service
*/
public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
return dlFileEntryService;
}
/**
* Sets the document library file entry remote service.
*
* @param dlFileEntryService the document library file entry remote service
*/
public void setDLFileEntryService(
com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
this.dlFileEntryService = dlFileEntryService;
}
/**
* Returns the document library file entry persistence.
*
* @return the document library file entry persistence
*/
public DLFileEntryPersistence getDLFileEntryPersistence() {
return dlFileEntryPersistence;
}
/**
* Sets the document library file entry persistence.
*
* @param dlFileEntryPersistence the document library file entry persistence
*/
public void setDLFileEntryPersistence(
DLFileEntryPersistence dlFileEntryPersistence) {
this.dlFileEntryPersistence = dlFileEntryPersistence;
}
public void afterPropertiesSet() {
Class<?> clazz = getClass();
_classLoader = clazz.getClassLoader();
PersistedModelLocalServiceRegistryUtil.register("org.oep.dossiermgt.model.DocFileVersion",
docFileVersionLocalService);
}
public void destroy() {
PersistedModelLocalServiceRegistryUtil.unregister(
"org.oep.dossiermgt.model.DocFileVersion");
}
/**
* 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 DocFileVersion.class;
}
protected String getModelClassName() {
return DocFileVersion.class.getName();
}
/**
* Performs an SQL query.
*
* @param sql the sql query
*/
protected void runSQL(String sql) throws SystemException {
try {
DataSource dataSource = docFileVersionPersistence.getDataSource();
SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
sql, new int[0]);
sqlUpdate.update();
}
catch (Exception e) {
throw new SystemException(e);
}
}
@BeanReference(type = org.oep.dossiermgt.service.DocFileLocalService.class)
protected org.oep.dossiermgt.service.DocFileLocalService docFileLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DocFileService.class)
protected org.oep.dossiermgt.service.DocFileService docFileService;
@BeanReference(type = DocFilePersistence.class)
protected DocFilePersistence docFilePersistence;
@BeanReference(type = org.oep.dossiermgt.service.DocFileVersionLocalService.class)
protected org.oep.dossiermgt.service.DocFileVersionLocalService docFileVersionLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DocFileVersionService.class)
protected org.oep.dossiermgt.service.DocFileVersionService docFileVersionService;
@BeanReference(type = DocFileVersionPersistence.class)
protected DocFileVersionPersistence docFileVersionPersistence;
@BeanReference(type = org.oep.dossiermgt.service.DocTemplateLocalService.class)
protected org.oep.dossiermgt.service.DocTemplateLocalService docTemplateLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DocTemplateService.class)
protected org.oep.dossiermgt.service.DocTemplateService docTemplateService;
@BeanReference(type = DocTemplatePersistence.class)
protected DocTemplatePersistence docTemplatePersistence;
@BeanReference(type = DocTemplateFinder.class)
protected DocTemplateFinder docTemplateFinder;
@BeanReference(type = org.oep.dossiermgt.service.DossierLocalService.class)
protected org.oep.dossiermgt.service.DossierLocalService dossierLocalService;
@BeanReference(type = DossierPersistence.class)
protected DossierPersistence dossierPersistence;
@BeanReference(type = org.oep.dossiermgt.service.DossierDocLocalService.class)
protected org.oep.dossiermgt.service.DossierDocLocalService dossierDocLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DossierDocService.class)
protected org.oep.dossiermgt.service.DossierDocService dossierDocService;
@BeanReference(type = DossierDocPersistence.class)
protected DossierDocPersistence dossierDocPersistence;
@BeanReference(type = org.oep.dossiermgt.service.DossierFolderLocalService.class)
protected org.oep.dossiermgt.service.DossierFolderLocalService dossierFolderLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DossierFolderService.class)
protected org.oep.dossiermgt.service.DossierFolderService dossierFolderService;
@BeanReference(type = DossierFolderPersistence.class)
protected DossierFolderPersistence dossierFolderPersistence;
@BeanReference(type = org.oep.dossiermgt.service.DossierFolder2RoleLocalService.class)
protected org.oep.dossiermgt.service.DossierFolder2RoleLocalService dossierFolder2RoleLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DossierFolder2RoleService.class)
protected org.oep.dossiermgt.service.DossierFolder2RoleService dossierFolder2RoleService;
@BeanReference(type = DossierFolder2RolePersistence.class)
protected DossierFolder2RolePersistence dossierFolder2RolePersistence;
@BeanReference(type = org.oep.dossiermgt.service.DossierProcLocalService.class)
protected org.oep.dossiermgt.service.DossierProcLocalService dossierProcLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DossierProcService.class)
protected org.oep.dossiermgt.service.DossierProcService dossierProcService;
@BeanReference(type = DossierProcPersistence.class)
protected DossierProcPersistence dossierProcPersistence;
@BeanReference(type = DossierProcFinder.class)
protected DossierProcFinder dossierProcFinder;
@BeanReference(type = org.oep.dossiermgt.service.DossierProcAgentLocalService.class)
protected org.oep.dossiermgt.service.DossierProcAgentLocalService dossierProcAgentLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DossierProcAgentService.class)
protected org.oep.dossiermgt.service.DossierProcAgentService dossierProcAgentService;
@BeanReference(type = DossierProcAgentPersistence.class)
protected DossierProcAgentPersistence dossierProcAgentPersistence;
@BeanReference(type = org.oep.dossiermgt.service.DossierProcBookmarkLocalService.class)
protected org.oep.dossiermgt.service.DossierProcBookmarkLocalService dossierProcBookmarkLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DossierProcBookmarkService.class)
protected org.oep.dossiermgt.service.DossierProcBookmarkService dossierProcBookmarkService;
@BeanReference(type = DossierProcBookmarkPersistence.class)
protected DossierProcBookmarkPersistence dossierProcBookmarkPersistence;
@BeanReference(type = org.oep.dossiermgt.service.DossierTagLocalService.class)
protected org.oep.dossiermgt.service.DossierTagLocalService dossierTagLocalService;
@BeanReference(type = org.oep.dossiermgt.service.DossierTagService.class)
protected org.oep.dossiermgt.service.DossierTagService dossierTagService;
@BeanReference(type = DossierTagPersistence.class)
protected DossierTagPersistence dossierTagPersistence;
@BeanReference(type = org.oep.dossiermgt.service.EbMessageLocalService.class)
protected org.oep.dossiermgt.service.EbMessageLocalService ebMessageLocalService;
@BeanReference(type = org.oep.dossiermgt.service.EbMessageService.class)
protected org.oep.dossiermgt.service.EbMessageService ebMessageService;
@BeanReference(type = EbMessagePersistence.class)
protected EbMessagePersistence ebMessagePersistence;
@BeanReference(type = org.oep.dossiermgt.service.EbPartnerShipLocalService.class)
protected org.oep.dossiermgt.service.EbPartnerShipLocalService ebPartnerShipLocalService;
@BeanReference(type = org.oep.dossiermgt.service.EbPartnerShipService.class)
protected org.oep.dossiermgt.service.EbPartnerShipService ebPartnerShipService;
@BeanReference(type = EbPartnerShipPersistence.class)
protected EbPartnerShipPersistence ebPartnerShipPersistence;
@BeanReference(type = EbPartnerShipFinder.class)
protected EbPartnerShipFinder ebPartnerShipFinder;
@BeanReference(type = org.oep.dossiermgt.service.PaymentConfigLocalService.class)
protected org.oep.dossiermgt.service.PaymentConfigLocalService paymentConfigLocalService;
@BeanReference(type = org.oep.dossiermgt.service.PaymentConfigService.class)
protected org.oep.dossiermgt.service.PaymentConfigService paymentConfigService;
@BeanReference(type = PaymentConfigPersistence.class)
protected PaymentConfigPersistence paymentConfigPersistence;
@BeanReference(type = org.oep.dossiermgt.service.PaymentFileLocalService.class)
protected org.oep.dossiermgt.service.PaymentFileLocalService paymentFileLocalService;
@BeanReference(type = org.oep.dossiermgt.service.PaymentFileService.class)
protected org.oep.dossiermgt.service.PaymentFileService paymentFileService;
@BeanReference(type = PaymentFilePersistence.class)
protected PaymentFilePersistence paymentFilePersistence;
@BeanReference(type = org.oep.dossiermgt.service.PaymentRequestLocalService.class)
protected org.oep.dossiermgt.service.PaymentRequestLocalService paymentRequestLocalService;
@BeanReference(type = org.oep.dossiermgt.service.PaymentRequestService.class)
protected org.oep.dossiermgt.service.PaymentRequestService paymentRequestService;
@BeanReference(type = PaymentRequestPersistence.class)
protected PaymentRequestPersistence paymentRequestPersistence;
@BeanReference(type = org.oep.dossiermgt.service.ProfileDataLocalService.class)
protected org.oep.dossiermgt.service.ProfileDataLocalService profileDataLocalService;
@BeanReference(type = org.oep.dossiermgt.service.ProfileDataService.class)
protected org.oep.dossiermgt.service.ProfileDataService profileDataService;
@BeanReference(type = ProfileDataPersistence.class)
protected ProfileDataPersistence profileDataPersistence;
@BeanReference(type = org.oep.dossiermgt.service.StatisticByAgencyLocalService.class)
protected org.oep.dossiermgt.service.StatisticByAgencyLocalService statisticByAgencyLocalService;
@BeanReference(type = org.oep.dossiermgt.service.StatisticByAgencyService.class)
protected org.oep.dossiermgt.service.StatisticByAgencyService statisticByAgencyService;
@BeanReference(type = StatisticByAgencyPersistence.class)
protected StatisticByAgencyPersistence statisticByAgencyPersistence;
@BeanReference(type = org.oep.dossiermgt.service.StatisticByDayLocalService.class)
protected org.oep.dossiermgt.service.StatisticByDayLocalService statisticByDayLocalService;
@BeanReference(type = org.oep.dossiermgt.service.StatisticByDayService.class)
protected org.oep.dossiermgt.service.StatisticByDayService statisticByDayService;
@BeanReference(type = StatisticByDayPersistence.class)
protected StatisticByDayPersistence statisticByDayPersistence;
@BeanReference(type = org.oep.dossiermgt.service.StatisticByDomainLocalService.class)
protected org.oep.dossiermgt.service.StatisticByDomainLocalService statisticByDomainLocalService;
@BeanReference(type = org.oep.dossiermgt.service.StatisticByDomainService.class)
protected org.oep.dossiermgt.service.StatisticByDomainService statisticByDomainService;
@BeanReference(type = StatisticByDomainPersistence.class)
protected StatisticByDomainPersistence statisticByDomainPersistence;
@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.documentlibrary.service.DLFileEntryLocalService.class)
protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
@BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
@BeanReference(type = DLFileEntryPersistence.class)
protected DLFileEntryPersistence dlFileEntryPersistence;
private String _beanIdentifier;
private ClassLoader _classLoader;
private DocFileVersionLocalServiceClpInvoker _clpInvoker = new DocFileVersionLocalServiceClpInvoker();
}