@Command(scope = "obr", name = "geronimo-refresh", description = "Refresh Geronimo OBR repository")
public class RefreshCommand extends OsgiCommandSupport {
protected Object doExecute() throws Exception {
ServiceReference ref = bundleContext.getServiceReference(GeronimoOBRGBean.class.getName());
GeronimoOBRGBean service = (GeronimoOBRGBean) getService(GeronimoOBRGBean.class, ref);
service.refresh();
return null;
}