Glue42 Enterprise is now io.Connect Desktop! The new documentation site for all interop.io products is located at docs.interop.io.

App Preferences

Overview

The App Preferences API enables apps to store custom user-specific data and retrieve it when necessary. This allows you to enhance the UX of your apps by instrumenting them to preserve specific user settings and apply them when the app is relaunched.

The App Preferences API provides methods for updating, replacing and clearing user settings stored for the current or a specific app, as well as for all apps of the current user.

Storage

App preferences can be stored locally in a file, or remotely - using a REST service or the Glue42 Server. By default, app preferences are stored locally in the %LocalAppData%\Tick42\UserData\<ENV>-<REG>\prefs folder where <ENV>-<REG> must be replaced with the environment and region of your Glue42 Enterprise copy (e.g., T42-DEMO). To configure Glue42 Enterprise where to store app preferences, use the "store" property of the "applicationPreferences" top-level key in the system.json file located in the %LocalAppData%\Tick42\GlueDesktop\config folder:

{
    "applicationPreferences": {
        "store": {
            "type": "rest",
            "restURL": "https://my-rest-service.com",
            "restClientAuth": "no-auth",
            "newDataCheckInterval": 2000
        }
    }
}

The "store" object has the following properties:

Property Type Description
"type" string The type of the app preferences store. Can be one of "file" (default), "rest" or "server".
"restURL" string The URL of the REST service providing the app preferences. Valid only in "rest" mode.
"restClientAuth" string The client authentication mechanism for the REST service. Can be one of "no-auth" (default), "negotiate" or "kerberos". Valid only in "rest" mode.
"newDataCheckInterval" number Interval in seconds at which to check for new data from the REST store. Executed only if subscribers are available. Valid only in "rest" mode.

The "type" property accepts the following values:

Value Description
"file" Default. App preferences will be saved locally in a file.
"rest" App preferences will be saved using the REST service at the URL provided to the "restURL" property.
"server" App preferences will be saved using a Glue42 Server (the Glue42 Server must be configured first).

For more details, see the Developers > Configuration section and the system configuration schema.

For a reference implementation of a remote app preferences store, see the Node.js REST Config example. This basic implementation doesn't take the user into account and returns the same set of data for all requests. For instructions on running the sample server on your machine, see the README file in the repository.