This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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