1 16 package org.apache.commons.chain.web; 17 18 19 import java.util.Map ; 20 import org.apache.commons.chain.impl.ContextBase; 21 22 23 40 41 public abstract class WebContext extends ContextBase { 42 43 44 46 47 51 public abstract Map getApplicationScope(); 52 53 54 59 public abstract Map getHeader(); 60 61 62 67 public abstract Map getHeaderValues(); 68 69 70 74 public abstract Map getInitParam(); 75 76 77 81 public abstract Map getParam(); 82 83 84 88 public abstract Map getParamValues(); 89 90 91 95 public abstract Map getRequestScope(); 96 97 98 102 public abstract Map getSessionScope(); 103 104 105 } 106 | Popular Tags |