We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For mandatory static references the preferred way to inject is to use constructor injection:
@Activate public NettyFrameworkImpl(@Reference ExecutorService executorService) { this.executorService = executorService; }
Use a @Component rather than a .bnd file entry and there is no need to have the service.vendor field
@Component
slack