KickJava   Java API By Example, From Geeks To Geeks.

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


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