//participant
QuiesceManager quiesceMgr = getOsgiService(QuiesceManager.class);
List<Bundle> bundleList = new ArrayList<Bundle>();
bundleList.add(bapi);
quiesceMgr.quiesce(500,bundleList);
Thread.sleep(1000);
//blog api bundle should now be stopped, but others should still be running
assertTrue("Blog api bundle should have been quiesced, but it's state is "+bapi.getState(), bapi.getState() != bapi.ACTIVE);
assertEquals(bweb.ACTIVE, bweb.getState());