accessmanagerembedded

This configuration is required when using the plugin AccessManager_Embedded.

  • Documentation

  • YAML Format

  • XML Format

Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets.
<embedded
>
required

Embedded configuration of the user management.

<users
>
optional
<user
<loginName
>
required
string

The unique login name of the user.

</loginName>
<password
>
required
string

The password of the user.

</password>
<realName
>
optional
string

The real name of the user.

</realName>
<email
>
optional
string

The email address of the user.

</email>
<superAdmin
>
optional
boolean

Defines if the user is a super admin.

</superAdmin>
<groups
>
optional

The groups of the user.

<group
>
optionalmax. unbounded
string

A group of the user.

</group>
</groups>
<properties
>
optional

The properties of the user (can be used for user variables).

<property
name
required
=
string

The name of the property.

<value
>
requiredmax. unbounded
string

The value of the property (each property can have multiple values).

</value>
>
optionalmax. unbounded
</property>
</properties>
>
optionalmax. unbounded
</user>
</users>
</embedded>
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:
    accessmanagerembedded:
      users:
      - loginName: "text"
        password: "text"
        realName: "text"
        email: "text"
        superAdmin: true
        groups:
        - "text"
        - "text"
        properties:
        - name: "text"
          value:
          - "text"
          - "text"
        - name: "text"
          value:
          - "text"
          - "text"
      - loginName: "text"
        password: "text"
        realName: "text"
        email: "text"
        superAdmin: true
        groups:
        - "text"
        - "text"
        properties:
        - name: "text"
          value:
          - "text"
          - "text"
        - name: "text"
          value:
          - "text"
          - "text"

Filename: accessmanagerembedded-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"?>
<embedded>
  <users>
    <user>
      <loginName>text</loginName>
      <password>text</password>
      <realName>text</realName>
      <email>text</email>
      <superAdmin>true</superAdmin>
      <groups>
        <group>text</group>
        <group>text</group>
      </groups>
      <properties>
        <property name="text">
          <value>text</value>
          <value>text</value>
        </property>
        <property name="text">
          <value>text</value>
          <value>text</value>
        </property>
      </properties>
    </user>
    <user>
      <loginName>text</loginName>
      <password>text</password>
      <realName>text</realName>
      <email>text</email>
      <superAdmin>true</superAdmin>
      <groups>
        <group>text</group>
        <group>text</group>
      </groups>
      <properties>
        <property name="text">
          <value>text</value>
          <value>text</value>
        </property>
        <property name="text">
          <value>text</value>
          <value>text</value>
        </property>
      </properties>
    </user>
  </users>
</embedded>