admGetAllFilters

admGetAllFilters

Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here !

Availability

This routine is available starting with SIL Engine 4.8.0.4.

Syntax

admGetAllFilters()

Description

Retrieves all the filters available on the current instance.

Parameters

None.

Return type

JFilter []

Returns a list of filters. 

Example

JFilter []filters = admGetAllFilters(); for(JFilter f in filters) { runnerLog("Filter name: " + f.name + "\n" + "Filter description " + f.description + "\n" + "Filter owner "+ f.owner + "\n" + "Filter query "+ f.query); }