1 17 18 package org.apache.geronimo.core.service; 19 20 21 import java.util.List ; 22 23 import org.apache.geronimo.core.service.Component; 24 25 26 32 public interface Container extends Component{ 33 34 40 public void addComponent(Component component); 41 42 43 44 45 50 public List getComponents (); 51 52 53 54 62 public void removeComponent (Component component) throws Exception ; 63 } 64 | Popular Tags |