Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Defining an in-memory authentication provider

 

In the application.properties file two properties are expected for an in-memory authentication provider:

Code Block
blueriq.security.auth-providers.local01.type=in-memory
blueriq.security.auth-providers.local01.users.location=users.properties
  • auth-providers is the property name of the authentication providers property
  • After the property name, the name of the authentication provider is specified. In this example the name is local01


An in-memory authentication provider needs the file location of a property file to load the users/roles from, this is specified in the users.location property.

At startup this file is not created. If the file does not exists and the current user tries to save the users he gets a warning.


An example of a users.properties file:

Code Block
# format: USERNAME=PASSWORD,ROLE1,ROLE2
admin=welcome,dcm,administrator
jane=welcome02,dcm,operator
john=welcome03,dcm