1 16 package org.apache.cocoon.components.modules.output; 17 18 import org.apache.avalon.framework.component.Component; 19 import org.apache.avalon.framework.configuration.Configuration; 20 21 import java.util.Map ; 22 23 33 public interface OutputModule extends Component { 34 35 String ROLE = OutputModule.class.getName(); 36 37 50 void setAttribute( Configuration modeConf, Map objectModel, String name, Object value ); 51 52 53 62 void rollback( Configuration modeConf, Map objectModel, Exception e ); 63 64 65 69 void commit( Configuration modeConf, Map objectModel ); 70 } 71 | Popular Tags |