Files
alfresco-ng2-components/docs/process-services-cloud/services/form-cloud.service.md
Eugenio Romano a6ad7a5ad0 Documentation update 3.6.0 (#5257)
* documentation update 3.6.0

* documentation update 3.6.0

* update missing doc
2019-11-18 12:34:28 +00:00

1.7 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
Form cloud service v3.2.0 Active 2019-04-12

Form cloud service

Implements Process Services form methods

Basic Usage

import { FormCloudService } from '@alfresco/adf-process-services-cloud';

@Component(...)
class MyComponent {

    constructor(formCloudService: FormCloudService) {}

}

Class members

Methods

  • getForms(appName: string): Promise<any[]>

    • appName: string -
    • Returns Promise<any[]> -
  • getIdByFormName(appName: string, formName: string): Promise<string>

    • appName: string -
    • formName: string -
    • Returns Promise<string> -
  • submitForm(formId: any, appName: any, taskId: any, processInstanceId: any, values: any): Promise<any>

    • formId: any -
    • appName: any -
    • taskId: any -
    • processInstanceId: any -
    • values: any -
    • Returns Promise<any> -

See also