1 22 package org.jboss.invocation.iiop; 23 24 import org.omg.CORBA.Policy ; 25 import org.omg.PortableServer.Servant ; 26 27 33 public interface ServantRegistry 34 { 35 36 51 ReferenceFactory bind(String name, Servant servant, Policy [] policies) 52 throws Exception ; 53 54 61 ReferenceFactory bind(String name, Servant servant) 62 throws Exception ; 63 64 67 void unbind(String name) 68 throws Exception ; 69 70 } 71 | Popular Tags |