Package org.gatein.sso.plugin

Examples of org.gatein.sso.plugin.RestCallbackCaller


      {
         synchronized (this)
         {
            if (restCallbackCaller == null)
            {
               restCallbackCaller = new RestCallbackCaller(gateInProtocol, gateInHost, gateInPort,
                     gateInContext, httpMethod);
            }
         }
      }
View Full Code Here


         String gateInProtocol = properties.getProperty("protocol");
         String gateInHttpMethod = properties.getProperty("httpMethod");

         log.debug("GateIn Host: " + gateInHost + ", GateIn Port: " + gateInPort + ", GateIn context: " + gateInContext + ", Protocol=" + gateInProtocol + ", http method=" + gateInHttpMethod);

         this.restCallbackCaller = new RestCallbackCaller(gateInProtocol, gateInHost, gateInPort, gateInContext, gateInHttpMethod);

         log.info("GateIn Identity Plugin successfully started");
      }
      catch (Exception e)
      {
View Full Code Here

   // ********** PROTECTED HELPER METHODS ****************************  

   protected boolean validateUser(String username, String password) throws Exception
   {
       RestCallbackCaller restCallbackCaller = new RestCallbackCaller(this.gateInURL, this.httpMethod);
       return restCallbackCaller.executeRemoteCall(username, password);
   }
View Full Code Here

         String gateInContext = properties.getProperty("context");
         String gateInProtocol = properties.getProperty("protocol");
         String gateInHttpMethod = properties.getProperty("httpMethod");

         log.debug("GateIn Host: " + gateInHost + ", GateIn Port: " + gateInPort + ", GateIn context: " + gateInContext + ", Protocol=" + gateInProtocol + ", http method=" + gateInHttpMethod);
         this.restCallbackCaller = new RestCallbackCaller(gateInProtocol, gateInHost, gateInPort, gateInContext, gateInHttpMethod);
    }
    catch(IOException ioe)
    {
         log.error("Error during initialization of login module", ioe);
    }
View Full Code Here

TOP

Related Classes of org.gatein.sso.plugin.RestCallbackCaller

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.