--- Added: v2.0.0 Status: Internal Last reviewed: 2018-06-13 --- # Host settings component Validates the URLs for ACS and APS and saves them in the user's local storage **Note:** this is an internal component and is not meant to be used in production. ![Host settings](../docassets/images/host-settings-component.png) ## Basic Usage ```html ``` ```ts @NgModule({ providers: [ { provide: AppConfigService, useClass: DebugAppConfigService }, ] )] ``` ## Class members ### Properties | Name | Type | Default value | Description | | -- | -- | -- | -- | | providers | `string[]` | ['BPM', 'ECM', 'ALL'] | Tells the component which provider option are available. Possible valid values are "ECM" (Content), "BPM" (Process) , "ALL" (Content and Process), 'OAUTH2' SSO . | ### Events | Name | Type | Description | | -- | -- | -- | | bpmHostChange | [`EventEmitter`](https://angular.io/api/core/EventEmitter)`` | (**Deprecated:** in 2.4.0) Emitted when the bpm host URL is changed. | | cancel | [`EventEmitter`](https://angular.io/api/core/EventEmitter)`` | | | ecmHostChange | [`EventEmitter`](https://angular.io/api/core/EventEmitter)`` | (**Deprecated:** in 2.4.0) Emitted when the ecm host URL is changed. | | error | [`EventEmitter`](https://angular.io/api/core/EventEmitter)`` | Emitted when the URL is invalid. | | success | `EventEmitter` | |