Package org.jboss.web.tomcat.service.sso.spi

Examples of org.jboss.web.tomcat.service.sso.spi.SSOCredentials


    * @param username the username (if any) used for the authentication
    * @param password the password (if any) used for the authentication
    */
   private void storeCredentials(String ssoId, String authType, String username, String password)
   {
      SSOCredentials credentials = new SSOCredentials(authType, username, password);

      // Add this SSO to our list of in-process local adds so
      // this.nodeModified() will ignore the addition
      beingLocallyAdded.set(ssoId);

View Full Code Here

TOP

Related Classes of org.jboss.web.tomcat.service.sso.spi.SSOCredentials

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.