Name

authenticator

Configuration File Authenticator — An authenticator that allows you to specify users in the config.xml file

<authenticator class="xms.security.ConfigurationFileAuthenticator" name="name"> child tags </authenticator>

[Note]Note
There are no attributes for this tag

Child Tags

User Element

<user > child tags </user>

Table 6. Attributes for user tag (for xms.security.ConfigurationFileAuthenticator)

NameDescriptionTypeDefault ValueRequired
groupsA list of groups this user belongs toString any character combinationadminno
nameThe user's real nameString any character combinationnoneno
passwordThe user's passwordString any character combinationnoneyes
usernameThe login name for the userString any character combinationnoneyes
Child Tags
Email

<email>value</email>

Table 7. Attributes for email tag (for xms.security.ConfigurationFileAuthenticator)

NameDescriptionTypeDefault ValueRequired
valueEmail addresses for the userString any character combinationnoneyes

Example 7. Example configuration for Configuration File Authenticator

Required attributes are marked with a bold typeface

<authenticator class="xms.security.ConfigurationFileAuthenticator" name="name">
    <user groups="groups"
          name="name"
          password="password"
          username="username">
        <email>
            value
        </email>
    </user>
</authenticator>