case BundleEvent.STARTING:
break;
case BundleEvent.STOPPED:
Iterator j = bindingProvider.getBindings().iterator();
while(j.hasNext()){
Binding binding = (Binding)context.getService((ServiceReference)j.next());
binding.unbindContribution(contribution);
}
break;
case BundleEvent.STOPPING:
break;
case BundleEvent.UNINSTALLED: