1 24 25 package org.objectweb.fractal.api.control; 26 27 import org.objectweb.fractal.api.NoSuchInterfaceException; 28 29 34 35 public interface BindingController { 36 37 44 45 String [] listFc (); 46 47 61 62 Object lookupFc (String clientItfName) throws NoSuchInterfaceException; 63 64 80 81 void bindFc (String clientItfName, Object serverItf) throws 82 NoSuchInterfaceException, 83 IllegalBindingException, 84 IllegalLifeCycleException; 85 86 99 100 void unbindFc (String clientItfName) throws 101 NoSuchInterfaceException, 102 IllegalBindingException, 103 IllegalLifeCycleException; 104 } 105 | Popular Tags |