Examples of XCATComponentID


Examples of intf.ccacore.XCATComponentID

  public XmlNode requestTerminationBefore(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.requestTerminationBefore(terminationTime);
  }
View Full Code Here

Examples of intf.ccacore.XCATComponentID

   */
  public XmlNode destroy() throws RemoteException {
    logger.finest("called");

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

Examples of intf.ccacore.XCATComponentID

  public void setProperties(String properties)
    throws gov.cca.CCAException {
    logger.finest("called");

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