Examples of ISayHello


Examples of demo.hello.service.interfaces.ISayHello

   
    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");
    }
  }
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.