Re: IPOJO Component is not exposing service properly

2018-07-17 Thread Clement Escoffier
Hello, It looks like you didn’t create an instance. Add the @Instance annotation on the class. Clement > On 17 Jul 2018, at 18:53, imranrazakhan wrote: > > i have component like@Component(immediate = true)@Providespublic class > MyComponent implements MyService{@Overridepublic boolean isl

IPOJO Component is not exposing service properly

2018-07-17 Thread imranrazakhan
i have component like@Component(immediate = true)@Providespublic class MyComponent implements MyService{@Overridepublic boolean islock(){ return true;}}when i deploy in karaf with below commandbundle:install -s mvn:com.my.osgi/mycomponent/0.0.1if i do service:list at karaf conso

AW: Configurator R7 example

2018-07-17 Thread Philipp Höfler
Thanks for the detailed explanation. I can now better understand your approach. Still, there are a few things unclear to me: * From my point of view, I would like to avoid doing the security check within the IRepositoryImpl class. The security mechanism is related to the rest interface and not to

Re: Configurator R7 example

2018-07-17 Thread Raymond Auge
On Tue, Jul 17, 2018 at 10:18 AM, Philipp Höfler < philipp.hoef...@pernexas.com> wrote: > Hallo Ray, > > I am sorry, I do not understand your pseudo code example. > I've modified my test project to show you my current structure. > > From my point of view, I would need something like a "Router" to

AW: Configurator R7 example

2018-07-17 Thread Philipp Höfler
Hallo Ray, I am sorry, I do not understand your pseudo code example. I've modified my test project to show you my current structure. From my point of view, I would need something like a "Router" to route the Requests to the right instance of the controller. According to my current understanding