1 17 package org.apache.servicemix.geronimo; 18 19 20 public interface Container { 21 22 public void register(Component component) throws Exception ; 23 24 public void unregister(Component component) throws Exception ; 25 26 public void register(ServiceAssembly assembly) throws Exception ; 27 28 public void unregister(ServiceAssembly assembly) throws Exception ; 29 30 } 31 | Popular Tags |