Package demo.hello.service.interfaces

Examples of demo.hello.service.interfaces.ISayHello.sayHello()


    reference = context.getServiceReference(ISayHello.class.getName());
    if(null == reference) {
      System.out.println("get reference is null.");
    } else {
      ISayHello sayHello = (ISayHello) context.getService(reference);
      sayHello.sayHello("Mitool");
    }
  }

  public void stop(BundleContext context) throws Exception {
    System.out.println("HelloService client stop");
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.