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