mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-3323] Fixed URL path to Typescript source files * [ADF-3323] Fixed and checked broken links caused by previous bug
2.9 KiB
2.9 KiB
Added, Status, Last reviewed
Added | Status | Last reviewed |
---|---|---|
v2.0.0 | Active | 2018-04-05 |
Apps Process service
Gets details of the Process Services apps that are deployed for the user.
Class members
Methods
- getApplicationDetailsById(appId:
number
):Observable
<
AppDefinitionRepresentation
>
Gets the details for a specific app ID number.- appId:
number
- ID of the target app - Returns
Observable
<
AppDefinitionRepresentation
>
- Details of the app
- appId:
- getDeployedApplications():
Observable
<
AppDefinitionRepresentation
[]>
Gets a list of deployed apps for this user.- Returns
Observable
<
AppDefinitionRepresentation
[]>
- The list of deployed apps
- Returns
- getDeployedApplicationsByName(name:
string
):Observable
<
AppDefinitionRepresentation
>
Gets a list of deployed apps for this user, where the app name isname
.- name:
string
- Name of the app - Returns
Observable
<
AppDefinitionRepresentation
>
- The list of deployed apps
- name:
Details
This service can be used to access the Process Services apps that are available
to the current user. You can find more information about the
returned AppDefinitionRepresentation
class in the
Filter model page
and in the
Process Services Apps API.
The methods of this service make use of the
getAppDefinitions
method, also from the Apps API.