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 |
|---|---|
| There are no attributes for this tag | |
<user … > child tags </user>
Table 6. Attributes for user tag (for xms.security.ConfigurationFileAuthenticator)
| Name | Description | Type | Default Value | Required |
|---|---|---|---|---|
| groups | A list of groups this user belongs to | String any character combination | admin | no |
| name | The user's real name | String any character combination | none | no |
| password | The user's password | String any character combination | none | yes |
| username | The login name for the user | String any character combination | none | yes |
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>