KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > Connector > Boot > CNRegisterInterface


1 package SOFA.Connector.Boot;
2
3
4 public interface CNRegisterInterface {
5   void registerSubcomponent(java.lang.String JavaDoc name, SOFA.Connector.Reference target) throws SOFA.Component.NamingException, SOFA.Component.InstantiationException;
6   void unregisterSubcomponent(java.lang.String JavaDoc name) throws SOFA.Component.NamingException;
7   SOFA.Connector.Reference getProvisionReference(String JavaDoc name) throws SOFA.Component.NamingException;
8   void setRequirement(String JavaDoc name, SOFA.Connector.Reference ref) throws SOFA.Component.InstantiationException, SOFA.Component.NamingException;
9   void connectSubsumable() throws SOFA.Component.NamingException, SOFA.Component.InstantiationException;
10 }
11
Popular Tags