1 16 package org.apache.cocoon.components.modules.input; 17 18 import org.apache.avalon.framework.configuration.Configuration; 19 import org.apache.avalon.framework.thread.ThreadSafe; 20 21 import java.util.Map ; 22 23 38 public class SystemPropertyModule extends AbstractJXPathModule 39 implements ThreadSafe { 40 41 44 protected Object getContextObject(Configuration modeConf, 45 Map objectModel) { 46 return System.getProperties(); 47 } 48 } 49 | Popular Tags |