Package org.jboss.security.identity.sso

Examples of org.jboss.security.identity.sso.SSOUser


   public void testRequestGeneration() throws Exception
   {
      assertNotNull("processor != null");
      String request = processor.generateAuthRequest(USERNAME, PASSWORD);
      assertNotNull("request != null", request);
      SSOUser user = processor.parseAuthRequest(request);
      assertNotNull("user != null", user);
      assertTrue("user ==" + USERNAME, user.getUserName().equals(USERNAME));
      assertTrue("pwd ==" + PASSWORD, user.getPassword().equals(PASSWORD));
   }
View Full Code Here

TOP

Related Classes of org.jboss.security.identity.sso.SSOUser

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.