Package de.innovationgate.webgate.api.auth

Examples of de.innovationgate.webgate.api.auth.PasswordCachingAuthenticationModule


       
        // Change cached password on domain auth module, if it is password-caching
        if (!WGDatabase.SESSIONTOKEN_USER.equals(loginInfo.getUserName())) {
            DomainConfiguration domConfig = getwgacore().getDomainConfig(domain);
            if (domConfig != null && domConfig.getAuthModule() instanceof PasswordCachingAuthenticationModule) {
                PasswordCachingAuthenticationModule module = (PasswordCachingAuthenticationModule) domConfig.getAuthModule();
                module.dropPasswordCache(loginInfo.getUserName());       
    }
        }
       
       
    }
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.auth.PasswordCachingAuthenticationModule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.