1 16 17 package org.apache.cocoon.components.modules.input; 18 19 import org.apache.avalon.framework.component.Component; 20 import org.apache.avalon.framework.configuration.Configuration; 21 import org.apache.avalon.framework.configuration.ConfigurationException; 22 23 import java.util.Iterator ; 24 import java.util.Map ; 25 26 34 public interface InputModule extends Component { 35 36 String ROLE = InputModule.class.getName(); 37 38 39 53 Object getAttribute( String name, Configuration modeConf, Map objectModel ) throws ConfigurationException; 54 55 56 64 Iterator getAttributeNames( Configuration modeConf, Map objectModel ) throws ConfigurationException; 65 66 67 81 Object [] getAttributeValues( String name, Configuration modeConf, Map objectModel ) throws ConfigurationException; 82 83 } 84 | Popular Tags |