Re: How to listen if a feature is started

2013-04-26 Thread Achim Nierbeck
Hi, retrieve the features service and look for the installed feature. That should do. regards, Achim 2013/4/26 Romain Gilles romain.gil...@gmail.com Hi all, I would like to know if there is a way to listen feature installation / start completion? Thanks, Romain -- Apache Karaf

Re: How to listen if a feature is started

2013-04-26 Thread Jean-Baptiste Onofré
Easier: create a class which implements org.apache.karaf.features.FeaturesListener. You have to implement: public void featureEvent(FeatureEvent event); In this method, with the event, you can: - get the feature (event.getFeature()) - get the event type