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 ! |
This routine is available starting with SIL Engine 4.8.0.4. |
admGetAllFilters()
Retrieves all the filters available on the current instance. |
None.
JFilter []
Returns a list of filters.
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); } |