1 package org.objectweb.celtix.bindings; 2 3 import org.objectweb.celtix.BusException; 4 5 12 public interface BindingManager { 13 14 22 void registerBinding(String name, 23 BindingFactory binding) throws BusException; 24 25 31 void deregisterBinding(String name) 32 throws BusException; 33 34 41 BindingFactory getBindingFactory(String name) throws BusException; 42 43 46 void shutdown(); 47 } 48 | Popular Tags |