@Component(service=UkelonnService.class, immediate=true) | |
public class UkelonnServiceProvider extends UkelonnServiceBase { | |
private UkelonnDatabase database; | |
@Activate | |
public void activate() { | |
// Nothing to do here | |
} | |
@Reference | |
public void setUkelonnDatabase(UkelonnDatabase database) { | |
this.database = database; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment