Package com.fluig.sdk.service
Interface FilterAPIService
-
- All Superinterfaces:
BaseAPIService
public interface FilterAPIService extends BaseAPIService
Fornece acesso aos serviços de filtros.- Since:
- 1.6.0
- Author:
- leandro.carlos
-
-
Field Summary
Fields Modifier and Type Field Description static String
JNDI_NAME
static String
JNDI_REMOTE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterResultVO
createFilter(FilterVO filterVO)
FilterResultVO
findById(Long filterId)
List<FilterGroupResultVO>
findFiltersGroupByFilterId(Long filterId, String pattern, int limit, int offset, String orderBy)
List<FilterResultVO>
getProcessFilters(boolean onlyMyFilters, boolean findPublicFilters, String pattern, int limit, int offset, String orderBy)
void
removeFilters(List<Long> filtersId)
List<FilterGroupResultVO>
saveFiltersGroup(FilterGroupVO filterGroupVO)
FilterResultVO
updateFilter(FilterVO filterVO)
void
updateFilterSequence(Long applicationInstanceId, Map<String,String> filtersSequence)
FilterResultVO
updatePublicProcessFilter(long filterId, boolean isPublic)
-
Methods inherited from interface com.fluig.sdk.service.BaseAPIService
expand, generateOrderParam
-
-
-
-
Field Detail
-
JNDI_NAME
static final String JNDI_NAME
- See Also:
- Constant Field Values
-
JNDI_REMOTE_NAME
static final String JNDI_REMOTE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getProcessFilters
List<FilterResultVO> getProcessFilters(boolean onlyMyFilters, boolean findPublicFilters, String pattern, int limit, int offset, String orderBy)
-
findById
FilterResultVO findById(Long filterId) throws Exception
- Throws:
Exception
-
updatePublicProcessFilter
FilterResultVO updatePublicProcessFilter(long filterId, boolean isPublic) throws Exception
- Throws:
Exception
-
createFilter
FilterResultVO createFilter(FilterVO filterVO) throws Exception
- Throws:
Exception
-
updateFilter
FilterResultVO updateFilter(FilterVO filterVO) throws Exception
- Throws:
Exception
-
findFiltersGroupByFilterId
List<FilterGroupResultVO> findFiltersGroupByFilterId(Long filterId, String pattern, int limit, int offset, String orderBy) throws Exception
- Throws:
Exception
-
saveFiltersGroup
List<FilterGroupResultVO> saveFiltersGroup(FilterGroupVO filterGroupVO) throws Exception
- Throws:
Exception
-
-