1 23 24 package org.objectweb.fractal.julia.control.binding; 25 26 import org.objectweb.fractal.api.NoSuchInterfaceException; 27 import org.objectweb.fractal.api.control.IllegalBindingException; 28 import org.objectweb.fractal.api.control.IllegalLifeCycleException; 29 30 43 44 public interface ContentBindingController { 45 46 54 55 String [] listFcContent (); 56 57 70 71 Object lookupFcContent (String clientItfName) throws NoSuchInterfaceException; 72 73 87 88 void bindFcContent (String clientItfName, Object serverItf) throws 89 NoSuchInterfaceException, 90 IllegalBindingException, 91 IllegalLifeCycleException; 92 93 106 107 void unbindFcContent (String clientItfName) throws 108 NoSuchInterfaceException, 109 IllegalBindingException, 110 IllegalLifeCycleException; 111 } 112 | Popular Tags |