1 10 11 package org.mule.umo.manager; 12 13 import org.mule.umo.lifecycle.Disposable; 14 import org.mule.umo.lifecycle.Initialisable; 15 16 import java.io.Reader ; 17 18 25 public interface UMOContainerContext extends Initialisable, Disposable 26 { 27 34 void setName(String name); 35 36 41 String getName(); 42 43 52 Object getComponent(Object key) throws ObjectNotFoundException; 53 54 67 void configure(Reader configuration, String doctype, String encoding) throws ContainerException; 68 } 69 | Popular Tags |