1 22 package org.objectweb.petals.service; 23 24 31 public interface ServiceBindingController { 32 33 String [] getInterfaces(); 34 35 Object lookup(String interfaceName); 36 37 void bind(String clientInterfaceName, Object clientReference) 38 throws NoSuchInterfaceException, IllegalBindingException, 39 IllegalLifeCycleException; 40 41 void unbind(String clientInterfaceName) throws NoSuchInterfaceException, 42 IllegalBindingException, IllegalLifeCycleException; 43 44 } 45 | Popular Tags |