package br.gov.camara.edemocracia.portlets.exportacao.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.Propagation; import com.liferay.portal.kernel.transaction.Transactional; import com.liferay.portal.service.BaseService; import com.liferay.portal.service.InvokableService; /** * The interface for the dados forum remote service. * * <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. * </p> * * @author bruno * @see DadosForumServiceUtil * @see br.gov.camara.edemocracia.portlets.exportacao.service.base.DadosForumServiceBaseImpl * @see br.gov.camara.edemocracia.portlets.exportacao.service.impl.DadosForumServiceImpl * @generated */ @JSONWebService @Transactional(isolation = Isolation.PORTAL, rollbackFor = { PortalException.class, SystemException.class} ) public interface DadosForumService extends BaseService, InvokableService { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link DadosForumServiceUtil} to access the dados forum remote service. Add custom service methods to {@link br.gov.camara.edemocracia.portlets.exportacao.service.impl.DadosForumServiceImpl} 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 dados para exportação * * @param groupId * @return * @throws SystemException * @throws PortalException */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List<br.gov.camara.edemocracia.portlets.exportacao.wrapper.DadosForumWrapper> getDadosForumExportacao( java.lang.Long groupId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; /** * Retorna os dados para exportação para administradores * * @param groupId * @return * @throws SystemException * @throws PortalException */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public java.util.List<br.gov.camara.edemocracia.portlets.exportacao.wrapper.DadosForumAdminWrapper> getDadosForumAdminExportacao( java.lang.Long groupId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException; }