findByGeologoId(
- long geologoUserId, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _parereGeologoService.findByGeologoId(geologoUserId, start, end);
- }
-
- @Override
- public int countByGeologoId(long geologoUserId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _parereGeologoService.countByGeologoId(geologoUserId);
- }
-
/**
* @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
*/
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalService.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalService.java
deleted file mode 100644
index 67948d19..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalService.java
+++ /dev/null
@@ -1,402 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.kernel.exception.PortalException;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.search.IndexableType;
-import com.liferay.portal.kernel.transaction.Isolation;
-import com.liferay.portal.kernel.transaction.Propagation;
-import com.liferay.portal.kernel.transaction.Transactional;
-import com.liferay.portal.service.BaseLocalService;
-import com.liferay.portal.service.InvokableLocalService;
-import com.liferay.portal.service.PersistedModelLocalService;
-
-/**
- * Provides the local service interface for Tempistica. Methods of this
- * service will not have security checks based on the propagated JAAS
- * credentials because this service can only be accessed from within the same
- * VM.
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaLocalServiceUtil
- * @see it.tref.liferay.portos.bo.service.base.TempisticaLocalServiceBaseImpl
- * @see it.tref.liferay.portos.bo.service.impl.TempisticaLocalServiceImpl
- * @generated
- */
-@Transactional(isolation = Isolation.PORTAL, rollbackFor = {
- PortalException.class, SystemException.class})
-public interface TempisticaLocalService extends BaseLocalService,
- InvokableLocalService, PersistedModelLocalService {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. Always use {@link TempisticaLocalServiceUtil} to access the tempistica local service. Add custom service methods to {@link it.tref.liferay.portos.bo.service.impl.TempisticaLocalServiceImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-
- /**
- * Adds the tempistica to the database. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was added
- * @throws SystemException if a system exception occurred
- */
- @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
- public it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Creates a new tempistica with the primary key. Does not add the tempistica to the database.
- *
- * @param tempisticaId the primary key for the new tempistica
- * @return the new tempistica
- */
- public it.tref.liferay.portos.bo.model.Tempistica createTempistica(
- long tempisticaId);
-
- /**
- * Deletes the tempistica with the primary key from the database. Also notifies the appropriate model listeners.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica that was removed
- * @throws PortalException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
- public it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Deletes the tempistica from the database. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was removed
- * @throws SystemException if a system exception occurred
- */
- @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
- public it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery();
-
- /**
- * 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
- */
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Performs a dynamic query on the database and returns a range of the matching rows.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param dynamicQuery the dynamic query
- * @param start the lower bound of the range of model instances
- * @param end the upper bound of the range of model instances (not inclusive)
- * @return the range of matching rows
- * @throws SystemException if a system exception occurred
- */
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end) throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Performs a dynamic query on the database and returns an ordered range of the matching rows.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param dynamicQuery the dynamic query
- * @param start the lower bound of the range of model instances
- * @param end the upper bound of the range of model instances (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching rows
- * @throws SystemException if a system exception occurred
- */
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * 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
- */
- public long dynamicQueryCount(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * 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
- */
- public long dynamicQueryCount(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
- com.liferay.portal.kernel.dao.orm.Projection projection)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica with the matching UUID and company.
- *
- * @param uuid the tempistica's UUID
- * @param companyId the primary key of the company
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica matching the UUID and group.
- *
- * @param uuid the tempistica's UUID
- * @param groupId the primary key of the group
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica with the primary key.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica
- * @throws PortalException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException;
-
- @Override
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public com.liferay.portal.model.PersistedModel getPersistedModel(
- java.io.Serializable primaryKeyObj)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica with the matching UUID and company.
- *
- * @param uuid the tempistica's UUID
- * @param companyId the primary key of the company
- * @return the matching tempistica
- * @throws PortalException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica matching the UUID and group.
- *
- * @param uuid the tempistica's UUID
- * @param groupId the primary key of the group
- * @return the matching tempistica
- * @throws PortalException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the tempisticas.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of tempisticas
- * @throws SystemException if a system exception occurred
- */
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public java.util.List getTempisticas(
- int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of tempisticas.
- *
- * @return the number of tempisticas
- * @throws SystemException if a system exception occurred
- */
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public int getTempisticasCount()
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Updates the tempistica in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was updated
- * @throws SystemException if a system exception occurred
- */
- @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
- public it.tref.liferay.portos.bo.model.Tempistica updateTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the Spring bean ID for this bean.
- *
- * @return the Spring bean ID for this bean
- */
- public java.lang.String getBeanIdentifier();
-
- /**
- * Sets the Spring bean ID for this bean.
- *
- * @param beanIdentifier the Spring bean ID for this bean
- */
- public void setBeanIdentifier(java.lang.String beanIdentifier);
-
- @Override
- public java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable;
-
- public it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- long intPraticaId, long dettPraticaId, java.lang.String tipo,
- java.util.Date start,
- com.liferay.portal.service.ServiceContext serviceContext)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public it.tref.liferay.portos.bo.model.Tempistica stopTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public it.tref.liferay.portos.bo.model.Tempistica ravvioTempistica(
- long tempisticaId, java.util.Date date)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public it.tref.liferay.portos.bo.model.Tempistica concludiTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countScadenzePraticheInScadenza(long companyId, long groupId);
-
- public int countScadenzePraticheScadute(long companyId, long groupId);
-
- public int countScadenzeIntegrazioniScadute(long companyId, long groupId);
-
- public int countPraticheAttive(long companyId, long groupId);
-
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public java.util.List getScadenzePratiche(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public java.util.List getScadenzeIntegrazioni(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countScadenzePratiche(long companyId, long groupId,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countScadenzeIntegrazioni(long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countPraticheScaduteAutorizzazione(long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countPraticheScaduteControlloObbligatorio(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countPraticheInScadenzaAutorizzazioni(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countPraticheInScadenzaControlloObbligatorio(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List praticheAttiveAutorizzazioni(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List praticheAttiveControlloObbligatorio(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
- public java.lang.String getDtSottopostaAParere(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List countPraticheAttivePerDiscriminazione(
- long companyId, long groupId);
-
- public java.util.List scadenzePraticheForBackwardCompatibility(
- long companyId, long groupId, int start, int end);
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceClp.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceClp.java
deleted file mode 100644
index 41260cbd..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceClp.java
+++ /dev/null
@@ -1,1726 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.service.InvokableLocalService;
-
-/**
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @generated
- */
-public class TempisticaLocalServiceClp implements TempisticaLocalService {
- public TempisticaLocalServiceClp(
- InvokableLocalService invokableLocalService) {
- _invokableLocalService = invokableLocalService;
-
- _methodName0 = "addTempistica";
-
- _methodParameterTypes0 = new String[] {
- "it.tref.liferay.portos.bo.model.Tempistica"
- };
-
- _methodName1 = "createTempistica";
-
- _methodParameterTypes1 = new String[] { "long" };
-
- _methodName2 = "deleteTempistica";
-
- _methodParameterTypes2 = new String[] { "long" };
-
- _methodName3 = "deleteTempistica";
-
- _methodParameterTypes3 = new String[] {
- "it.tref.liferay.portos.bo.model.Tempistica"
- };
-
- _methodName4 = "dynamicQuery";
-
- _methodParameterTypes4 = new String[] { };
-
- _methodName5 = "dynamicQuery";
-
- _methodParameterTypes5 = new String[] {
- "com.liferay.portal.kernel.dao.orm.DynamicQuery"
- };
-
- _methodName6 = "dynamicQuery";
-
- _methodParameterTypes6 = new String[] {
- "com.liferay.portal.kernel.dao.orm.DynamicQuery", "int", "int"
- };
-
- _methodName7 = "dynamicQuery";
-
- _methodParameterTypes7 = new String[] {
- "com.liferay.portal.kernel.dao.orm.DynamicQuery", "int", "int",
- "com.liferay.portal.kernel.util.OrderByComparator"
- };
-
- _methodName8 = "dynamicQueryCount";
-
- _methodParameterTypes8 = new String[] {
- "com.liferay.portal.kernel.dao.orm.DynamicQuery"
- };
-
- _methodName9 = "dynamicQueryCount";
-
- _methodParameterTypes9 = new String[] {
- "com.liferay.portal.kernel.dao.orm.DynamicQuery",
- "com.liferay.portal.kernel.dao.orm.Projection"
- };
-
- _methodName10 = "fetchTempistica";
-
- _methodParameterTypes10 = new String[] { "long" };
-
- _methodName11 = "fetchTempisticaByUuidAndCompanyId";
-
- _methodParameterTypes11 = new String[] { "java.lang.String", "long" };
-
- _methodName12 = "fetchTempisticaByUuidAndGroupId";
-
- _methodParameterTypes12 = new String[] { "java.lang.String", "long" };
-
- _methodName13 = "getTempistica";
-
- _methodParameterTypes13 = new String[] { "long" };
-
- _methodName14 = "getPersistedModel";
-
- _methodParameterTypes14 = new String[] { "java.io.Serializable" };
-
- _methodName15 = "getTempisticaByUuidAndCompanyId";
-
- _methodParameterTypes15 = new String[] { "java.lang.String", "long" };
-
- _methodName16 = "getTempisticaByUuidAndGroupId";
-
- _methodParameterTypes16 = new String[] { "java.lang.String", "long" };
-
- _methodName17 = "getTempisticas";
-
- _methodParameterTypes17 = new String[] { "int", "int" };
-
- _methodName18 = "getTempisticasCount";
-
- _methodParameterTypes18 = new String[] { };
-
- _methodName19 = "updateTempistica";
-
- _methodParameterTypes19 = new String[] {
- "it.tref.liferay.portos.bo.model.Tempistica"
- };
-
- _methodName20 = "getBeanIdentifier";
-
- _methodParameterTypes20 = new String[] { };
-
- _methodName21 = "setBeanIdentifier";
-
- _methodParameterTypes21 = new String[] { "java.lang.String" };
-
- _methodName23 = "addTempistica";
-
- _methodParameterTypes23 = new String[] {
- "long", "long", "java.lang.String", "java.util.Date",
- "com.liferay.portal.service.ServiceContext"
- };
-
- _methodName24 = "stopTempistica";
-
- _methodParameterTypes24 = new String[] { "long", "java.util.Date" };
-
- _methodName25 = "ravvioTempistica";
-
- _methodParameterTypes25 = new String[] { "long", "java.util.Date" };
-
- _methodName26 = "concludiTempistica";
-
- _methodParameterTypes26 = new String[] { "long", "java.util.Date" };
-
- _methodName27 = "getTempistica";
-
- _methodParameterTypes27 = new String[] {
- "long", "long", "java.lang.String", "boolean"
- };
-
- _methodName28 = "countScadenzePraticheInScadenza";
-
- _methodParameterTypes28 = new String[] { "long", "long" };
-
- _methodName29 = "countScadenzePraticheScadute";
-
- _methodParameterTypes29 = new String[] { "long", "long" };
-
- _methodName30 = "countScadenzeIntegrazioniScadute";
-
- _methodParameterTypes30 = new String[] { "long", "long" };
-
- _methodName31 = "countPraticheAttive";
-
- _methodParameterTypes31 = new String[] { "long", "long" };
-
- _methodName32 = "getScadenzePratiche";
-
- _methodParameterTypes32 = new String[] {
- "long", "long", "int", "int", "java.lang.Integer",
- "java.lang.String", "java.lang.String"
- };
-
- _methodName33 = "getScadenzeIntegrazioni";
-
- _methodParameterTypes33 = new String[] {
- "long", "long", "int", "int", "java.lang.Integer"
- };
-
- _methodName34 = "countScadenzePratiche";
-
- _methodParameterTypes34 = new String[] {
- "long", "long", "java.lang.Integer", "java.lang.String",
- "java.lang.String"
- };
-
- _methodName35 = "countScadenzeIntegrazioni";
-
- _methodParameterTypes35 = new String[] { "long", "long" };
-
- _methodName36 = "findByIntPratica_Tipo";
-
- _methodParameterTypes36 = new String[] { "long", "java.lang.String" };
-
- _methodName37 = "countPraticheScaduteAutorizzazione";
-
- _methodParameterTypes37 = new String[] { "long", "long" };
-
- _methodName38 = "countPraticheScaduteControlloObbligatorio";
-
- _methodParameterTypes38 = new String[] { "long", "long" };
-
- _methodName39 = "countPraticheInScadenzaAutorizzazioni";
-
- _methodParameterTypes39 = new String[] { "long", "long" };
-
- _methodName40 = "countPraticheInScadenzaControlloObbligatorio";
-
- _methodParameterTypes40 = new String[] { "long", "long" };
-
- _methodName41 = "praticheAttiveAutorizzazioni";
-
- _methodParameterTypes41 = new String[] { "long", "long" };
-
- _methodName42 = "praticheAttiveControlloObbligatorio";
-
- _methodParameterTypes42 = new String[] { "long", "long" };
-
- _methodName43 = "getDtSottopostaAParere";
-
- _methodParameterTypes43 = new String[] { "long" };
-
- _methodName44 = "countPraticheAttivePerDiscriminazione";
-
- _methodParameterTypes44 = new String[] { "long", "long" };
-
- _methodName45 = "scadenzePraticheForBackwardCompatibility";
-
- _methodParameterTypes45 = new String[] { "long", "long", "int", "int" };
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName0,
- _methodParameterTypes0,
- new Object[] { ClpSerializer.translateInput(tempistica) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica createTempistica(
- long tempisticaId) {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName1,
- _methodParameterTypes1, new Object[] { tempisticaId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName2,
- _methodParameterTypes2, new Object[] { tempisticaId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
- throw (com.liferay.portal.kernel.exception.PortalException)t;
- }
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName3,
- _methodParameterTypes3,
- new Object[] { ClpSerializer.translateInput(tempistica) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName4,
- _methodParameterTypes4, new Object[] { });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (com.liferay.portal.kernel.dao.orm.DynamicQuery)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName5,
- _methodParameterTypes5,
- new Object[] { ClpSerializer.translateInput(dynamicQuery) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end) throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName6,
- _methodParameterTypes6,
- new Object[] {
- ClpSerializer.translateInput(dynamicQuery),
-
- start,
-
- end
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName7,
- _methodParameterTypes7,
- new Object[] {
- ClpSerializer.translateInput(dynamicQuery),
-
- start,
-
- end,
-
- ClpSerializer.translateInput(orderByComparator)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public long dynamicQueryCount(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName8,
- _methodParameterTypes8,
- new Object[] { ClpSerializer.translateInput(dynamicQuery) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Long)returnObj).longValue();
- }
-
- @Override
- public long dynamicQueryCount(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
- com.liferay.portal.kernel.dao.orm.Projection projection)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName9,
- _methodParameterTypes9,
- new Object[] {
- ClpSerializer.translateInput(dynamicQuery),
-
- ClpSerializer.translateInput(projection)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Long)returnObj).longValue();
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName10,
- _methodParameterTypes10, new Object[] { tempisticaId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName11,
- _methodParameterTypes11,
- new Object[] { ClpSerializer.translateInput(uuid), companyId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName12,
- _methodParameterTypes12,
- new Object[] { ClpSerializer.translateInput(uuid), groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName13,
- _methodParameterTypes13, new Object[] { tempisticaId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
- throw (com.liferay.portal.kernel.exception.PortalException)t;
- }
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public com.liferay.portal.model.PersistedModel getPersistedModel(
- java.io.Serializable primaryKeyObj)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName14,
- _methodParameterTypes14,
- new Object[] { ClpSerializer.translateInput(primaryKeyObj) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
- throw (com.liferay.portal.kernel.exception.PortalException)t;
- }
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (com.liferay.portal.model.PersistedModel)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName15,
- _methodParameterTypes15,
- new Object[] { ClpSerializer.translateInput(uuid), companyId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
- throw (com.liferay.portal.kernel.exception.PortalException)t;
- }
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName16,
- _methodParameterTypes16,
- new Object[] { ClpSerializer.translateInput(uuid), groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
- throw (com.liferay.portal.kernel.exception.PortalException)t;
- }
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public java.util.List getTempisticas(
- int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName17,
- _methodParameterTypes17, new Object[] { start, end });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public int getTempisticasCount()
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName18,
- _methodParameterTypes18, new Object[] { });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica updateTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName19,
- _methodParameterTypes19,
- new Object[] { ClpSerializer.translateInput(tempistica) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public java.lang.String getBeanIdentifier() {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName20,
- _methodParameterTypes20, new Object[] { });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.lang.String)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public void setBeanIdentifier(java.lang.String beanIdentifier) {
- try {
- _invokableLocalService.invokeMethod(_methodName21,
- _methodParameterTypes21,
- new Object[] { ClpSerializer.translateInput(beanIdentifier) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
- }
-
- @Override
- public java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable {
- throw new UnsupportedOperationException();
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- long intPraticaId, long dettPraticaId, java.lang.String tipo,
- java.util.Date start,
- com.liferay.portal.service.ServiceContext serviceContext)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName23,
- _methodParameterTypes23,
- new Object[] {
- intPraticaId,
-
- dettPraticaId,
-
- ClpSerializer.translateInput(tipo),
-
- ClpSerializer.translateInput(start),
-
- ClpSerializer.translateInput(serviceContext)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica stopTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName24,
- _methodParameterTypes24,
- new Object[] {
- tempisticaId,
-
- ClpSerializer.translateInput(stop)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica ravvioTempistica(
- long tempisticaId, java.util.Date date)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName25,
- _methodParameterTypes25,
- new Object[] {
- tempisticaId,
-
- ClpSerializer.translateInput(date)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica concludiTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName26,
- _methodParameterTypes26,
- new Object[] {
- tempisticaId,
-
- ClpSerializer.translateInput(stop)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName27,
- _methodParameterTypes27,
- new Object[] {
- companyId,
-
- intPraticaId,
-
- ClpSerializer.translateInput(tipo),
-
- completo
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (it.tref.liferay.portos.bo.model.Tempistica)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public int countScadenzePraticheInScadenza(long companyId, long groupId) {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName28,
- _methodParameterTypes28, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public int countScadenzePraticheScadute(long companyId, long groupId) {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName29,
- _methodParameterTypes29, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public int countScadenzeIntegrazioniScadute(long companyId, long groupId) {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName30,
- _methodParameterTypes30, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public int countPraticheAttive(long companyId, long groupId) {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName31,
- _methodParameterTypes31, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public java.util.List getScadenzePratiche(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName32,
- _methodParameterTypes32,
- new Object[] {
- companyId,
-
- groupId,
-
- start,
-
- end,
-
- ClpSerializer.translateInput(statoPratica),
-
- ClpSerializer.translateInput(tipoPratica),
-
- ClpSerializer.translateInput(istruttore)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public java.util.List getScadenzeIntegrazioni(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName33,
- _methodParameterTypes33,
- new Object[] {
- companyId,
-
- groupId,
-
- start,
-
- end,
-
- ClpSerializer.translateInput(statoPratica)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public int countScadenzePratiche(long companyId, long groupId,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName34,
- _methodParameterTypes34,
- new Object[] {
- companyId,
-
- groupId,
-
- ClpSerializer.translateInput(statoPratica),
-
- ClpSerializer.translateInput(tipoPratica),
-
- ClpSerializer.translateInput(istruttore)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public int countScadenzeIntegrazioni(long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName35,
- _methodParameterTypes35, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName36,
- _methodParameterTypes36,
- new Object[] {
- intPraticaId,
-
- ClpSerializer.translateInput(tipo)
- });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public int countPraticheScaduteAutorizzazione(long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName37,
- _methodParameterTypes37, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public int countPraticheScaduteControlloObbligatorio(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName38,
- _methodParameterTypes38, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public int countPraticheInScadenzaAutorizzazioni(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName39,
- _methodParameterTypes39, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public int countPraticheInScadenzaControlloObbligatorio(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName40,
- _methodParameterTypes40, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return ((Integer)returnObj).intValue();
- }
-
- @Override
- public java.util.List praticheAttiveAutorizzazioni(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName41,
- _methodParameterTypes41, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public java.util.List praticheAttiveControlloObbligatorio(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName42,
- _methodParameterTypes42, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public java.lang.String getDtSottopostaAParere(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName43,
- _methodParameterTypes43, new Object[] { intPraticaId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof com.liferay.portal.kernel.exception.SystemException) {
- throw (com.liferay.portal.kernel.exception.SystemException)t;
- }
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.lang.String)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public java.util.List countPraticheAttivePerDiscriminazione(
- long companyId, long groupId) {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName44,
- _methodParameterTypes44, new Object[] { companyId, groupId });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public java.util.List scadenzePraticheForBackwardCompatibility(
- long companyId, long groupId, int start, int end) {
- Object returnObj = null;
-
- try {
- returnObj = _invokableLocalService.invokeMethod(_methodName45,
- _methodParameterTypes45,
- new Object[] { companyId, groupId, start, end });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.util.List)ClpSerializer.translateOutput(returnObj);
- }
-
- private InvokableLocalService _invokableLocalService;
- private String _methodName0;
- private String[] _methodParameterTypes0;
- private String _methodName1;
- private String[] _methodParameterTypes1;
- private String _methodName2;
- private String[] _methodParameterTypes2;
- private String _methodName3;
- private String[] _methodParameterTypes3;
- private String _methodName4;
- private String[] _methodParameterTypes4;
- private String _methodName5;
- private String[] _methodParameterTypes5;
- private String _methodName6;
- private String[] _methodParameterTypes6;
- private String _methodName7;
- private String[] _methodParameterTypes7;
- private String _methodName8;
- private String[] _methodParameterTypes8;
- private String _methodName9;
- private String[] _methodParameterTypes9;
- private String _methodName10;
- private String[] _methodParameterTypes10;
- private String _methodName11;
- private String[] _methodParameterTypes11;
- private String _methodName12;
- private String[] _methodParameterTypes12;
- private String _methodName13;
- private String[] _methodParameterTypes13;
- private String _methodName14;
- private String[] _methodParameterTypes14;
- private String _methodName15;
- private String[] _methodParameterTypes15;
- private String _methodName16;
- private String[] _methodParameterTypes16;
- private String _methodName17;
- private String[] _methodParameterTypes17;
- private String _methodName18;
- private String[] _methodParameterTypes18;
- private String _methodName19;
- private String[] _methodParameterTypes19;
- private String _methodName20;
- private String[] _methodParameterTypes20;
- private String _methodName21;
- private String[] _methodParameterTypes21;
- private String _methodName23;
- private String[] _methodParameterTypes23;
- private String _methodName24;
- private String[] _methodParameterTypes24;
- private String _methodName25;
- private String[] _methodParameterTypes25;
- private String _methodName26;
- private String[] _methodParameterTypes26;
- private String _methodName27;
- private String[] _methodParameterTypes27;
- private String _methodName28;
- private String[] _methodParameterTypes28;
- private String _methodName29;
- private String[] _methodParameterTypes29;
- private String _methodName30;
- private String[] _methodParameterTypes30;
- private String _methodName31;
- private String[] _methodParameterTypes31;
- private String _methodName32;
- private String[] _methodParameterTypes32;
- private String _methodName33;
- private String[] _methodParameterTypes33;
- private String _methodName34;
- private String[] _methodParameterTypes34;
- private String _methodName35;
- private String[] _methodParameterTypes35;
- private String _methodName36;
- private String[] _methodParameterTypes36;
- private String _methodName37;
- private String[] _methodParameterTypes37;
- private String _methodName38;
- private String[] _methodParameterTypes38;
- private String _methodName39;
- private String[] _methodParameterTypes39;
- private String _methodName40;
- private String[] _methodParameterTypes40;
- private String _methodName41;
- private String[] _methodParameterTypes41;
- private String _methodName42;
- private String[] _methodParameterTypes42;
- private String _methodName43;
- private String[] _methodParameterTypes43;
- private String _methodName44;
- private String[] _methodParameterTypes44;
- private String _methodName45;
- private String[] _methodParameterTypes45;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceUtil.java
deleted file mode 100644
index a3f9bba0..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceUtil.java
+++ /dev/null
@@ -1,521 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.kernel.bean.PortletBeanLocatorUtil;
-import com.liferay.portal.kernel.util.ReferenceRegistry;
-import com.liferay.portal.service.InvokableLocalService;
-
-/**
- * Provides the local service utility for Tempistica. This utility wraps
- * {@link it.tref.liferay.portos.bo.service.impl.TempisticaLocalServiceImpl} and is the
- * primary access point for service operations in application layer code running
- * on the local server. Methods of this service will not have security checks
- * based on the propagated JAAS credentials because this service can only be
- * accessed from within the same VM.
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaLocalService
- * @see it.tref.liferay.portos.bo.service.base.TempisticaLocalServiceBaseImpl
- * @see it.tref.liferay.portos.bo.service.impl.TempisticaLocalServiceImpl
- * @generated
- */
-public class TempisticaLocalServiceUtil {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this class directly. Add custom service methods to {@link it.tref.liferay.portos.bo.service.impl.TempisticaLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
- */
-
- /**
- * Adds the tempistica to the database. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was added
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().addTempistica(tempistica);
- }
-
- /**
- * Creates a new tempistica with the primary key. Does not add the tempistica to the database.
- *
- * @param tempisticaId the primary key for the new tempistica
- * @return the new tempistica
- */
- public static it.tref.liferay.portos.bo.model.Tempistica createTempistica(
- long tempisticaId) {
- return getService().createTempistica(tempisticaId);
- }
-
- /**
- * Deletes the tempistica with the primary key from the database. Also notifies the appropriate model listeners.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica that was removed
- * @throws PortalException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return getService().deleteTempistica(tempisticaId);
- }
-
- /**
- * Deletes the tempistica from the database. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was removed
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().deleteTempistica(tempistica);
- }
-
- public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
- return getService().dynamicQuery();
- }
-
- /**
- * 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
- */
- @SuppressWarnings("rawtypes")
- public static java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().dynamicQuery(dynamicQuery);
- }
-
- /**
- * Performs a dynamic query on the database and returns a range of the matching rows.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param dynamicQuery the dynamic query
- * @param start the lower bound of the range of model instances
- * @param end the upper bound of the range of model instances (not inclusive)
- * @return the range of matching rows
- * @throws SystemException if a system exception occurred
- */
- @SuppressWarnings("rawtypes")
- public static java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end) throws com.liferay.portal.kernel.exception.SystemException {
- return getService().dynamicQuery(dynamicQuery, start, end);
- }
-
- /**
- * Performs a dynamic query on the database and returns an ordered range of the matching rows.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param dynamicQuery the dynamic query
- * @param start the lower bound of the range of model instances
- * @param end the upper bound of the range of model instances (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching rows
- * @throws SystemException if a system exception occurred
- */
- @SuppressWarnings("rawtypes")
- public static java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .dynamicQuery(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
- */
- public static long dynamicQueryCount(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().dynamicQueryCount(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
- */
- public static long dynamicQueryCount(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
- com.liferay.portal.kernel.dao.orm.Projection projection)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().dynamicQueryCount(dynamicQuery, projection);
- }
-
- public static it.tref.liferay.portos.bo.model.Tempistica fetchTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().fetchTempistica(tempisticaId);
- }
-
- /**
- * Returns the tempistica with the matching UUID and company.
- *
- * @param uuid the tempistica's UUID
- * @param companyId the primary key of the company
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().fetchTempisticaByUuidAndCompanyId(uuid, companyId);
- }
-
- /**
- * Returns the tempistica matching the UUID and group.
- *
- * @param uuid the tempistica's UUID
- * @param groupId the primary key of the group
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().fetchTempisticaByUuidAndGroupId(uuid, groupId);
- }
-
- /**
- * Returns the tempistica with the primary key.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica
- * @throws PortalException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return getService().getTempistica(tempisticaId);
- }
-
- public static com.liferay.portal.model.PersistedModel getPersistedModel(
- java.io.Serializable primaryKeyObj)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return getService().getPersistedModel(primaryKeyObj);
- }
-
- /**
- * Returns the tempistica with the matching UUID and company.
- *
- * @param uuid the tempistica's UUID
- * @param companyId the primary key of the company
- * @return the matching tempistica
- * @throws PortalException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return getService().getTempisticaByUuidAndCompanyId(uuid, companyId);
- }
-
- /**
- * Returns the tempistica matching the UUID and group.
- *
- * @param uuid the tempistica's UUID
- * @param groupId the primary key of the group
- * @return the matching tempistica
- * @throws PortalException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return getService().getTempisticaByUuidAndGroupId(uuid, groupId);
- }
-
- /**
- * Returns a range of all the tempisticas.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List getTempisticas(
- int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().getTempisticas(start, end);
- }
-
- /**
- * Returns the number of tempisticas.
- *
- * @return the number of tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static int getTempisticasCount()
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().getTempisticasCount();
- }
-
- /**
- * Updates the tempistica in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was updated
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica updateTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().updateTempistica(tempistica);
- }
-
- /**
- * Returns the Spring bean ID for this bean.
- *
- * @return the Spring bean ID for this bean
- */
- public static java.lang.String getBeanIdentifier() {
- return getService().getBeanIdentifier();
- }
-
- /**
- * Sets the Spring bean ID for this bean.
- *
- * @param beanIdentifier the Spring bean ID for this bean
- */
- public static void setBeanIdentifier(java.lang.String beanIdentifier) {
- getService().setBeanIdentifier(beanIdentifier);
- }
-
- public static java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable {
- return getService().invokeMethod(name, parameterTypes, arguments);
- }
-
- public static it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- long intPraticaId, long dettPraticaId, java.lang.String tipo,
- java.util.Date start,
- com.liferay.portal.service.ServiceContext serviceContext)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .addTempistica(intPraticaId, dettPraticaId, tipo, start,
- serviceContext);
- }
-
- public static it.tref.liferay.portos.bo.model.Tempistica stopTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().stopTempistica(tempisticaId, stop);
- }
-
- public static it.tref.liferay.portos.bo.model.Tempistica ravvioTempistica(
- long tempisticaId, java.util.Date date)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().ravvioTempistica(tempisticaId, date);
- }
-
- public static it.tref.liferay.portos.bo.model.Tempistica concludiTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().concludiTempistica(tempisticaId, stop);
- }
-
- public static it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .getTempistica(companyId, intPraticaId, tipo, completo);
- }
-
- public static int countScadenzePraticheInScadenza(long companyId,
- long groupId) {
- return getService().countScadenzePraticheInScadenza(companyId, groupId);
- }
-
- public static int countScadenzePraticheScadute(long companyId, long groupId) {
- return getService().countScadenzePraticheScadute(companyId, groupId);
- }
-
- public static int countScadenzeIntegrazioniScadute(long companyId,
- long groupId) {
- return getService().countScadenzeIntegrazioniScadute(companyId, groupId);
- }
-
- public static int countPraticheAttive(long companyId, long groupId) {
- return getService().countPraticheAttive(companyId, groupId);
- }
-
- public static java.util.List getScadenzePratiche(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .getScadenzePratiche(companyId, groupId, start, end,
- statoPratica, tipoPratica, istruttore);
- }
-
- public static java.util.List getScadenzeIntegrazioni(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .getScadenzeIntegrazioni(companyId, groupId, start, end,
- statoPratica);
- }
-
- public static int countScadenzePratiche(long companyId, long groupId,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .countScadenzePratiche(companyId, groupId, statoPratica,
- tipoPratica, istruttore);
- }
-
- public static int countScadenzeIntegrazioni(long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().countScadenzeIntegrazioni(companyId, groupId);
- }
-
- public static java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().findByIntPratica_Tipo(intPraticaId, tipo);
- }
-
- public static int countPraticheScaduteAutorizzazione(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .countPraticheScaduteAutorizzazione(companyId, groupId);
- }
-
- public static int countPraticheScaduteControlloObbligatorio(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .countPraticheScaduteControlloObbligatorio(companyId, groupId);
- }
-
- public static int countPraticheInScadenzaAutorizzazioni(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .countPraticheInScadenzaAutorizzazioni(companyId, groupId);
- }
-
- public static int countPraticheInScadenzaControlloObbligatorio(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .countPraticheInScadenzaControlloObbligatorio(companyId,
- groupId);
- }
-
- public static java.util.List praticheAttiveAutorizzazioni(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().praticheAttiveAutorizzazioni(companyId, groupId);
- }
-
- public static java.util.List praticheAttiveControlloObbligatorio(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService()
- .praticheAttiveControlloObbligatorio(companyId, groupId);
- }
-
- public static java.lang.String getDtSottopostaAParere(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getService().getDtSottopostaAParere(intPraticaId);
- }
-
- public static java.util.List countPraticheAttivePerDiscriminazione(
- long companyId, long groupId) {
- return getService()
- .countPraticheAttivePerDiscriminazione(companyId, groupId);
- }
-
- public static java.util.List scadenzePraticheForBackwardCompatibility(
- long companyId, long groupId, int start, int end) {
- return getService()
- .scadenzePraticheForBackwardCompatibility(companyId,
- groupId, start, end);
- }
-
- public static void clearService() {
- _service = null;
- }
-
- public static TempisticaLocalService getService() {
- if (_service == null) {
- InvokableLocalService invokableLocalService = (InvokableLocalService)PortletBeanLocatorUtil.locate(ClpSerializer.getServletContextName(),
- TempisticaLocalService.class.getName());
-
- if (invokableLocalService instanceof TempisticaLocalService) {
- _service = (TempisticaLocalService)invokableLocalService;
- }
- else {
- _service = new TempisticaLocalServiceClp(invokableLocalService);
- }
-
- ReferenceRegistry.registerReference(TempisticaLocalServiceUtil.class,
- "_service");
- }
-
- return _service;
- }
-
- /**
- * @deprecated As of 6.2.0
- */
- public void setService(TempisticaLocalService service) {
- }
-
- private static TempisticaLocalService _service;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceWrapper.java
deleted file mode 100644
index 59f35008..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaLocalServiceWrapper.java
+++ /dev/null
@@ -1,556 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.service.ServiceWrapper;
-
-/**
- * Provides a wrapper for {@link TempisticaLocalService}.
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaLocalService
- * @generated
- */
-public class TempisticaLocalServiceWrapper implements TempisticaLocalService,
- ServiceWrapper {
- public TempisticaLocalServiceWrapper(
- TempisticaLocalService tempisticaLocalService) {
- _tempisticaLocalService = tempisticaLocalService;
- }
-
- /**
- * Adds the tempistica to the database. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was added
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.addTempistica(tempistica);
- }
-
- /**
- * Creates a new tempistica with the primary key. Does not add the tempistica to the database.
- *
- * @param tempisticaId the primary key for the new tempistica
- * @return the new tempistica
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica createTempistica(
- long tempisticaId) {
- return _tempisticaLocalService.createTempistica(tempisticaId);
- }
-
- /**
- * Deletes the tempistica with the primary key from the database. Also notifies the appropriate model listeners.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica that was removed
- * @throws PortalException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.deleteTempistica(tempisticaId);
- }
-
- /**
- * Deletes the tempistica from the database. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was removed
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica deleteTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.deleteTempistica(tempistica);
- }
-
- @Override
- public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
- return _tempisticaLocalService.dynamicQuery();
- }
-
- /**
- * 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 java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.dynamicQuery(dynamicQuery);
- }
-
- /**
- * Performs a dynamic query on the database and returns a range of the matching rows.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param dynamicQuery the dynamic query
- * @param start the lower bound of the range of model instances
- * @param end the upper bound of the range of model instances (not inclusive)
- * @return the range of matching rows
- * @throws SystemException if a system exception occurred
- */
- @Override
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end) throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.dynamicQuery(dynamicQuery, start, end);
- }
-
- /**
- * Performs a dynamic query on the database and returns an ordered range of the matching rows.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param dynamicQuery the dynamic query
- * @param start the lower bound of the range of model instances
- * @param end the upper bound of the range of model instances (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching rows
- * @throws SystemException if a system exception occurred
- */
- @Override
- @SuppressWarnings("rawtypes")
- public java.util.List dynamicQuery(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
- int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.dynamicQuery(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(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.dynamicQueryCount(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(
- com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
- com.liferay.portal.kernel.dao.orm.Projection projection)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.dynamicQueryCount(dynamicQuery,
- projection);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.fetchTempistica(tempisticaId);
- }
-
- /**
- * Returns the tempistica with the matching UUID and company.
- *
- * @param uuid the tempistica's UUID
- * @param companyId the primary key of the company
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.fetchTempisticaByUuidAndCompanyId(uuid,
- companyId);
- }
-
- /**
- * Returns the tempistica matching the UUID and group.
- *
- * @param uuid the tempistica's UUID
- * @param groupId the primary key of the group
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica fetchTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.fetchTempisticaByUuidAndGroupId(uuid,
- groupId);
- }
-
- /**
- * Returns the tempistica with the primary key.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica
- * @throws PortalException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getTempistica(tempisticaId);
- }
-
- @Override
- public com.liferay.portal.model.PersistedModel getPersistedModel(
- java.io.Serializable primaryKeyObj)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getPersistedModel(primaryKeyObj);
- }
-
- /**
- * Returns the tempistica with the matching UUID and company.
- *
- * @param uuid the tempistica's UUID
- * @param companyId the primary key of the company
- * @return the matching tempistica
- * @throws PortalException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndCompanyId(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getTempisticaByUuidAndCompanyId(uuid,
- companyId);
- }
-
- /**
- * Returns the tempistica matching the UUID and group.
- *
- * @param uuid the tempistica's UUID
- * @param groupId the primary key of the group
- * @return the matching tempistica
- * @throws PortalException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempisticaByUuidAndGroupId(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.PortalException,
- com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getTempisticaByUuidAndGroupId(uuid,
- groupId);
- }
-
- /**
- * Returns a range of all the tempisticas.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of tempisticas
- * @throws SystemException if a system exception occurred
- */
- @Override
- public java.util.List getTempisticas(
- int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getTempisticas(start, end);
- }
-
- /**
- * Returns the number of tempisticas.
- *
- * @return the number of tempisticas
- * @throws SystemException if a system exception occurred
- */
- @Override
- public int getTempisticasCount()
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getTempisticasCount();
- }
-
- /**
- * Updates the tempistica in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
- *
- * @param tempistica the tempistica
- * @return the tempistica that was updated
- * @throws SystemException if a system exception occurred
- */
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica updateTempistica(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.updateTempistica(tempistica);
- }
-
- /**
- * Returns the Spring bean ID for this bean.
- *
- * @return the Spring bean ID for this bean
- */
- @Override
- public java.lang.String getBeanIdentifier() {
- return _tempisticaLocalService.getBeanIdentifier();
- }
-
- /**
- * Sets the Spring bean ID for this bean.
- *
- * @param beanIdentifier the Spring bean ID for this bean
- */
- @Override
- public void setBeanIdentifier(java.lang.String beanIdentifier) {
- _tempisticaLocalService.setBeanIdentifier(beanIdentifier);
- }
-
- @Override
- public java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable {
- return _tempisticaLocalService.invokeMethod(name, parameterTypes,
- arguments);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica addTempistica(
- long intPraticaId, long dettPraticaId, java.lang.String tipo,
- java.util.Date start,
- com.liferay.portal.service.ServiceContext serviceContext)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.addTempistica(intPraticaId,
- dettPraticaId, tipo, start, serviceContext);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica stopTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.stopTempistica(tempisticaId, stop);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica ravvioTempistica(
- long tempisticaId, java.util.Date date)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.ravvioTempistica(tempisticaId, date);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica concludiTempistica(
- long tempisticaId, java.util.Date stop)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.concludiTempistica(tempisticaId, stop);
- }
-
- @Override
- public it.tref.liferay.portos.bo.model.Tempistica getTempistica(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getTempistica(companyId, intPraticaId,
- tipo, completo);
- }
-
- @Override
- public int countScadenzePraticheInScadenza(long companyId, long groupId) {
- return _tempisticaLocalService.countScadenzePraticheInScadenza(companyId,
- groupId);
- }
-
- @Override
- public int countScadenzePraticheScadute(long companyId, long groupId) {
- return _tempisticaLocalService.countScadenzePraticheScadute(companyId,
- groupId);
- }
-
- @Override
- public int countScadenzeIntegrazioniScadute(long companyId, long groupId) {
- return _tempisticaLocalService.countScadenzeIntegrazioniScadute(companyId,
- groupId);
- }
-
- @Override
- public int countPraticheAttive(long companyId, long groupId) {
- return _tempisticaLocalService.countPraticheAttive(companyId, groupId);
- }
-
- @Override
- public java.util.List getScadenzePratiche(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getScadenzePratiche(companyId, groupId,
- start, end, statoPratica, tipoPratica, istruttore);
- }
-
- @Override
- public java.util.List getScadenzeIntegrazioni(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getScadenzeIntegrazioni(companyId,
- groupId, start, end, statoPratica);
- }
-
- @Override
- public int countScadenzePratiche(long companyId, long groupId,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.countScadenzePratiche(companyId,
- groupId, statoPratica, tipoPratica, istruttore);
- }
-
- @Override
- public int countScadenzeIntegrazioni(long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.countScadenzeIntegrazioni(companyId,
- groupId);
- }
-
- @Override
- public java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.findByIntPratica_Tipo(intPraticaId, tipo);
- }
-
- @Override
- public int countPraticheScaduteAutorizzazione(long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.countPraticheScaduteAutorizzazione(companyId,
- groupId);
- }
-
- @Override
- public int countPraticheScaduteControlloObbligatorio(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.countPraticheScaduteControlloObbligatorio(companyId,
- groupId);
- }
-
- @Override
- public int countPraticheInScadenzaAutorizzazioni(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.countPraticheInScadenzaAutorizzazioni(companyId,
- groupId);
- }
-
- @Override
- public int countPraticheInScadenzaControlloObbligatorio(long companyId,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.countPraticheInScadenzaControlloObbligatorio(companyId,
- groupId);
- }
-
- @Override
- public java.util.List praticheAttiveAutorizzazioni(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.praticheAttiveAutorizzazioni(companyId,
- groupId);
- }
-
- @Override
- public java.util.List praticheAttiveControlloObbligatorio(
- long companyId, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.praticheAttiveControlloObbligatorio(companyId,
- groupId);
- }
-
- @Override
- public java.lang.String getDtSottopostaAParere(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return _tempisticaLocalService.getDtSottopostaAParere(intPraticaId);
- }
-
- @Override
- public java.util.List countPraticheAttivePerDiscriminazione(
- long companyId, long groupId) {
- return _tempisticaLocalService.countPraticheAttivePerDiscriminazione(companyId,
- groupId);
- }
-
- @Override
- public java.util.List scadenzePraticheForBackwardCompatibility(
- long companyId, long groupId, int start, int end) {
- return _tempisticaLocalService.scadenzePraticheForBackwardCompatibility(companyId,
- groupId, start, end);
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
- */
- public TempisticaLocalService getWrappedTempisticaLocalService() {
- return _tempisticaLocalService;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
- */
- public void setWrappedTempisticaLocalService(
- TempisticaLocalService tempisticaLocalService) {
- _tempisticaLocalService = tempisticaLocalService;
- }
-
- @Override
- public TempisticaLocalService getWrappedService() {
- return _tempisticaLocalService;
- }
-
- @Override
- public void setWrappedService(TempisticaLocalService tempisticaLocalService) {
- _tempisticaLocalService = tempisticaLocalService;
- }
-
- private TempisticaLocalService _tempisticaLocalService;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaService.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaService.java
deleted file mode 100644
index 1f9b929a..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaService.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.kernel.exception.PortalException;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.jsonwebservice.JSONWebService;
-import com.liferay.portal.kernel.transaction.Isolation;
-import com.liferay.portal.kernel.transaction.Transactional;
-import com.liferay.portal.security.ac.AccessControlled;
-import com.liferay.portal.service.BaseService;
-import com.liferay.portal.service.InvokableService;
-
-/**
- * Provides the remote service interface for Tempistica. Methods of this
- * service are expected to have security checks based on the propagated JAAS
- * credentials because this service can be accessed remotely.
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaServiceUtil
- * @see it.tref.liferay.portos.bo.service.base.TempisticaServiceBaseImpl
- * @see it.tref.liferay.portos.bo.service.impl.TempisticaServiceImpl
- * @generated
- */
-@AccessControlled
-@JSONWebService
-@Transactional(isolation = Isolation.PORTAL, rollbackFor = {
- PortalException.class, SystemException.class})
-public interface TempisticaService extends BaseService, InvokableService {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. Always use {@link TempisticaServiceUtil} to access the tempistica remote service. Add custom service methods to {@link it.tref.liferay.portos.bo.service.impl.TempisticaServiceImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
- */
-
- /**
- * Returns the Spring bean ID for this bean.
- *
- * @return the Spring bean ID for this bean
- */
- public java.lang.String getBeanIdentifier();
-
- /**
- * Sets the Spring bean ID for this bean.
- *
- * @param beanIdentifier the Spring bean ID for this bean
- */
- public void setBeanIdentifier(java.lang.String beanIdentifier);
-
- @Override
- public java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceClp.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceClp.java
deleted file mode 100644
index 2b301889..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceClp.java
+++ /dev/null
@@ -1,91 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.service.InvokableService;
-
-/**
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @generated
- */
-public class TempisticaServiceClp implements TempisticaService {
- public TempisticaServiceClp(InvokableService invokableService) {
- _invokableService = invokableService;
-
- _methodName0 = "getBeanIdentifier";
-
- _methodParameterTypes0 = new String[] { };
-
- _methodName1 = "setBeanIdentifier";
-
- _methodParameterTypes1 = new String[] { "java.lang.String" };
- }
-
- @Override
- public java.lang.String getBeanIdentifier() {
- Object returnObj = null;
-
- try {
- returnObj = _invokableService.invokeMethod(_methodName0,
- _methodParameterTypes0, new Object[] { });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
-
- return (java.lang.String)ClpSerializer.translateOutput(returnObj);
- }
-
- @Override
- public void setBeanIdentifier(java.lang.String beanIdentifier) {
- try {
- _invokableService.invokeMethod(_methodName1,
- _methodParameterTypes1,
- new Object[] { ClpSerializer.translateInput(beanIdentifier) });
- }
- catch (Throwable t) {
- t = ClpSerializer.translateThrowable(t);
-
- if (t instanceof RuntimeException) {
- throw (RuntimeException)t;
- }
- else {
- throw new RuntimeException(t.getClass().getName() +
- " is not a valid exception");
- }
- }
- }
-
- @Override
- public java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable {
- throw new UnsupportedOperationException();
- }
-
- private InvokableService _invokableService;
- private String _methodName0;
- private String[] _methodParameterTypes0;
- private String _methodName1;
- private String[] _methodParameterTypes1;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceUtil.java
deleted file mode 100644
index 58da523e..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceUtil.java
+++ /dev/null
@@ -1,96 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.kernel.bean.PortletBeanLocatorUtil;
-import com.liferay.portal.kernel.util.ReferenceRegistry;
-import com.liferay.portal.service.InvokableService;
-
-/**
- * Provides the remote service utility for Tempistica. This utility wraps
- * {@link it.tref.liferay.portos.bo.service.impl.TempisticaServiceImpl} and is the
- * primary access point for service operations in application layer code running
- * on a remote server. Methods of this service are expected to have security
- * checks based on the propagated JAAS credentials because this service can be
- * accessed remotely.
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaService
- * @see it.tref.liferay.portos.bo.service.base.TempisticaServiceBaseImpl
- * @see it.tref.liferay.portos.bo.service.impl.TempisticaServiceImpl
- * @generated
- */
-public class TempisticaServiceUtil {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this class directly. Add custom service methods to {@link it.tref.liferay.portos.bo.service.impl.TempisticaServiceImpl} and rerun ServiceBuilder to regenerate this class.
- */
-
- /**
- * Returns the Spring bean ID for this bean.
- *
- * @return the Spring bean ID for this bean
- */
- public static java.lang.String getBeanIdentifier() {
- return getService().getBeanIdentifier();
- }
-
- /**
- * Sets the Spring bean ID for this bean.
- *
- * @param beanIdentifier the Spring bean ID for this bean
- */
- public static void setBeanIdentifier(java.lang.String beanIdentifier) {
- getService().setBeanIdentifier(beanIdentifier);
- }
-
- public static java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable {
- return getService().invokeMethod(name, parameterTypes, arguments);
- }
-
- public static void clearService() {
- _service = null;
- }
-
- public static TempisticaService getService() {
- if (_service == null) {
- InvokableService invokableService = (InvokableService)PortletBeanLocatorUtil.locate(ClpSerializer.getServletContextName(),
- TempisticaService.class.getName());
-
- if (invokableService instanceof TempisticaService) {
- _service = (TempisticaService)invokableService;
- }
- else {
- _service = new TempisticaServiceClp(invokableService);
- }
-
- ReferenceRegistry.registerReference(TempisticaServiceUtil.class,
- "_service");
- }
-
- return _service;
- }
-
- /**
- * @deprecated As of 6.2.0
- */
- public void setService(TempisticaService service) {
- }
-
- private static TempisticaService _service;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceWrapper.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceWrapper.java
deleted file mode 100644
index 1d04da25..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/TempisticaServiceWrapper.java
+++ /dev/null
@@ -1,84 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service;
-
-import com.liferay.portal.service.ServiceWrapper;
-
-/**
- * Provides a wrapper for {@link TempisticaService}.
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaService
- * @generated
- */
-public class TempisticaServiceWrapper implements TempisticaService,
- ServiceWrapper {
- public TempisticaServiceWrapper(TempisticaService tempisticaService) {
- _tempisticaService = tempisticaService;
- }
-
- /**
- * Returns the Spring bean ID for this bean.
- *
- * @return the Spring bean ID for this bean
- */
- @Override
- public java.lang.String getBeanIdentifier() {
- return _tempisticaService.getBeanIdentifier();
- }
-
- /**
- * Sets the Spring bean ID for this bean.
- *
- * @param beanIdentifier the Spring bean ID for this bean
- */
- @Override
- public void setBeanIdentifier(java.lang.String beanIdentifier) {
- _tempisticaService.setBeanIdentifier(beanIdentifier);
- }
-
- @Override
- public java.lang.Object invokeMethod(java.lang.String name,
- java.lang.String[] parameterTypes, java.lang.Object[] arguments)
- throws java.lang.Throwable {
- return _tempisticaService.invokeMethod(name, parameterTypes, arguments);
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
- */
- public TempisticaService getWrappedTempisticaService() {
- return _tempisticaService;
- }
-
- /**
- * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
- */
- public void setWrappedTempisticaService(TempisticaService tempisticaService) {
- _tempisticaService = tempisticaService;
- }
-
- @Override
- public TempisticaService getWrappedService() {
- return _tempisticaService;
- }
-
- @Override
- public void setWrappedService(TempisticaService tempisticaService) {
- _tempisticaService = tempisticaService;
- }
-
- private TempisticaService _tempisticaService;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/messaging/ClpMessageListener.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/messaging/ClpMessageListener.java
index 635ed418..ac6456bb 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/messaging/ClpMessageListener.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/messaging/ClpMessageListener.java
@@ -58,8 +58,6 @@ import it.tref.liferay.portos.bo.service.SoggettoLocalServiceUtil;
import it.tref.liferay.portos.bo.service.SoggettoServiceUtil;
import it.tref.liferay.portos.bo.service.StoricoSoggettoPraticaLocalServiceUtil;
import it.tref.liferay.portos.bo.service.StoricoSoggettoPraticaServiceUtil;
-import it.tref.liferay.portos.bo.service.TempisticaLocalServiceUtil;
-import it.tref.liferay.portos.bo.service.TempisticaServiceUtil;
import it.tref.liferay.portos.bo.service.TerritorioLocalServiceUtil;
import it.tref.liferay.portos.bo.service.TerritorioServiceUtil;
@@ -138,9 +136,6 @@ public class ClpMessageListener extends BaseMessageListener {
StoricoSoggettoPraticaLocalServiceUtil.clearService();
StoricoSoggettoPraticaServiceUtil.clearService();
- TempisticaLocalServiceUtil.clearService();
-
- TempisticaServiceUtil.clearService();
TerritorioLocalServiceUtil.clearService();
TerritorioServiceUtil.clearService();
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinder.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinder.java
index 636b88cd..39f3c26d 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinder.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinder.java
@@ -18,26 +18,6 @@ package it.tref.liferay.portos.bo.service.persistence;
* @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
*/
public interface IntPraticaFinder {
- public int countAutorizzazione(java.util.Date dtMin, java.util.Date dtMax,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countVidimate(java.util.Date dtMin, java.util.Date dtMax,
- long groupId, java.lang.String type, boolean isControlloObbligatorio)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List countControllo(
- java.util.Date dtMin, java.util.Date dtMax, long groupId,
- java.lang.String type, boolean isControlloObbligatorio)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countDeposito(java.util.Date dtMin, java.util.Date dtMax,
- long groupId, boolean controlloOblligatorio)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List riparaWorkflow()
- throws com.liferay.portal.kernel.exception.SystemException;
-
public java.util.List canAddCollaudo(
java.lang.String codiceFiscaleDelegatoCollaudo, int start, int end)
throws com.liferay.portal.kernel.exception.SystemException;
@@ -45,34 +25,4 @@ public interface IntPraticaFinder {
public int canAddCollaudoCount(
java.lang.String codiceFiscaleDelegatoCollaudo)
throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countSanatorie(java.util.Date dtMin, java.util.Date dtMax,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countOpereMinoreImportanza(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List reportTempisticheIstruttorieAvvisiAutorizzazioni(
- java.util.Date dtMin, java.util.Date dtMax, long groupId,
- java.lang.String type)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public java.util.List reportPraticheVidimate(
- java.util.Date dtMin, java.util.Date dtMax, long groupId,
- java.lang.String type)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countIngressiAutorizzazioni(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countIngressiDepositi(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- public int countIngressiCO(java.util.Date dtMin, java.util.Date dtMax,
- long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinderUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinderUtil.java
index 673ef10c..ce64d4d1 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinderUtil.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/IntPraticaFinderUtil.java
@@ -21,41 +21,6 @@ import com.liferay.portal.kernel.util.ReferenceRegistry;
* @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
*/
public class IntPraticaFinderUtil {
- public static int countAutorizzazione(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().countAutorizzazione(dtMin, dtMax, groupId);
- }
-
- public static int countVidimate(java.util.Date dtMin, java.util.Date dtMax,
- long groupId, java.lang.String type, boolean isControlloObbligatorio)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder()
- .countVidimate(dtMin, dtMax, groupId, type,
- isControlloObbligatorio);
- }
-
- public static java.util.List countControllo(
- java.util.Date dtMin, java.util.Date dtMax, long groupId,
- java.lang.String type, boolean isControlloObbligatorio)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder()
- .countControllo(dtMin, dtMax, groupId, type,
- isControlloObbligatorio);
- }
-
- public static int countDeposito(java.util.Date dtMin, java.util.Date dtMax,
- long groupId, boolean controlloOblligatorio)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder()
- .countDeposito(dtMin, dtMax, groupId, controlloOblligatorio);
- }
-
- public static java.util.List riparaWorkflow()
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().riparaWorkflow();
- }
-
public static java.util.List canAddCollaudo(
java.lang.String codiceFiscaleDelegatoCollaudo, int start, int end)
throws com.liferay.portal.kernel.exception.SystemException {
@@ -69,52 +34,6 @@ public class IntPraticaFinderUtil {
return getFinder().canAddCollaudoCount(codiceFiscaleDelegatoCollaudo);
}
- public static int countSanatorie(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().countSanatorie(dtMin, dtMax, groupId);
- }
-
- public static int countOpereMinoreImportanza(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().countOpereMinoreImportanza(dtMin, dtMax, groupId);
- }
-
- public static java.util.List reportTempisticheIstruttorieAvvisiAutorizzazioni(
- java.util.Date dtMin, java.util.Date dtMax, long groupId,
- java.lang.String type)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder()
- .reportTempisticheIstruttorieAvvisiAutorizzazioni(dtMin,
- dtMax, groupId, type);
- }
-
- public static java.util.List reportPraticheVidimate(
- java.util.Date dtMin, java.util.Date dtMax, long groupId,
- java.lang.String type)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().reportPraticheVidimate(dtMin, dtMax, groupId, type);
- }
-
- public static int countIngressiAutorizzazioni(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().countIngressiAutorizzazioni(dtMin, dtMax, groupId);
- }
-
- public static int countIngressiDepositi(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().countIngressiDepositi(dtMin, dtMax, groupId);
- }
-
- public static int countIngressiCO(java.util.Date dtMin,
- java.util.Date dtMax, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getFinder().countIngressiCO(dtMin, dtMax, groupId);
- }
-
public static IntPraticaFinder getFinder() {
if (_finder == null) {
_finder = (IntPraticaFinder)PortletBeanLocatorUtil.locate(it.tref.liferay.portos.bo.service.ClpSerializer.getServletContextName(),
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoPersistence.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoPersistence.java
index 1befad86..37a875dd 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoPersistence.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoPersistence.java
@@ -525,441 +525,343 @@ public interface ParereGeologoPersistence extends BasePersistence
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns all the parere geologos where intPraticaId = ? and parere = ?.
+ * Returns all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public java.util.List findByIntPraticaId_Parere(
- long intPraticaId, java.lang.String parere)
+ public java.util.List findByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns a range of all the parere geologos where intPraticaId = ? and parere = ?.
+ * Returns a range of all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @return the range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public java.util.List findByIntPraticaId_Parere(
- long intPraticaId, java.lang.String parere, int start, int end)
+ public java.util.List findByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns an ordered range of all the parere geologos where intPraticaId = ? and parere = ?.
+ * Returns an ordered range of all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null)
* @return the ordered range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public java.util.List findByIntPraticaId_Parere(
- long intPraticaId, java.lang.String parere, int start, int end,
+ public java.util.List findByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and parere = ?.
+ * Returns the first parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_Parere_First(
- long intPraticaId, java.lang.String parere,
+ public it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_DtCompilazione_DtAnnullamento_First(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException;
/**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and parere = ?.
+ * Returns the first parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_Parere_First(
- long intPraticaId, java.lang.String parere,
+ public it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_DtCompilazione_DtAnnullamento_First(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and parere = ?.
+ * Returns the last parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_Parere_Last(
- long intPraticaId, java.lang.String parere,
+ public it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_DtCompilazione_DtAnnullamento_Last(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException;
/**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and parere = ?.
+ * Returns the last parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_Parere_Last(
- long intPraticaId, java.lang.String parere,
+ public it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_DtCompilazione_DtAnnullamento_Last(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the parere geologos before and after the current parere geologo in the ordered set where intPraticaId = ? and parere = ?.
+ * Returns the parere geologos before and after the current parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param parereGeologoId the primary key of the current parere geologo
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the previous, current, and next parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a parere geologo with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo[] findByIntPraticaId_Parere_PrevAndNext(
- long parereGeologoId, long intPraticaId, java.lang.String parere,
+ public it.tref.liferay.portos.bo.model.ParereGeologo[] findByIntPraticaId_DtCompilazione_DtAnnullamento_PrevAndNext(
+ long parereGeologoId, long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException;
/**
- * Removes all the parere geologos where intPraticaId = ? and parere = ? from the database.
+ * Removes all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ? from the database.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @throws SystemException if a system exception occurred
*/
- public void removeByIntPraticaId_Parere(long intPraticaId,
- java.lang.String parere)
+ public void removeByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the number of parere geologos where intPraticaId = ? and parere = ?.
+ * Returns the number of parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the number of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public int countByIntPraticaId_Parere(long intPraticaId,
- java.lang.String parere)
+ public int countByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns all the parere geologos where intPraticaId = ? and geologoUserId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @return the matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPraticaId_GeologoId(
- long intPraticaId, long geologoUserId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the parere geologos where intPraticaId = ? and geologoUserId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @param start the lower bound of the range of parere geologos
- * @param end the upper bound of the range of parere geologos (not inclusive)
- * @return the range of matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPraticaId_GeologoId(
- long intPraticaId, long geologoUserId, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns an ordered range of all the parere geologos where intPraticaId = ? and geologoUserId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @param start the lower bound of the range of parere geologos
- * @param end the upper bound of the range of parere geologos (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPraticaId_GeologoId(
- long intPraticaId, long geologoUserId, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching parere geologo
- * @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_GeologoId_First(
- long intPraticaId, long geologoUserId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchParereGeologoException;
-
- /**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching parere geologo, or null if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_GeologoId_First(
- long intPraticaId, long geologoUserId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching parere geologo
- * @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_GeologoId_Last(
- long intPraticaId, long geologoUserId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchParereGeologoException;
-
- /**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching parere geologo, or null if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_GeologoId_Last(
- long intPraticaId, long geologoUserId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the parere geologos before and after the current parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
- *
- * @param parereGeologoId the primary key of the current parere geologo
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next parere geologo
- * @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a parere geologo with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.ParereGeologo[] findByIntPraticaId_GeologoId_PrevAndNext(
- long parereGeologoId, long intPraticaId, long geologoUserId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchParereGeologoException;
-
- /**
- * Removes all the parere geologos where intPraticaId = ? and geologoUserId = ? from the database.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @throws SystemException if a system exception occurred
- */
- public void removeByIntPraticaId_GeologoId(long intPraticaId,
- long geologoUserId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of parere geologos where intPraticaId = ? and geologoUserId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @return the number of matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public int countByIntPraticaId_GeologoId(long intPraticaId,
- long geologoUserId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns all the parere geologos where geologoUserId = ?.
+ * Returns all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public java.util.List findByGeologoId(
- long geologoUserId)
+ public java.util.List findByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns a range of all the parere geologos where geologoUserId = ?.
+ * Returns a range of all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @return the range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public java.util.List findByGeologoId(
- long geologoUserId, int start, int end)
+ public java.util.List findByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns an ordered range of all the parere geologos where geologoUserId = ?.
+ * Returns an ordered range of all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null)
* @return the ordered range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public java.util.List findByGeologoId(
- long geologoUserId, int start, int end,
+ public java.util.List findByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the first parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the first parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoId_First(
- long geologoUserId,
+ public it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoUserId_DtCompilazione_DtAnnullamento_First(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException;
/**
- * Returns the first parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the first parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoId_First(
- long geologoUserId,
+ public it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoUserId_DtCompilazione_DtAnnullamento_First(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the last parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the last parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoId_Last(
- long geologoUserId,
+ public it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoUserId_DtCompilazione_DtAnnullamento_Last(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException;
/**
- * Returns the last parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the last parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoId_Last(
- long geologoUserId,
+ public it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoUserId_DtCompilazione_DtAnnullamento_Last(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the parere geologos before and after the current parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the parere geologos before and after the current parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param parereGeologoId the primary key of the current parere geologo
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the previous, current, and next parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a parere geologo with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
- public it.tref.liferay.portos.bo.model.ParereGeologo[] findByGeologoId_PrevAndNext(
+ public it.tref.liferay.portos.bo.model.ParereGeologo[] findByGeologoUserId_DtCompilazione_DtAnnullamento_PrevAndNext(
long parereGeologoId, long geologoUserId,
+ java.util.Date dtCompilazione, java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException;
/**
- * Removes all the parere geologos where geologoUserId = ? from the database.
+ * Removes all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ? from the database.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @throws SystemException if a system exception occurred
*/
- public void removeByGeologoId(long geologoUserId)
+ public void removeByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException;
/**
- * Returns the number of parere geologos where geologoUserId = ?.
+ * Returns the number of parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the number of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public int countByGeologoId(long geologoUserId)
+ public int countByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException;
/**
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoUtil.java
index db1c7322..c25fd35d 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoUtil.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/ParereGeologoUtil.java
@@ -685,538 +685,423 @@ public class ParereGeologoUtil {
}
/**
- * Returns all the parere geologos where intPraticaId = ? and parere = ?.
+ * Returns all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static java.util.List findByIntPraticaId_Parere(
- long intPraticaId, java.lang.String parere)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByIntPraticaId_Parere(intPraticaId, parere);
- }
-
- /**
- * Returns a range of all the parere geologos where intPraticaId = ? and parere = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @param start the lower bound of the range of parere geologos
- * @param end the upper bound of the range of parere geologos (not inclusive)
- * @return the range of matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPraticaId_Parere(
- long intPraticaId, java.lang.String parere, int start, int end)
+ public static java.util.List findByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .findByIntPraticaId_Parere(intPraticaId, parere, start, end);
+ .findByIntPraticaId_DtCompilazione_DtAnnullamento(intPraticaId,
+ dtCompilazione, dtAnnullamento);
}
/**
- * Returns an ordered range of all the parere geologos where intPraticaId = ? and parere = ?.
+ * Returns a range of all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param intPraticaId the int pratica ID
- * @param parere the parere
- * @param start the lower bound of the range of parere geologos
- * @param end the upper bound of the range of parere geologos (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPraticaId_Parere(
- long intPraticaId, java.lang.String parere, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByIntPraticaId_Parere(intPraticaId, parere, start, end,
- orderByComparator);
- }
-
- /**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and parere = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching parere geologo
- * @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_Parere_First(
- long intPraticaId, java.lang.String parere,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchParereGeologoException {
- return getPersistence()
- .findByIntPraticaId_Parere_First(intPraticaId, parere,
- orderByComparator);
- }
-
- /**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and parere = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching parere geologo, or null if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_Parere_First(
- long intPraticaId, java.lang.String parere,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByIntPraticaId_Parere_First(intPraticaId, parere,
- orderByComparator);
- }
-
- /**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and parere = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching parere geologo
- * @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_Parere_Last(
- long intPraticaId, java.lang.String parere,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchParereGeologoException {
- return getPersistence()
- .findByIntPraticaId_Parere_Last(intPraticaId, parere,
- orderByComparator);
- }
-
- /**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and parere = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching parere geologo, or null if a matching parere geologo could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_Parere_Last(
- long intPraticaId, java.lang.String parere,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByIntPraticaId_Parere_Last(intPraticaId, parere,
- orderByComparator);
- }
-
- /**
- * Returns the parere geologos before and after the current parere geologo in the ordered set where intPraticaId = ? and parere = ?.
- *
- * @param parereGeologoId the primary key of the current parere geologo
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next parere geologo
- * @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a parere geologo with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.ParereGeologo[] findByIntPraticaId_Parere_PrevAndNext(
- long parereGeologoId, long intPraticaId, java.lang.String parere,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchParereGeologoException {
- return getPersistence()
- .findByIntPraticaId_Parere_PrevAndNext(parereGeologoId,
- intPraticaId, parere, orderByComparator);
- }
-
- /**
- * Removes all the parere geologos where intPraticaId = ? and parere = ? from the database.
- *
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @throws SystemException if a system exception occurred
- */
- public static void removeByIntPraticaId_Parere(long intPraticaId,
- java.lang.String parere)
- throws com.liferay.portal.kernel.exception.SystemException {
- getPersistence().removeByIntPraticaId_Parere(intPraticaId, parere);
- }
-
- /**
- * Returns the number of parere geologos where intPraticaId = ? and parere = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param parere the parere
- * @return the number of matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public static int countByIntPraticaId_Parere(long intPraticaId,
- java.lang.String parere)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().countByIntPraticaId_Parere(intPraticaId, parere);
- }
-
- /**
- * Returns all the parere geologos where intPraticaId = ? and geologoUserId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
- * @return the matching parere geologos
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPraticaId_GeologoId(
- long intPraticaId, long geologoUserId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByIntPraticaId_GeologoId(intPraticaId, geologoUserId);
- }
-
- /**
- * Returns a range of all the parere geologos where intPraticaId = ? and geologoUserId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @return the range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static java.util.List findByIntPraticaId_GeologoId(
- long intPraticaId, long geologoUserId, int start, int end)
+ public static java.util.List findByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .findByIntPraticaId_GeologoId(intPraticaId, geologoUserId,
- start, end);
+ .findByIntPraticaId_DtCompilazione_DtAnnullamento(intPraticaId,
+ dtCompilazione, dtAnnullamento, start, end);
}
/**
- * Returns an ordered range of all the parere geologos where intPraticaId = ? and geologoUserId = ?.
+ * Returns an ordered range of all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null)
* @return the ordered range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static java.util.List findByIntPraticaId_GeologoId(
- long intPraticaId, long geologoUserId, int start, int end,
+ public static java.util.List findByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .findByIntPraticaId_GeologoId(intPraticaId, geologoUserId,
- start, end, orderByComparator);
+ .findByIntPraticaId_DtCompilazione_DtAnnullamento(intPraticaId,
+ dtCompilazione, dtAnnullamento, start, end, orderByComparator);
}
/**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
+ * Returns the first parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_GeologoId_First(
- long intPraticaId, long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_DtCompilazione_DtAnnullamento_First(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException {
return getPersistence()
- .findByIntPraticaId_GeologoId_First(intPraticaId,
- geologoUserId, orderByComparator);
+ .findByIntPraticaId_DtCompilazione_DtAnnullamento_First(intPraticaId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the first parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
+ * Returns the first parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_GeologoId_First(
- long intPraticaId, long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_DtCompilazione_DtAnnullamento_First(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .fetchByIntPraticaId_GeologoId_First(intPraticaId,
- geologoUserId, orderByComparator);
+ .fetchByIntPraticaId_DtCompilazione_DtAnnullamento_First(intPraticaId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
+ * Returns the last parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_GeologoId_Last(
- long intPraticaId, long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo findByIntPraticaId_DtCompilazione_DtAnnullamento_Last(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException {
return getPersistence()
- .findByIntPraticaId_GeologoId_Last(intPraticaId,
- geologoUserId, orderByComparator);
+ .findByIntPraticaId_DtCompilazione_DtAnnullamento_Last(intPraticaId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the last parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
+ * Returns the last parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_GeologoId_Last(
- long intPraticaId, long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByIntPraticaId_DtCompilazione_DtAnnullamento_Last(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .fetchByIntPraticaId_GeologoId_Last(intPraticaId,
- geologoUserId, orderByComparator);
+ .fetchByIntPraticaId_DtCompilazione_DtAnnullamento_Last(intPraticaId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the parere geologos before and after the current parere geologo in the ordered set where intPraticaId = ? and geologoUserId = ?.
+ * Returns the parere geologos before and after the current parere geologo in the ordered set where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param parereGeologoId the primary key of the current parere geologo
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the previous, current, and next parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a parere geologo with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo[] findByIntPraticaId_GeologoId_PrevAndNext(
- long parereGeologoId, long intPraticaId, long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo[] findByIntPraticaId_DtCompilazione_DtAnnullamento_PrevAndNext(
+ long parereGeologoId, long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException {
return getPersistence()
- .findByIntPraticaId_GeologoId_PrevAndNext(parereGeologoId,
- intPraticaId, geologoUserId, orderByComparator);
+ .findByIntPraticaId_DtCompilazione_DtAnnullamento_PrevAndNext(parereGeologoId,
+ intPraticaId, dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Removes all the parere geologos where intPraticaId = ? and geologoUserId = ? from the database.
+ * Removes all the parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ? from the database.
*
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @throws SystemException if a system exception occurred
*/
- public static void removeByIntPraticaId_GeologoId(long intPraticaId,
- long geologoUserId)
+ public static void removeByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException {
getPersistence()
- .removeByIntPraticaId_GeologoId(intPraticaId, geologoUserId);
+ .removeByIntPraticaId_DtCompilazione_DtAnnullamento(intPraticaId,
+ dtCompilazione, dtAnnullamento);
}
/**
- * Returns the number of parere geologos where intPraticaId = ? and geologoUserId = ?.
+ * Returns the number of parere geologos where intPraticaId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param intPraticaId the int pratica ID
- * @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the number of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static int countByIntPraticaId_GeologoId(long intPraticaId,
- long geologoUserId)
+ public static int countByIntPraticaId_DtCompilazione_DtAnnullamento(
+ long intPraticaId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .countByIntPraticaId_GeologoId(intPraticaId, geologoUserId);
+ .countByIntPraticaId_DtCompilazione_DtAnnullamento(intPraticaId,
+ dtCompilazione, dtAnnullamento);
}
/**
- * Returns all the parere geologos where geologoUserId = ?.
+ * Returns all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static java.util.List findByGeologoId(
- long geologoUserId)
+ public static java.util.List findByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByGeologoId(geologoUserId);
+ return getPersistence()
+ .findByGeologoUserId_DtCompilazione_DtAnnullamento(geologoUserId,
+ dtCompilazione, dtAnnullamento);
}
/**
- * Returns a range of all the parere geologos where geologoUserId = ?.
+ * Returns a range of all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @return the range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static java.util.List findByGeologoId(
- long geologoUserId, int start, int end)
+ public static java.util.List findByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end)
throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByGeologoId(geologoUserId, start, end);
+ return getPersistence()
+ .findByGeologoUserId_DtCompilazione_DtAnnullamento(geologoUserId,
+ dtCompilazione, dtAnnullamento, start, end);
}
/**
- * Returns an ordered range of all the parere geologos where geologoUserId = ?.
+ * Returns an ordered range of all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.ParereGeologoModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
*
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param start the lower bound of the range of parere geologos
* @param end the upper bound of the range of parere geologos (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null)
* @return the ordered range of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static java.util.List findByGeologoId(
- long geologoUserId, int start, int end,
+ public static java.util.List findByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .findByGeologoId(geologoUserId, start, end, orderByComparator);
+ .findByGeologoUserId_DtCompilazione_DtAnnullamento(geologoUserId,
+ dtCompilazione, dtAnnullamento, start, end, orderByComparator);
}
/**
- * Returns the first parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the first parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoId_First(
- long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoUserId_DtCompilazione_DtAnnullamento_First(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException {
return getPersistence()
- .findByGeologoId_First(geologoUserId, orderByComparator);
+ .findByGeologoUserId_DtCompilazione_DtAnnullamento_First(geologoUserId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the first parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the first parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the first matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoId_First(
- long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoUserId_DtCompilazione_DtAnnullamento_First(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .fetchByGeologoId_First(geologoUserId, orderByComparator);
+ .fetchByGeologoUserId_DtCompilazione_DtAnnullamento_First(geologoUserId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the last parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the last parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoId_Last(
- long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo findByGeologoUserId_DtCompilazione_DtAnnullamento_Last(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException {
return getPersistence()
- .findByGeologoId_Last(geologoUserId, orderByComparator);
+ .findByGeologoUserId_DtCompilazione_DtAnnullamento_Last(geologoUserId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the last parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the last parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the last matching parere geologo, or null if a matching parere geologo could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoId_Last(
- long geologoUserId,
+ public static it.tref.liferay.portos.bo.model.ParereGeologo fetchByGeologoUserId_DtCompilazione_DtAnnullamento_Last(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException {
return getPersistence()
- .fetchByGeologoId_Last(geologoUserId, orderByComparator);
+ .fetchByGeologoUserId_DtCompilazione_DtAnnullamento_Last(geologoUserId,
+ dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Returns the parere geologos before and after the current parere geologo in the ordered set where geologoUserId = ?.
+ * Returns the parere geologos before and after the current parere geologo in the ordered set where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param parereGeologoId the primary key of the current parere geologo
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @param orderByComparator the comparator to order the set by (optionally null)
* @return the previous, current, and next parere geologo
* @throws it.tref.liferay.portos.bo.NoSuchParereGeologoException if a parere geologo with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
- public static it.tref.liferay.portos.bo.model.ParereGeologo[] findByGeologoId_PrevAndNext(
+ public static it.tref.liferay.portos.bo.model.ParereGeologo[] findByGeologoUserId_DtCompilazione_DtAnnullamento_PrevAndNext(
long parereGeologoId, long geologoUserId,
+ java.util.Date dtCompilazione, java.util.Date dtAnnullamento,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws com.liferay.portal.kernel.exception.SystemException,
it.tref.liferay.portos.bo.NoSuchParereGeologoException {
return getPersistence()
- .findByGeologoId_PrevAndNext(parereGeologoId, geologoUserId,
- orderByComparator);
+ .findByGeologoUserId_DtCompilazione_DtAnnullamento_PrevAndNext(parereGeologoId,
+ geologoUserId, dtCompilazione, dtAnnullamento, orderByComparator);
}
/**
- * Removes all the parere geologos where geologoUserId = ? from the database.
+ * Removes all the parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ? from the database.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @throws SystemException if a system exception occurred
*/
- public static void removeByGeologoId(long geologoUserId)
+ public static void removeByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException {
- getPersistence().removeByGeologoId(geologoUserId);
+ getPersistence()
+ .removeByGeologoUserId_DtCompilazione_DtAnnullamento(geologoUserId,
+ dtCompilazione, dtAnnullamento);
}
/**
- * Returns the number of parere geologos where geologoUserId = ?.
+ * Returns the number of parere geologos where geologoUserId = ? and dtCompilazione = ? and dtAnnullamento = ?.
*
* @param geologoUserId the geologo user ID
+ * @param dtCompilazione the dt compilazione
+ * @param dtAnnullamento the dt annullamento
* @return the number of matching parere geologos
* @throws SystemException if a system exception occurred
*/
- public static int countByGeologoId(long geologoUserId)
+ public static int countByGeologoUserId_DtCompilazione_DtAnnullamento(
+ long geologoUserId, java.util.Date dtCompilazione,
+ java.util.Date dtAnnullamento)
throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().countByGeologoId(geologoUserId);
+ return getPersistence()
+ .countByGeologoUserId_DtCompilazione_DtAnnullamento(geologoUserId,
+ dtCompilazione, dtAnnullamento);
}
/**
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaActionableDynamicQuery.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaActionableDynamicQuery.java
deleted file mode 100644
index cdec9d6b..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaActionableDynamicQuery.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service.persistence;
-
-import com.liferay.portal.kernel.dao.orm.BaseActionableDynamicQuery;
-import com.liferay.portal.kernel.exception.SystemException;
-
-import it.tref.liferay.portos.bo.model.Tempistica;
-import it.tref.liferay.portos.bo.service.TempisticaLocalServiceUtil;
-
-/**
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @generated
- */
-public abstract class TempisticaActionableDynamicQuery
- extends BaseActionableDynamicQuery {
- public TempisticaActionableDynamicQuery() throws SystemException {
- setBaseLocalService(TempisticaLocalServiceUtil.getService());
- setClass(Tempistica.class);
-
- setClassLoader(it.tref.liferay.portos.bo.service.ClpSerializer.class.getClassLoader());
-
- setPrimaryKeyPropertyName("tempisticaId");
- }
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaExportActionableDynamicQuery.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaExportActionableDynamicQuery.java
deleted file mode 100644
index 634135c7..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaExportActionableDynamicQuery.java
+++ /dev/null
@@ -1,85 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service.persistence;
-
-import com.liferay.portal.kernel.dao.orm.DynamicQuery;
-import com.liferay.portal.kernel.exception.PortalException;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.lar.ExportImportHelperUtil;
-import com.liferay.portal.kernel.lar.ManifestSummary;
-import com.liferay.portal.kernel.lar.PortletDataContext;
-import com.liferay.portal.kernel.lar.StagedModelDataHandlerUtil;
-import com.liferay.portal.kernel.lar.StagedModelType;
-import com.liferay.portal.util.PortalUtil;
-
-import it.tref.liferay.portos.bo.model.Tempistica;
-
-/**
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @generated
- */
-public class TempisticaExportActionableDynamicQuery
- extends TempisticaActionableDynamicQuery {
- public TempisticaExportActionableDynamicQuery(
- PortletDataContext portletDataContext) throws SystemException {
- _portletDataContext = portletDataContext;
-
- setCompanyId(_portletDataContext.getCompanyId());
-
- setGroupId(_portletDataContext.getScopeGroupId());
- }
-
- @Override
- public long performCount() throws PortalException, SystemException {
- ManifestSummary manifestSummary = _portletDataContext.getManifestSummary();
-
- StagedModelType stagedModelType = getStagedModelType();
-
- long modelAdditionCount = super.performCount();
-
- manifestSummary.addModelAdditionCount(stagedModelType.toString(),
- modelAdditionCount);
-
- long modelDeletionCount = ExportImportHelperUtil.getModelDeletionCount(_portletDataContext,
- stagedModelType);
-
- manifestSummary.addModelDeletionCount(stagedModelType.toString(),
- modelDeletionCount);
-
- return modelAdditionCount;
- }
-
- @Override
- protected void addCriteria(DynamicQuery dynamicQuery) {
- _portletDataContext.addDateRangeCriteria(dynamicQuery, "modifiedDate");
- }
-
- protected StagedModelType getStagedModelType() {
- return new StagedModelType(PortalUtil.getClassNameId(
- Tempistica.class.getName()));
- }
-
- @Override
- @SuppressWarnings("unused")
- protected void performAction(Object object)
- throws PortalException, SystemException {
- Tempistica stagedModel = (Tempistica)object;
-
- StagedModelDataHandlerUtil.exportStagedModel(_portletDataContext,
- stagedModel);
- }
-
- private PortletDataContext _portletDataContext;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaFinder.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaFinder.java
deleted file mode 100644
index 0149a0bd..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaFinder.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service.persistence;
-
-/**
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- */
-public interface TempisticaFinder {
- public int countScadenzePraticheInScadenza(long companyId, long groupId);
-
- public int countPraticheInScadenzaAutorizzazioni(long companyId,
- long groupId);
-
- public int countPraticheInScadenzaControlloObbligatorio(long companyId,
- long groupId);
-
- public int countPraticheAttive(long companyId, long groupId);
-
- public java.util.List countPraticheAttivePerDiscriminazione(
- long companyId, long groupId);
-
- public java.util.List praticheAttiveAutorizzazioni(
- long companyId, long groupId);
-
- public java.util.List praticheAttiveControlloObbligatorio(
- long companyId, long groupId);
-
- public int countScadenzePraticheScadute(long companyId, long groupId);
-
- public int countPraticheScaduteAutorizzazione(long companyId, long groupId);
-
- public int countPraticheScaduteControlloObbligatorio(long companyId,
- long groupId);
-
- public int countScadenzeIntegrazioniScadute(long companyId, long groupId);
-
- public java.util.List scadenzePratiche(long companyId,
- long groupId, int start, int end, java.lang.Integer statoPratica,
- java.lang.String tipoPratica, java.lang.String istruttore);
-
- public java.util.List scadenzeIntegrazioni(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica);
-
- public int countScadenzePratiche(long companyId, long groupId,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore);
-
- public int countScadenzeIntegrazioni(long companyId, long groupId);
-
- public java.util.List scadenzePraticheForBackwardCompatibility(
- long companyId, long groupId, int start, int end);
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaFinderUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaFinderUtil.java
deleted file mode 100644
index 47032830..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaFinderUtil.java
+++ /dev/null
@@ -1,139 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service.persistence;
-
-import com.liferay.portal.kernel.bean.PortletBeanLocatorUtil;
-import com.liferay.portal.kernel.util.ReferenceRegistry;
-
-/**
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- */
-public class TempisticaFinderUtil {
- public static int countScadenzePraticheInScadenza(long companyId,
- long groupId) {
- return getFinder().countScadenzePraticheInScadenza(companyId, groupId);
- }
-
- public static int countPraticheInScadenzaAutorizzazioni(long companyId,
- long groupId) {
- return getFinder()
- .countPraticheInScadenzaAutorizzazioni(companyId, groupId);
- }
-
- public static int countPraticheInScadenzaControlloObbligatorio(
- long companyId, long groupId) {
- return getFinder()
- .countPraticheInScadenzaControlloObbligatorio(companyId,
- groupId);
- }
-
- public static int countPraticheAttive(long companyId, long groupId) {
- return getFinder().countPraticheAttive(companyId, groupId);
- }
-
- public static java.util.List countPraticheAttivePerDiscriminazione(
- long companyId, long groupId) {
- return getFinder()
- .countPraticheAttivePerDiscriminazione(companyId, groupId);
- }
-
- public static java.util.List praticheAttiveAutorizzazioni(
- long companyId, long groupId) {
- return getFinder().praticheAttiveAutorizzazioni(companyId, groupId);
- }
-
- public static java.util.List praticheAttiveControlloObbligatorio(
- long companyId, long groupId) {
- return getFinder()
- .praticheAttiveControlloObbligatorio(companyId, groupId);
- }
-
- public static int countScadenzePraticheScadute(long companyId, long groupId) {
- return getFinder().countScadenzePraticheScadute(companyId, groupId);
- }
-
- public static int countPraticheScaduteAutorizzazione(long companyId,
- long groupId) {
- return getFinder().countPraticheScaduteAutorizzazione(companyId, groupId);
- }
-
- public static int countPraticheScaduteControlloObbligatorio(
- long companyId, long groupId) {
- return getFinder()
- .countPraticheScaduteControlloObbligatorio(companyId, groupId);
- }
-
- public static int countScadenzeIntegrazioniScadute(long companyId,
- long groupId) {
- return getFinder().countScadenzeIntegrazioniScadute(companyId, groupId);
- }
-
- public static java.util.List scadenzePratiche(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore) {
- return getFinder()
- .scadenzePratiche(companyId, groupId, start, end,
- statoPratica, tipoPratica, istruttore);
- }
-
- public static java.util.List scadenzeIntegrazioni(
- long companyId, long groupId, int start, int end,
- java.lang.Integer statoPratica) {
- return getFinder()
- .scadenzeIntegrazioni(companyId, groupId, start, end,
- statoPratica);
- }
-
- public static int countScadenzePratiche(long companyId, long groupId,
- java.lang.Integer statoPratica, java.lang.String tipoPratica,
- java.lang.String istruttore) {
- return getFinder()
- .countScadenzePratiche(companyId, groupId, statoPratica,
- tipoPratica, istruttore);
- }
-
- public static int countScadenzeIntegrazioni(long companyId, long groupId) {
- return getFinder().countScadenzeIntegrazioni(companyId, groupId);
- }
-
- public static java.util.List scadenzePraticheForBackwardCompatibility(
- long companyId, long groupId, int start, int end) {
- return getFinder()
- .scadenzePraticheForBackwardCompatibility(companyId,
- groupId, start, end);
- }
-
- public static TempisticaFinder getFinder() {
- if (_finder == null) {
- _finder = (TempisticaFinder)PortletBeanLocatorUtil.locate(it.tref.liferay.portos.bo.service.ClpSerializer.getServletContextName(),
- TempisticaFinder.class.getName());
-
- ReferenceRegistry.registerReference(TempisticaFinderUtil.class,
- "_finder");
- }
-
- return _finder;
- }
-
- public void setFinder(TempisticaFinder finder) {
- _finder = finder;
-
- ReferenceRegistry.registerReference(TempisticaFinderUtil.class,
- "_finder");
- }
-
- private static TempisticaFinder _finder;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaPersistence.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaPersistence.java
deleted file mode 100644
index 78fe521d..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaPersistence.java
+++ /dev/null
@@ -1,976 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service.persistence;
-
-import com.liferay.portal.service.persistence.BasePersistence;
-
-import it.tref.liferay.portos.bo.model.Tempistica;
-
-/**
- * The persistence interface for the tempistica service.
- *
- *
- * Caching information and settings can be found in portal.properties
- *
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaPersistenceImpl
- * @see TempisticaUtil
- * @generated
- */
-public interface TempisticaPersistence extends BasePersistence {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify or reference this interface directly. Always use {@link TempisticaUtil} to access the tempistica persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.
- */
-
- /**
- * Returns all the tempisticas where uuid = ?.
- *
- * @param uuid the uuid
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByUuid(
- java.lang.String uuid)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the tempisticas where uuid = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByUuid(
- java.lang.String uuid, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns an ordered range of all the tempisticas where uuid = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByUuid(
- java.lang.String uuid, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByUuid_First(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_First(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByUuid_Last(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_Last(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where uuid = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica[] findByUuid_PrevAndNext(
- long tempisticaId, java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Removes all the tempisticas where uuid = ? from the database.
- *
- * @param uuid the uuid
- * @throws SystemException if a system exception occurred
- */
- public void removeByUuid(java.lang.String uuid)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of tempisticas where uuid = ?.
- *
- * @param uuid the uuid
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public int countByUuid(java.lang.String uuid)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica where uuid = ? and groupId = ? or throws a {@link it.tref.liferay.portos.bo.NoSuchTempisticaException} if it could not be found.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByUUID_G(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the tempistica where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByUUID_G(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @param retrieveFromCache whether to use the finder cache
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByUUID_G(
- java.lang.String uuid, long groupId, boolean retrieveFromCache)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Removes the tempistica where uuid = ? and groupId = ? from the database.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the tempistica that was removed
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica removeByUUID_G(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the number of tempisticas where uuid = ? and groupId = ?.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public int countByUUID_G(java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns all the tempisticas where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByUuid_C(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the tempisticas where uuid = ? and companyId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByUuid_C(
- java.lang.String uuid, long companyId, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns an ordered range of all the tempisticas where uuid = ? and companyId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByUuid_C(
- java.lang.String uuid, long companyId, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByUuid_C_First(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_C_First(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByUuid_C_Last(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_C_Last(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica[] findByUuid_C_PrevAndNext(
- long tempisticaId, java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Removes all the tempisticas where uuid = ? and companyId = ? from the database.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @throws SystemException if a system exception occurred
- */
- public void removeByUuid_C(java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of tempisticas where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public int countByUuid_C(java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns all the tempisticas where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPratica(
- long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the tempisticas where intPraticaId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPratica(
- long intPraticaId, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns an ordered range of all the tempisticas where intPraticaId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPratica(
- long intPraticaId, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_First(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_First(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_Last(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_Last(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where intPraticaId = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica[] findByIntPratica_PrevAndNext(
- long tempisticaId, long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Removes all the tempisticas where intPraticaId = ? from the database.
- *
- * @param intPraticaId the int pratica ID
- * @throws SystemException if a system exception occurred
- */
- public void removeByIntPratica(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of tempisticas where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public int countByIntPratica(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns all the tempisticas where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the tempisticas where intPraticaId = ? and tipo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns an ordered range of all the tempisticas where intPraticaId = ? and tipo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_Tipo_First(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_Tipo_First(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_Tipo_Last(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_Tipo_Last(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica[] findByIntPratica_Tipo_PrevAndNext(
- long tempisticaId, long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Removes all the tempisticas where intPraticaId = ? and tipo = ? from the database.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @throws SystemException if a system exception occurred
- */
- public void removeByIntPratica_Tipo(long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of tempisticas where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public int countByIntPratica_Tipo(long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByC_IntPratica_Tipo_Completo(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByC_IntPratica_Tipo_Completo(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns an ordered range of all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findByC_IntPratica_Tipo_Completo(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the first tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByC_IntPratica_Tipo_Completo_First(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the first tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByC_IntPratica_Tipo_Completo_First(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the last tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByC_IntPratica_Tipo_Completo_Last(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the last tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByC_IntPratica_Tipo_Completo_Last(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica[] findByC_IntPratica_Tipo_Completo_PrevAndNext(
- long tempisticaId, long companyId, long intPraticaId,
- java.lang.String tipo, boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Removes all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ? from the database.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @throws SystemException if a system exception occurred
- */
- public void removeByC_IntPratica_Tipo_Completo(long companyId,
- long intPraticaId, java.lang.String tipo, boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public int countByC_IntPratica_Tipo_Completo(long companyId,
- long intPraticaId, java.lang.String tipo, boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Caches the tempistica in the entity cache if it is enabled.
- *
- * @param tempistica the tempistica
- */
- public void cacheResult(
- it.tref.liferay.portos.bo.model.Tempistica tempistica);
-
- /**
- * Caches the tempisticas in the entity cache if it is enabled.
- *
- * @param tempisticas the tempisticas
- */
- public void cacheResult(
- java.util.List tempisticas);
-
- /**
- * Creates a new tempistica with the primary key. Does not add the tempistica to the database.
- *
- * @param tempisticaId the primary key for the new tempistica
- * @return the new tempistica
- */
- public it.tref.liferay.portos.bo.model.Tempistica create(long tempisticaId);
-
- /**
- * Removes the tempistica with the primary key from the database. Also notifies the appropriate model listeners.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica that was removed
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica remove(long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- public it.tref.liferay.portos.bo.model.Tempistica updateImpl(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the tempistica with the primary key or throws a {@link it.tref.liferay.portos.bo.NoSuchTempisticaException} if it could not be found.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica findByPrimaryKey(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException;
-
- /**
- * Returns the tempistica with the primary key or returns null if it could not be found.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica, or null if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public it.tref.liferay.portos.bo.model.Tempistica fetchByPrimaryKey(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns all the tempisticas.
- *
- * @return the tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findAll()
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns a range of all the tempisticas.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findAll(
- int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns an ordered range of all the tempisticas.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of tempisticas
- * @throws SystemException if a system exception occurred
- */
- public java.util.List findAll(
- int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Removes all the tempisticas from the database.
- *
- * @throws SystemException if a system exception occurred
- */
- public void removeAll()
- throws com.liferay.portal.kernel.exception.SystemException;
-
- /**
- * Returns the number of tempisticas.
- *
- * @return the number of tempisticas
- * @throws SystemException if a system exception occurred
- */
- public int countAll()
- throws com.liferay.portal.kernel.exception.SystemException;
-}
\ No newline at end of file
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaUtil.java
deleted file mode 100644
index e33e41df..00000000
--- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/tref/liferay/portos/bo/service/persistence/TempisticaUtil.java
+++ /dev/null
@@ -1,1255 +0,0 @@
-/**
- * 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 it.tref.liferay.portos.bo.service.persistence;
-
-import com.liferay.portal.kernel.bean.PortletBeanLocatorUtil;
-import com.liferay.portal.kernel.dao.orm.DynamicQuery;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.OrderByComparator;
-import com.liferay.portal.kernel.util.ReferenceRegistry;
-import com.liferay.portal.service.ServiceContext;
-
-import it.tref.liferay.portos.bo.model.Tempistica;
-
-import java.util.List;
-
-/**
- * The persistence utility for the tempistica service. This utility wraps {@link TempisticaPersistenceImpl} and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
- *
- *
- * Caching information and settings can be found in portal.properties
- *
- *
- * @author Davide Barbagallo, 3F Consulting + Manifattura Web Group s.r.l.
- * @see TempisticaPersistence
- * @see TempisticaPersistenceImpl
- * @generated
- */
-public class TempisticaUtil {
- /*
- * NOTE FOR DEVELOPERS:
- *
- * Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class.
- */
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
- */
- public static void clearCache() {
- getPersistence().clearCache();
- }
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(com.liferay.portal.model.BaseModel)
- */
- public static void clearCache(Tempistica tempistica) {
- getPersistence().clearCache(tempistica);
- }
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
- */
- public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
- throws SystemException {
- return getPersistence().countWithDynamicQuery(dynamicQuery);
- }
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
- */
- public static List findWithDynamicQuery(
- DynamicQuery dynamicQuery) throws SystemException {
- return getPersistence().findWithDynamicQuery(dynamicQuery);
- }
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
- */
- public static List findWithDynamicQuery(
- DynamicQuery dynamicQuery, int start, int end)
- throws SystemException {
- return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
- }
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
- */
- public static List findWithDynamicQuery(
- DynamicQuery dynamicQuery, int start, int end,
- OrderByComparator orderByComparator) throws SystemException {
- return getPersistence()
- .findWithDynamicQuery(dynamicQuery, start, end,
- orderByComparator);
- }
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel)
- */
- public static Tempistica update(Tempistica tempistica)
- throws SystemException {
- return getPersistence().update(tempistica);
- }
-
- /**
- * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, ServiceContext)
- */
- public static Tempistica update(Tempistica tempistica,
- ServiceContext serviceContext) throws SystemException {
- return getPersistence().update(tempistica, serviceContext);
- }
-
- /**
- * Returns all the tempisticas where uuid = ?.
- *
- * @param uuid the uuid
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByUuid(
- java.lang.String uuid)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByUuid(uuid);
- }
-
- /**
- * Returns a range of all the tempisticas where uuid = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByUuid(
- java.lang.String uuid, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByUuid(uuid, start, end);
- }
-
- /**
- * Returns an ordered range of all the tempisticas where uuid = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByUuid(
- java.lang.String uuid, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByUuid(uuid, start, end, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByUuid_First(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence().findByUuid_First(uuid, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_First(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().fetchByUuid_First(uuid, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByUuid_Last(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence().findByUuid_Last(uuid, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ?.
- *
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_Last(
- java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().fetchByUuid_Last(uuid, orderByComparator);
- }
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where uuid = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param uuid the uuid
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica[] findByUuid_PrevAndNext(
- long tempisticaId, java.lang.String uuid,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByUuid_PrevAndNext(tempisticaId, uuid, orderByComparator);
- }
-
- /**
- * Removes all the tempisticas where uuid = ? from the database.
- *
- * @param uuid the uuid
- * @throws SystemException if a system exception occurred
- */
- public static void removeByUuid(java.lang.String uuid)
- throws com.liferay.portal.kernel.exception.SystemException {
- getPersistence().removeByUuid(uuid);
- }
-
- /**
- * Returns the number of tempisticas where uuid = ?.
- *
- * @param uuid the uuid
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static int countByUuid(java.lang.String uuid)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().countByUuid(uuid);
- }
-
- /**
- * Returns the tempistica where uuid = ? and groupId = ? or throws a {@link it.tref.liferay.portos.bo.NoSuchTempisticaException} if it could not be found.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByUUID_G(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence().findByUUID_G(uuid, groupId);
- }
-
- /**
- * Returns the tempistica where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByUUID_G(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().fetchByUUID_G(uuid, groupId);
- }
-
- /**
- * Returns the tempistica where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @param retrieveFromCache whether to use the finder cache
- * @return the matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByUUID_G(
- java.lang.String uuid, long groupId, boolean retrieveFromCache)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().fetchByUUID_G(uuid, groupId, retrieveFromCache);
- }
-
- /**
- * Removes the tempistica where uuid = ? and groupId = ? from the database.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the tempistica that was removed
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica removeByUUID_G(
- java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence().removeByUUID_G(uuid, groupId);
- }
-
- /**
- * Returns the number of tempisticas where uuid = ? and groupId = ?.
- *
- * @param uuid the uuid
- * @param groupId the group ID
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static int countByUUID_G(java.lang.String uuid, long groupId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().countByUUID_G(uuid, groupId);
- }
-
- /**
- * Returns all the tempisticas where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByUuid_C(
- java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByUuid_C(uuid, companyId);
- }
-
- /**
- * Returns a range of all the tempisticas where uuid = ? and companyId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByUuid_C(
- java.lang.String uuid, long companyId, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByUuid_C(uuid, companyId, start, end);
- }
-
- /**
- * Returns an ordered range of all the tempisticas where uuid = ? and companyId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByUuid_C(
- java.lang.String uuid, long companyId, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByUuid_C(uuid, companyId, start, end, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByUuid_C_First(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByUuid_C_First(uuid, companyId, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_C_First(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByUuid_C_First(uuid, companyId, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByUuid_C_Last(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByUuid_C_Last(uuid, companyId, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByUuid_C_Last(
- java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByUuid_C_Last(uuid, companyId, orderByComparator);
- }
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where uuid = ? and companyId = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param uuid the uuid
- * @param companyId the company ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica[] findByUuid_C_PrevAndNext(
- long tempisticaId, java.lang.String uuid, long companyId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByUuid_C_PrevAndNext(tempisticaId, uuid, companyId,
- orderByComparator);
- }
-
- /**
- * Removes all the tempisticas where uuid = ? and companyId = ? from the database.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @throws SystemException if a system exception occurred
- */
- public static void removeByUuid_C(java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException {
- getPersistence().removeByUuid_C(uuid, companyId);
- }
-
- /**
- * Returns the number of tempisticas where uuid = ? and companyId = ?.
- *
- * @param uuid the uuid
- * @param companyId the company ID
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static int countByUuid_C(java.lang.String uuid, long companyId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().countByUuid_C(uuid, companyId);
- }
-
- /**
- * Returns all the tempisticas where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPratica(
- long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByIntPratica(intPraticaId);
- }
-
- /**
- * Returns a range of all the tempisticas where intPraticaId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPratica(
- long intPraticaId, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByIntPratica(intPraticaId, start, end);
- }
-
- /**
- * Returns an ordered range of all the tempisticas where intPraticaId = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPratica(
- long intPraticaId, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByIntPratica(intPraticaId, start, end, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_First(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByIntPratica_First(intPraticaId, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_First(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByIntPratica_First(intPraticaId, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_Last(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByIntPratica_Last(intPraticaId, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_Last(
- long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByIntPratica_Last(intPraticaId, orderByComparator);
- }
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where intPraticaId = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param intPraticaId the int pratica ID
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica[] findByIntPratica_PrevAndNext(
- long tempisticaId, long intPraticaId,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByIntPratica_PrevAndNext(tempisticaId, intPraticaId,
- orderByComparator);
- }
-
- /**
- * Removes all the tempisticas where intPraticaId = ? from the database.
- *
- * @param intPraticaId the int pratica ID
- * @throws SystemException if a system exception occurred
- */
- public static void removeByIntPratica(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- getPersistence().removeByIntPratica(intPraticaId);
- }
-
- /**
- * Returns the number of tempisticas where intPraticaId = ?.
- *
- * @param intPraticaId the int pratica ID
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static int countByIntPratica(long intPraticaId)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().countByIntPratica(intPraticaId);
- }
-
- /**
- * Returns all the tempisticas where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().findByIntPratica_Tipo(intPraticaId, tipo);
- }
-
- /**
- * Returns a range of all the tempisticas where intPraticaId = ? and tipo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByIntPratica_Tipo(intPraticaId, tipo, start, end);
- }
-
- /**
- * Returns an ordered range of all the tempisticas where intPraticaId = ? and tipo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByIntPratica_Tipo(
- long intPraticaId, java.lang.String tipo, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByIntPratica_Tipo(intPraticaId, tipo, start, end,
- orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_Tipo_First(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByIntPratica_Tipo_First(intPraticaId, tipo,
- orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_Tipo_First(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByIntPratica_Tipo_First(intPraticaId, tipo,
- orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByIntPratica_Tipo_Last(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByIntPratica_Tipo_Last(intPraticaId, tipo,
- orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByIntPratica_Tipo_Last(
- long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByIntPratica_Tipo_Last(intPraticaId, tipo,
- orderByComparator);
- }
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where intPraticaId = ? and tipo = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica[] findByIntPratica_Tipo_PrevAndNext(
- long tempisticaId, long intPraticaId, java.lang.String tipo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByIntPratica_Tipo_PrevAndNext(tempisticaId,
- intPraticaId, tipo, orderByComparator);
- }
-
- /**
- * Removes all the tempisticas where intPraticaId = ? and tipo = ? from the database.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @throws SystemException if a system exception occurred
- */
- public static void removeByIntPratica_Tipo(long intPraticaId,
- java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException {
- getPersistence().removeByIntPratica_Tipo(intPraticaId, tipo);
- }
-
- /**
- * Returns the number of tempisticas where intPraticaId = ? and tipo = ?.
- *
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static int countByIntPratica_Tipo(long intPraticaId,
- java.lang.String tipo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().countByIntPratica_Tipo(intPraticaId, tipo);
- }
-
- /**
- * Returns all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @return the matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByC_IntPratica_Tipo_Completo(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByC_IntPratica_Tipo_Completo(companyId, intPraticaId,
- tipo, completo);
- }
-
- /**
- * Returns a range of all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @return the range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByC_IntPratica_Tipo_Completo(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo, int start, int end)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByC_IntPratica_Tipo_Completo(companyId, intPraticaId,
- tipo, completo, start, end);
- }
-
- /**
- * Returns an ordered range of all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- *
- * Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link it.tref.liferay.portos.bo.model.impl.TempisticaModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
- *
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param start the lower bound of the range of tempisticas
- * @param end the upper bound of the range of tempisticas (not inclusive)
- * @param orderByComparator the comparator to order the results by (optionally null)
- * @return the ordered range of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static java.util.List findByC_IntPratica_Tipo_Completo(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo, int start, int end,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .findByC_IntPratica_Tipo_Completo(companyId, intPraticaId,
- tipo, completo, start, end, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByC_IntPratica_Tipo_Completo_First(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByC_IntPratica_Tipo_Completo_First(companyId,
- intPraticaId, tipo, completo, orderByComparator);
- }
-
- /**
- * Returns the first tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the first matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByC_IntPratica_Tipo_Completo_First(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByC_IntPratica_Tipo_Completo_First(companyId,
- intPraticaId, tipo, completo, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByC_IntPratica_Tipo_Completo_Last(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByC_IntPratica_Tipo_Completo_Last(companyId,
- intPraticaId, tipo, completo, orderByComparator);
- }
-
- /**
- * Returns the last tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the last matching tempistica, or null if a matching tempistica could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica fetchByC_IntPratica_Tipo_Completo_Last(
- long companyId, long intPraticaId, java.lang.String tipo,
- boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .fetchByC_IntPratica_Tipo_Completo_Last(companyId,
- intPraticaId, tipo, completo, orderByComparator);
- }
-
- /**
- * Returns the tempisticas before and after the current tempistica in the ordered set where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param tempisticaId the primary key of the current tempistica
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @param orderByComparator the comparator to order the set by (optionally null)
- * @return the previous, current, and next tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica[] findByC_IntPratica_Tipo_Completo_PrevAndNext(
- long tempisticaId, long companyId, long intPraticaId,
- java.lang.String tipo, boolean completo,
- com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence()
- .findByC_IntPratica_Tipo_Completo_PrevAndNext(tempisticaId,
- companyId, intPraticaId, tipo, completo, orderByComparator);
- }
-
- /**
- * Removes all the tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ? from the database.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @throws SystemException if a system exception occurred
- */
- public static void removeByC_IntPratica_Tipo_Completo(long companyId,
- long intPraticaId, java.lang.String tipo, boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException {
- getPersistence()
- .removeByC_IntPratica_Tipo_Completo(companyId, intPraticaId, tipo,
- completo);
- }
-
- /**
- * Returns the number of tempisticas where companyId = ? and intPraticaId = ? and tipo = ? and completo = ?.
- *
- * @param companyId the company ID
- * @param intPraticaId the int pratica ID
- * @param tipo the tipo
- * @param completo the completo
- * @return the number of matching tempisticas
- * @throws SystemException if a system exception occurred
- */
- public static int countByC_IntPratica_Tipo_Completo(long companyId,
- long intPraticaId, java.lang.String tipo, boolean completo)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence()
- .countByC_IntPratica_Tipo_Completo(companyId, intPraticaId,
- tipo, completo);
- }
-
- /**
- * Caches the tempistica in the entity cache if it is enabled.
- *
- * @param tempistica the tempistica
- */
- public static void cacheResult(
- it.tref.liferay.portos.bo.model.Tempistica tempistica) {
- getPersistence().cacheResult(tempistica);
- }
-
- /**
- * Caches the tempisticas in the entity cache if it is enabled.
- *
- * @param tempisticas the tempisticas
- */
- public static void cacheResult(
- java.util.List tempisticas) {
- getPersistence().cacheResult(tempisticas);
- }
-
- /**
- * Creates a new tempistica with the primary key. Does not add the tempistica to the database.
- *
- * @param tempisticaId the primary key for the new tempistica
- * @return the new tempistica
- */
- public static it.tref.liferay.portos.bo.model.Tempistica create(
- long tempisticaId) {
- return getPersistence().create(tempisticaId);
- }
-
- /**
- * Removes the tempistica with the primary key from the database. Also notifies the appropriate model listeners.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica that was removed
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica remove(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence().remove(tempisticaId);
- }
-
- public static it.tref.liferay.portos.bo.model.Tempistica updateImpl(
- it.tref.liferay.portos.bo.model.Tempistica tempistica)
- throws com.liferay.portal.kernel.exception.SystemException {
- return getPersistence().updateImpl(tempistica);
- }
-
- /**
- * Returns the tempistica with the primary key or throws a {@link it.tref.liferay.portos.bo.NoSuchTempisticaException} if it could not be found.
- *
- * @param tempisticaId the primary key of the tempistica
- * @return the tempistica
- * @throws it.tref.liferay.portos.bo.NoSuchTempisticaException if a tempistica with the primary key could not be found
- * @throws SystemException if a system exception occurred
- */
- public static it.tref.liferay.portos.bo.model.Tempistica findByPrimaryKey(
- long tempisticaId)
- throws com.liferay.portal.kernel.exception.SystemException,
- it.tref.liferay.portos.bo.NoSuchTempisticaException {
- return getPersistence().findByPrimaryKey(tempisticaId);
- }
-
- /**
- * Returns the tempistica with the primary key or returns