DatabaseServerLoginModule configuration example

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 3717

This topic has not yet been written. The content below is from the topic description.
An example DatabaseServerLoginModule configuration could be constructed as follows: CREATE TABLE Users(username VARCHAR(64) PRIMARY KEY, passwd VARCHAR(64)) CREATE TABLE UserRoles(username VARCHAR(64), userRoles VARCHAR(32)) A corresponding login-config.xml entry would be: java:/MyDatabaseDS select passwd from Users username where username=? select userRoles, 'Roles' from UserRoles where username=?