Trace: • Database Connection via JNDI • Setting Default Values • How to Get the Current Username • Replace JVx' standard Application With ProjX • User-Defined Session Manager and Object Provider • VisionX Logging • Supported Application.xml Properties • Password Policy Integration
This is an old revision of the document!
Applications, especially web applications, require secure passwords. However, users tend to select passwords that are easy to remember. Therefore the responsibility for chosing a secure password can not be left to the user. The application has to provide certain policies.
This is what the IPasswordValidator interface is for in JVx. It allows the creation of security policies for password.
JVx provides a default implementation: DefaultPasswordValidator. The following policies are supported:
- Minimum number of characters
- At least one number
- At least one letter
- At least one lowercase letter and one uppercase letter
- At least one special character (not a number or letter)
- The username cannot be the password
Password validation has to be configured since by default the system only verifies if the password contains at least one character.
The configuration is done in config.xml of the application:
<securitymanager> <class>com.sibvisions.rad.server.security.XmlSecurityManager</class> <passwordvalidator> <class>com.sibvisions.rad.server.security.validation.DefaultPasswordValidator</class> <minlength>10</minlength> <specialchar>true</specialchar> <digit>true</digit> <letter>false</letter> <mixedcase>false</mixedcase> <notequaluser>true</notequaluser> </passwordvalidator> </securitymanager>