Examples of disconnectProvider()


Examples of intf.ccacore.XCATComponentID.disconnectProvider()

    XCATComponentID provider = (XCATComponentID) connID.getProvider();
    XCATComponentID user = (XCATComponentID) connID.getUser();

    // remove the connection of the user's side
    user.disconnectProvider(connID.getUserPortName());

    // notify the provider's side
    provider.disconnectUser(connID.getProviderPortName());
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID.disconnectProvider()

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    remote.disconnectProvider(usingPortName);
  }

  /**
   * Disconnects the provides side from a connection
   * @param providingPortName the name of the provides port which is connected
View Full Code Here

Examples of org.brickred.socialauth.SocialAuthManager.disconnectProvider()

    } else if ("signout".equals(mode)) {
      SocialAuthManager manager = null;
      if (helper != null) {
        manager = helper.getAuthManager();
        if (manager != null) {
          manager.disconnectProvider(id);
        }
      }
      return "home";
    }
    return "home";
View Full Code Here

Examples of org.brickred.socialauth.SocialAuthManager.disconnectProvider()

    LOG.info("Given provider id :: " + id);
    SocialAuthManager manager;
    if (userSession.get("socialAuthManager") != null) {
      manager = (SocialAuthManager) userSession.get("socialAuthManager");
      if ("signout".equals(mode)) {
        manager.disconnectProvider(id);
        return "home";
      }
    } else {
      InputStream in = SocialAuthenticationAction.class.getClassLoader()
          .getResourceAsStream("oauth_consumer.properties");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.