|
|
|
@ -16,6 +16,7 @@ import it.tref.liferay.portos.bo.model.Asseverazione;
|
|
|
|
|
import it.tref.liferay.portos.bo.service.base.AsseverazioneServiceBaseImpl; |
|
|
|
|
import it.tref.liferay.portos.bo.util.AsseverazioniUtil; |
|
|
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
import com.liferay.portal.kernel.exception.PortalException; |
|
|
|
@ -29,13 +30,14 @@ import com.liferay.portal.service.ServiceContext;
|
|
|
|
|
* The implementation of the asseverazione remote service. |
|
|
|
|
* |
|
|
|
|
* <p> |
|
|
|
|
* All custom service methods should be put in this class. Whenever methods are added, rerun |
|
|
|
|
* ServiceBuilder to copy their definitions into the |
|
|
|
|
* All custom service methods should be put in this class. Whenever methods are |
|
|
|
|
* added, rerun ServiceBuilder to copy their definitions into the |
|
|
|
|
* {@link it.tref.liferay.portos.bo.service.AsseverazioneService} interface. |
|
|
|
|
* |
|
|
|
|
* <p> |
|
|
|
|
* This is a remote service. Methods of this service are expected to have security checks based on |
|
|
|
|
* the propagated JAAS credentials because this service can be accessed remotely. |
|
|
|
|
* This is a remote service. Methods of this service are expected to have |
|
|
|
|
* security checks based on the propagated JAAS credentials because this service |
|
|
|
|
* can be accessed remotely. |
|
|
|
|
* </p> |
|
|
|
|
* |
|
|
|
|
* @author Davide Barbagallo, 3F Consulting |
|
|
|
@ -44,12 +46,13 @@ import com.liferay.portal.service.ServiceContext;
|
|
|
|
|
*/ |
|
|
|
|
public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl { |
|
|
|
|
/* |
|
|
|
|
* NOTE FOR DEVELOPERS: Never reference this interface directly. Always use {@link |
|
|
|
|
* it.tref.liferay.portos.bo.service.AsseverazioneServiceUtil} to access the asseverazione remote |
|
|
|
|
* service. |
|
|
|
|
* NOTE FOR DEVELOPERS: Never reference this interface directly. Always use |
|
|
|
|
* {@link it.tref.liferay.portos.bo.service.AsseverazioneServiceUtil} to |
|
|
|
|
* access the asseverazione remote service. |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
public void cambioStatoAsseverazione(long asseverazioneId, String stato) throws SystemException, PortalException { |
|
|
|
|
public void cambioStatoAsseverazione(long asseverazioneId, String stato) throws IOException, |
|
|
|
|
SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
if (AsseverazioniUtil.hasCambioStatoAsseverazione(getUserId(), asseverazioneId)) { |
|
|
|
|
asseverazioneLocalService.cambioStatoAsseverazione(getUserId(), asseverazioneId, stato); |
|
|
|
@ -59,8 +62,8 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void cambioStatoAsseverazioni(long dettPraticaId, String stato) throws SystemException, PrincipalException, |
|
|
|
|
PortalException { |
|
|
|
|
public void cambioStatoAsseverazioni(long dettPraticaId, String stato) throws IOException, |
|
|
|
|
SystemException, PrincipalException, PortalException { |
|
|
|
|
|
|
|
|
|
if (AsseverazioniUtil.hasRichiediAsseverazioni(getUserId(), dettPraticaId)) { |
|
|
|
|
asseverazioneLocalService.cambioStatoAsseverazioni(dettPraticaId, stato); |
|
|
|
@ -69,8 +72,8 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void richiediAsseverazioni(long dettPraticaId, ServiceContext serviceContext) throws PrincipalException, |
|
|
|
|
PortalException, SystemException { |
|
|
|
|
public void richiediAsseverazioni(long dettPraticaId, ServiceContext serviceContext) |
|
|
|
|
throws PrincipalException, PortalException, SystemException { |
|
|
|
|
|
|
|
|
|
if (AsseverazioniUtil.hasRichiediAsseverazioni(getUserId(), dettPraticaId)) { |
|
|
|
|
asseverazioneLocalService.richiediAsseverazioni(dettPraticaId, serviceContext); |
|
|
|
@ -79,7 +82,8 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void resetAsseverazione(long dettPraticaId, long asseverazioneId) throws PortalException, SystemException { |
|
|
|
|
public void resetAsseverazione(long dettPraticaId, long asseverazioneId) throws PortalException, |
|
|
|
|
SystemException { |
|
|
|
|
|
|
|
|
|
if (AsseverazioniUtil.hasAnnullaAsseverazioni(getUserId(), dettPraticaId)) { |
|
|
|
|
asseverazioneLocalService.resetAsseverazione(asseverazioneId); |
|
|
|
@ -88,7 +92,8 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void annullaAsseverazioni(long dettPraticaId) throws PrincipalException, PortalException, SystemException { |
|
|
|
|
public void annullaAsseverazioni(long dettPraticaId) throws IOException, PrincipalException, |
|
|
|
|
PortalException, SystemException { |
|
|
|
|
|
|
|
|
|
if (AsseverazioniUtil.hasAnnullaAsseverazioni(getUserId(), dettPraticaId)) { |
|
|
|
|
asseverazioneLocalService.annullaAsseverazioni(dettPraticaId); |
|
|
|
@ -110,14 +115,15 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
ServiceContext serviceContext) throws SystemException, PortalException { |
|
|
|
|
|
|
|
|
|
if (AsseverazioniUtil.hasGestisciFileAsseverazione(getUserId(), asseverazioneId)) { |
|
|
|
|
return asseverazioneLocalService.allegaFileAsseverazione(asseverazioneId, content, sourceFileName, serviceContext); |
|
|
|
|
return asseverazioneLocalService.allegaFileAsseverazione(asseverazioneId, content, |
|
|
|
|
sourceFileName, serviceContext); |
|
|
|
|
} else { |
|
|
|
|
throw new SystemException("annulla-asseverazione-non-possibile"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByIntPratica(long intPraticaId, int start, int end, OrderByComparator orderByComparator) |
|
|
|
|
throws SystemException { |
|
|
|
|
public List<Asseverazione> findByIntPratica(long intPraticaId, int start, int end, |
|
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByIntPratica(intPraticaId, start, end, orderByComparator); |
|
|
|
|
} |
|
|
|
@ -138,22 +144,24 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
return asseverazioneLocalService.countByDettPratica(dettPraticaId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale, int start, |
|
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale, |
|
|
|
|
int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByIntPratica_CodiceFiscale(intPraticaId, codiceFiscale, start, end, |
|
|
|
|
orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByIntPratica_CodiceFiscale(intPraticaId, codiceFiscale, start, |
|
|
|
|
end, orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale) throws SystemException { |
|
|
|
|
public int countByIntPratica_CodiceFiscale(long intPraticaId, String codiceFiscale) |
|
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.countByIntPratica_CodiceFiscale(intPraticaId, codiceFiscale); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByCodiceFiscale_InEsito(String codiceFiscale, String[] esiti, int start, int end, |
|
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByCodiceFiscale_InEsito(String codiceFiscale, String[] esiti, int start, |
|
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByCodiceFiscale_InEsito(codiceFiscale, esiti, start, end, orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByCodiceFiscale_InEsito(codiceFiscale, esiti, start, end, |
|
|
|
|
orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByCodiceFiscale_InEsito(String codiceFiscale, String[] esiti) throws SystemException { |
|
|
|
@ -161,36 +169,41 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
return asseverazioneLocalService.countByCodiceFiscale_InEsito(codiceFiscale, esiti); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_InEsito(long intPraticaId, String codiceFiscale, |
|
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_InEsito(long intPraticaId, |
|
|
|
|
String codiceFiscale, String[] esiti, int start, int end, OrderByComparator orderByComparator) |
|
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByIntPratica_CodiceFiscale_InEsito(intPraticaId, codiceFiscale, esiti, start, |
|
|
|
|
end, orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByIntPratica_CodiceFiscale_InEsito(intPraticaId, codiceFiscale, |
|
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, String codiceFiscale, |
|
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, |
|
|
|
|
String codiceFiscale, String[] esiti, int start, int end, OrderByComparator orderByComparator) |
|
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByDettPratica_CodiceFiscale_InEsito(dettPraticaId, codiceFiscale, esiti, |
|
|
|
|
start, end, orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByDettPratica_CodiceFiscale_InEsito(dettPraticaId, |
|
|
|
|
codiceFiscale, esiti, start, end, orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByIntPratica_CodiceFiscale_InEsito(long intPraticaId, String codiceFiscale, String[] esiti) |
|
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.countByIntPratica_CodiceFiscale_InEsito(intPraticaId, codiceFiscale, esiti); |
|
|
|
|
return asseverazioneLocalService.countByIntPratica_CodiceFiscale_InEsito(intPraticaId, codiceFiscale, |
|
|
|
|
esiti); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, String codiceFiscale, String[] esiti) |
|
|
|
|
throws SystemException { |
|
|
|
|
public int countByDettPratica_CodiceFiscale_InEsito(long dettPraticaId, String codiceFiscale, |
|
|
|
|
String[] esiti) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.countByDettPratica_CodiceFiscale_InEsito(dettPraticaId, codiceFiscale, esiti); |
|
|
|
|
return asseverazioneLocalService.countByDettPratica_CodiceFiscale_InEsito(dettPraticaId, |
|
|
|
|
codiceFiscale, esiti); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByIntPratica_InEsito(long intPraticaId, String[] esiti, int start, int end, |
|
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByIntPratica_InEsito(long intPraticaId, String[] esiti, int start, |
|
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByIntPratica_InEsito(intPraticaId, esiti, start, end, orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByIntPratica_InEsito(intPraticaId, esiti, start, end, |
|
|
|
|
orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByIntPratica_InEsito(long intPraticaId, String[] esiti) throws SystemException { |
|
|
|
@ -198,10 +211,11 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
return asseverazioneLocalService.countByIntPratica_InEsito(intPraticaId, esiti); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByDettPratica_InEsito(long dettPraticaId, String[] esiti, int start, int end, |
|
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByDettPratica_InEsito(long dettPraticaId, String[] esiti, int start, |
|
|
|
|
int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByDettPratica_InEsito(dettPraticaId, esiti, start, end, orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByDettPratica_InEsito(dettPraticaId, esiti, start, end, |
|
|
|
|
orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByDettPratica_InEsito(long dettPraticaId, String[] esiti) throws SystemException { |
|
|
|
@ -212,42 +226,44 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
public List<Asseverazione> findByCodiceFiscale_Tipologia_InEsito(String codiceFiscale, String tipologia, |
|
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByCodiceFiscale_Tipologia_InEsito(codiceFiscale, tipologia, esiti, start, end, |
|
|
|
|
orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByCodiceFiscale_Tipologia_InEsito(codiceFiscale, tipologia, |
|
|
|
|
esiti, start, end, orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByCodiceFiscale_Tipologia_InEsito(String codiceFiscale, String tipologia, String[] esiti) |
|
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.countByCodiceFiscale_Tipologia_InEsito(codiceFiscale, tipologia, esiti); |
|
|
|
|
return asseverazioneLocalService.countByCodiceFiscale_Tipologia_InEsito(codiceFiscale, tipologia, |
|
|
|
|
esiti); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_Tipologia_InEsito(long intPraticaId, String codiceFiscale, |
|
|
|
|
String tipologia, String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByIntPratica_CodiceFiscale_Tipologia_InEsito(long intPraticaId, |
|
|
|
|
String codiceFiscale, String tipologia, String[] esiti, int start, int end, |
|
|
|
|
OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByIntPratica_CodiceFiscale_Tipologia_InEsito(intPraticaId, codiceFiscale, |
|
|
|
|
tipologia, esiti, start, end, orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByIntPratica_CodiceFiscale_Tipologia_InEsito(intPraticaId, |
|
|
|
|
codiceFiscale, tipologia, esiti, start, end, orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByIntPratica_CodiceFiscale_Tipologia_InEsito(long intPraticaId, String codiceFiscale, |
|
|
|
|
String tipologia, String[] esiti) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.countByIntPratica_CodiceFiscale_Tipologia_InEsito(intPraticaId, codiceFiscale, |
|
|
|
|
tipologia, esiti); |
|
|
|
|
return asseverazioneLocalService.countByIntPratica_CodiceFiscale_Tipologia_InEsito(intPraticaId, |
|
|
|
|
codiceFiscale, tipologia, esiti); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByIntPratica_Tipologia_InEsito(long intPraticaId, String tipologia, String[] esiti, |
|
|
|
|
int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByIntPratica_Tipologia_InEsito(long intPraticaId, String tipologia, |
|
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByIntPratica_Tipologia_InEsito(intPraticaId, tipologia, esiti, start, end, |
|
|
|
|
orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByIntPratica_Tipologia_InEsito(intPraticaId, tipologia, esiti, |
|
|
|
|
start, end, orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<Asseverazione> findByDettPratica_Tipologia_InEsito(long dettPraticaId, String tipologia, String[] esiti, |
|
|
|
|
int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
public List<Asseverazione> findByDettPratica_Tipologia_InEsito(long dettPraticaId, String tipologia, |
|
|
|
|
String[] esiti, int start, int end, OrderByComparator orderByComparator) throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.findByDettPratica_Tipologia_InEsito(dettPraticaId, tipologia, esiti, start, end, |
|
|
|
|
orderByComparator); |
|
|
|
|
return asseverazioneLocalService.findByDettPratica_Tipologia_InEsito(dettPraticaId, tipologia, esiti, |
|
|
|
|
start, end, orderByComparator); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int countByIntPratica_Tipologia_InEsito(long intPraticaId, String tipologia, String[] esiti) |
|
|
|
@ -259,7 +275,8 @@ public class AsseverazioneServiceImpl extends AsseverazioneServiceBaseImpl {
|
|
|
|
|
public int countByDettPratica_Tipologia_InEsito(long dettPraticaId, String tipologia, String[] esiti) |
|
|
|
|
throws SystemException { |
|
|
|
|
|
|
|
|
|
return asseverazioneLocalService.countByDettPratica_Tipologia_InEsito(dettPraticaId, tipologia, esiti); |
|
|
|
|
return asseverazioneLocalService |
|
|
|
|
.countByDettPratica_Tipologia_InEsito(dettPraticaId, tipologia, esiti); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|