mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
4.6 KiB
4.6 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Process Filter Cloud Service | v3.0.0 | Experimental | 2019-01-09 |
Process Filter Cloud Service
Manage Process Filters, which are pre-configured Process Instance queries.
Class members
Methods
- addFilter(filter:
ProcessFilterCloudModel
)
Adds a new process instance filter- filter:
ProcessFilterCloudModel
- The new filter to add
- filter:
- deleteFilter(filter:
ProcessFilterCloudModel
)
Delete process instance filter- filter:
ProcessFilterCloudModel
- The new filter to delete
- filter:
- getAllProcessesFilter(appName:
string
):ProcessFilterCloudModel
Creates and returns a filter for "All" Process instances.- appName:
string
- Name of the target app - Returns
ProcessFilterCloudModel
- The newly created filter
- appName:
- getCompletedProcessesFilter(appName:
string
):ProcessFilterCloudModel
Creates and returns a filter for "Completed" Process instances.- appName:
string
- Name of the target app - Returns
ProcessFilterCloudModel
- The newly created filter
- appName:
- getProcessFilterById(appName:
string
, id:string
):ProcessFilterCloudModel
Get process instance filter for given filter id- appName:
string
- Name of the target app - id:
string
- Id of the target process instance filter - Returns
ProcessFilterCloudModel
- Details of process filter
- appName:
- getProcessFilters(appName:
string
):Observable
<
ProcessFilterCloudModel
[]>
Gets all process instance filters for a process app.- appName:
string
- Name of the target app - Returns
Observable
<
ProcessFilterCloudModel
[]>
- Observable of process filter details
- appName:
- getRunningProcessesFilter(appName:
string
):ProcessFilterCloudModel
Creates and returns a filter for "Running" Process instances.- appName:
string
- Name of the target app - Returns
ProcessFilterCloudModel
- The newly created filter
- appName:
- updateFilter(filter:
ProcessFilterCloudModel
)
Update process instance filter- filter:
ProcessFilterCloudModel
- The new filter to update
- filter:
Details
The methods of this service generally return an instance of
ProcessFilterCloudModel
or an array of instances.
You can use the returned filters to get matching process instances for the process app, such as 'Running', 'Completed', 'All', etc.