package com.example.helloworld;
import org.osgi.service.component.annotations.Component;
@Component
public class HelloWorld {
public void sayHello() {
System.out.println("Hello World!");
}
}
Bundle-SymbolicName: com.example.helloworld
Private-Package: com.example.helloworld