Package demo.hello.provider.impl

Examples of demo.hello.provider.impl.SayHelloImpl


  Dictionary properties = new Properties();

  public void start(BundleContext context) throws Exception {
    System.out.println("HelloService provider start");
    properties.put("x-name", "x-provider");
    registration = context.registerService(ISayHello.class.getName(), new SayHelloImpl(), properties);
  }
View Full Code Here

TOP

Related Classes of demo.hello.provider.impl.SayHelloImpl

Copyright © 2018 www.massapicom. 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.