alfresco-ng2-components/docs/core/apps-process.service.md
Andy Stark 02620f5563 [ADF-2670] Final doc checks for release (#3205)
* [ADF-2670] Fixed files with wrong name or location

* [ADF-2670] Fixed display glitch with tutorial index
2018-04-17 13:02:12 +01:00

1.7 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 = null): Observable<AppDefinitionRepresentation>
    Gets the details for a specific app ID number.
    • appId: number = null - ID of the target app
    • Returns Observable<AppDefinitionRepresentation> - Details of the app
  • getDeployedApplications(): Observable<AppDefinitionRepresentation[]>
    Gets a list of deployed apps for this user.
    • Returns Observable<AppDefinitionRepresentation[]> - The list of deployed apps
  • getDeployedApplicationsByName(name: string = null): Observable<AppDefinitionRepresentation>
    Gets a list of deployed apps for this user, where the app name is `name`.
    • name: string = null - Name of the app
    • Returns Observable<AppDefinitionRepresentation> - The list of deployed apps

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.

See also