1 23 24 package com.sun.enterprise.web.connector.grizzly; 25 26 import java.io.IOException ; 27 28 33 public interface Handler<E>{ 34 35 38 public final static int CONTINUE = 0; 39 40 41 44 public final static int BREAK = 1; 45 46 47 50 public final static int REQUEST_LINE_PARSED = 0; 51 52 53 56 public final static int RESPONSE_PROCEEDED = 1; 57 58 59 62 public final static int REQUEST_BUFFERED = 2; 63 64 65 68 public int handle(E e, int handlerCode) throws IOException ; 69 70 } 71 | Popular Tags |