/** * Copyright (c) 2009-2014 Câmara dos Deputados. Todos os direitos reservados. * * e-Democracia é um software livre; você pode redistribuí-lo e/ou modificá-lo dentro * dos termos da Licença Pública Geral Menor GNU como publicada pela Fundação do * Software Livre (FSF); na versão 2.1 da Licença, ou (na sua opinião) qualquer versão. * * Este programa é distribuído na esperança de que possa ser útil, mas SEM NENHUMA GARANTIA; * sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. * Veja a Licença Pública Geral Menor GNU para maiores detalhes. */ package br.gov.camara.edemocracia.portlets.graficos.service; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.exception.SystemException; 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; /** * The interface for the graficos local service. * * <p> * This is a local service. 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. * </p> * * @author Robson Miranda * @see GraficosLocalServiceUtil * @see br.gov.camara.edemocracia.portlets.graficos.service.base.GraficosLocalServiceBaseImpl * @see br.gov.camara.edemocracia.portlets.graficos.service.impl.GraficosLocalServiceImpl * @generated */ @Transactional(isolation = Isolation.PORTAL, rollbackFor = { PortalException.class, SystemException.class} ) public interface GraficosLocalService extends BaseLocalService, InvokableLocalService { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link GraficosLocalServiceUtil} to access the graficos local service. Add custom service methods to {@link br.gov.camara.edemocracia.portlets.graficos.service.impl.GraficosLocalServiceImpl} 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); public java.lang.Object invokeMethod(java.lang.String name, java.lang.String[] parameterTypes, java.lang.Object[] arguments) throws java.lang.Throwable; /** * Retorna os usuários por UF * * @param companyId TODO * @param pais * @return */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.Map<java.lang.String, java.lang.Integer> getUsuariosPorUf( long companyId, com.liferay.portal.model.Country pais); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.Map<java.lang.String, java.lang.Integer> getUsuariosPorData( long companyId, java.util.TimeZone tz, java.util.Date inicio, java.util.Date fim); /** * Busca a atividade na faixa de tempo especificada * * @param companyId * @param inicio * @param fim * @return */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.Map<java.lang.String, java.lang.Integer> getAtividadePorData( long companyId, java.util.TimeZone tz, java.util.Date inicio, java.util.Date fim); }