Examples of XCATComponentID


Examples of intf.ccacore.XCATComponentID

  public String incrementUsers(String providesPortName)
    throws gov.cca.CCAException {
    logger.finest("called");

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    return remote.incrementUsers(providesPortName);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

      " user component = " + userComponentName +
      " provides port name = " + providingPortName +
      " uses port name = " + usingPortName);

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    remote.addUsesConnection(providerComponentName,
           providerComponentHandle,
           userComponentName,
           userComponentHandle,
           providingPortName,
           usingPortName,
View Full Code Here

Examples of intf.ccacore.XCATComponentID

  public void disconnectProvider(String usingPortName)
    throws gov.cca.CCAException {
    logger.finest("called with uses port: " + usingPortName);

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

Examples of intf.ccacore.XCATComponentID

  public void disconnectUser(String providingPortName)
    throws gov.cca.CCAException {
    logger.finest("called with provides port: " + providingPortName);

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    remote.disconnectUser(providingPortName);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

  public XCATConnectionInfo getConnectionInfo(String usingPortName)
    throws gov.cca.CCAException {
    logger.finest("called with uses port: " + usingPortName);

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    return remote.getConnectionInfo(usingPortName);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

  public void addWSConnection(String wsPortName,
            String endPointLocation)
    throws gov.cca.CCAException {
    logger.finest("called with WS port: " + wsPortName);
    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    remote.addWSConnection(wsPortName,
         endPointLocation);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

   */
  public void disconnectWS(String wsPortName)
    throws gov.cca.CCAException {
    logger.finest("called with WS port: " + wsPortName);
    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    remote.disconnectWS(wsPortName);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

  public XmlNode findServiceData(XmlNode queryExpression)
    throws RemoteException {
    logger.finest("called");

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    return remote.findServiceData(queryExpression);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

  public XmlNode setServiceData(XmlNode updateExpression)
    throws RemoteException {
    logger.finest("called");

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    return remote.setServiceData(updateExpression);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

  public XmlNode requestTerminationAfter(XmlNode terminationTime)
    throws RemoteException {
    logger.finest("called");

    // make a remote invocation on the server side
    XCATComponentID remote =
      (XCATComponentID) HandleResolver.resolveHandle(componentHandle,
                 XCATComponentID.class.getName());
    return remote.requestTerminationAfter(terminationTime);
  }
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.