1 16 17 package org.apache.ajp; 18 19 import java.io.IOException ; 20 21 import org.apache.tomcat.util.http.BaseRequest; 22 23 36 public class AjpHandler 37 { 38 public static final int UNKNOWN=-1; 39 Ajp13 channel; 40 41 public void init( Ajp13 channel ) { 42 this.channel=channel; 43 } 44 45 47 public int handleAjpMessage( int type, Ajp13 channel, 48 Ajp13Packet ajp, BaseRequest req ) 49 throws IOException  50 { 51 return UNKNOWN; 52 } 53 } 54 | Popular Tags |