1 2 3 27 28 29 package org.apache.catalina.core; 30 31 32 import java.io.IOException ; 33 import javax.servlet.ServletException ; 34 import org.apache.catalina.Request; 35 import org.apache.catalina.Response; 36 import org.apache.catalina.Valve; 37 import org.apache.catalina.ValveContext; 38 import org.apache.catalina.util.StringManager; 39 40 41 52 53 public final class StandardValveContext 54 implements ValveContext { 55 56 57 59 60 63 protected static final StringManager sm = 64 StringManager.getManager(Constants.Package); 65 66 67 protected String info = 68 "org.apache.catalina.core.StandardValveContext/1.0"; 69 protected int stage = 0; 70 protected Valve basic = null; 71 protected Valve valves[] = null; 72 73 74 76 77 81 public String getInfo() { 82 return info; 83 } 84 85 86 88 89 110 public final void invokeNext(Request request, Response response) 111 throws IOException , ServletException { 112 113 127 } 129 130 131 133 134 137 void set(Valve basic, Valve valves[]) { 138 stage = 0; 139 this.basic = basic; 140 this.valves = valves; 141 } 142 143 144 } 145 146 | Popular Tags |