/* (non-Javadoc)
* @see de.innovationgate.webgate.api.auth.DefaultAuthModuleFactory#createAuthModule(java.lang.String)
*/
protected AuthenticationModule createAuthModule(String type) throws ConfigurationException {
AuthenticationModule module = null;
// First try. Create modules hosted by this module factory
if (type.equals((AUTHMODULE_CS))) {
module = new CSAuthModule();
}