userpreferences
This configuration is required when using the plugin Cadenza.
-
Documentation
-
YAML Format
-
XML Format
| Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets. |
<userPreferencesConfiguration
>
required<database
<password
requiredstringPassword of the database user, usually expected to be encoded with the Cadenza password encoder (see also Secrets in Configuration).
</password>
<properties
<property
xs:stringname
required=
stringdescription
optional=
string>
optionalmax. unbounded
</property>
>
optional
</properties>
>
required
</database>
</userPreferencesConfiguration>
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
cadenzaconfig:
settings:
userpreferences:
database:
driverName: "text"
jdbcURL: "text"
user: "text"
password: "text"
connectionPoolSize: 15
properties:
- name: "text"
description: "text"
value: "text"
- name: "text"
description: "text"
value: "text"
Filename: userpreferences-config.xml
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<userPreferencesConfiguration>
<database>
<driverName>text</driverName>
<jdbcURL>text</jdbcURL>
<user>text</user>
<password>text</password>
<connectionPoolSize>15</connectionPoolSize>
<properties>
<property name="text" description="text">text</property>
<property name="text" description="text">text</property>
</properties>
</database>
</userPreferencesConfiguration>