Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
    public void start(BundleContext context) {
        registrationList = new ArrayList<ServiceRegistration>();
        //Register plugin here
        registrationList.add(context.registerService(JdbcStoreBinderMultiStoreBinder.class.getName(), new JdbcStoreBinderMultiStoreBinder(), null));
    } 

f. Build it and testing

...