Package org.orgama.server.auth

Examples of org.orgama.server.auth.ICoreSessionService


  }
 
  @Override
  public SignOutResult execImpl(SignOut a, ExecutionContext ec) {
   
    ICoreSessionService sessionService = sessionServicesProvider.get();
    AuthSession authSession = sessionService.get();
    String alternateRedirectUrl = null;
    SignOutResult result = new SignOutResult();
   
    if (a.isSignOutOfApp()) {
      if (authSession == null) {
        Logger.warn("Requested to log out of app when not logged in");
      }
      else {
        sessionService.close(authSession);
      }
    }
   
    if (a.isSignOutOfExternalService()) {
      String authServiceName = null;
View Full Code Here

TOP

Related Classes of org.orgama.server.auth.ICoreSessionService

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.