Interface HTTPClientModuleConstants
-
- All Known Subinterfaces:
HTTPClientModule
- All Known Implementing Classes:
CookieModule,HTTPConnection,HTTPResponse
public interface HTTPClientModuleConstantsThis interface defines the return codes that the handlers in modules may return.- Since:
- V0.3
- Version:
- 0.3-3 06/05/2001
- Author:
- Ronald Tschal�r
- See Also:
HTTPClientModule
-
-
Field Summary
Fields Modifier and Type Field Description static intREQ_CONTINUEcontinue processing the requeststatic intREQ_NEWCON_RSTusing a new HTTPConnection, restart request processingstatic intREQ_NEWCON_SNDusing a new HTTPConnection, send request immediatelystatic intREQ_RESPONSEresponse generated; go to phase 2static intREQ_RESTARTrestart request processing with first modulestatic intREQ_RETURNresponse generated; return response immediately (no processing)static intREQ_SHORTCIRCstop processing and send the requeststatic intRSP_CONTINUEcontinue processing responsestatic intRSP_NEWCON_REQgo to phase 1 using a new HTTPConnectionstatic intRSP_NEWCON_SNDsend request using a new HTTPConnectionstatic intRSP_REQUESTnew request generated; go to phase 1static intRSP_RESTARTrestart response processing with first modulestatic intRSP_SENDnew request generated; send request immediately (no processing)static intRSP_SHORTCIRCstop processing and return response
-
-
-
Field Detail
-
REQ_CONTINUE
static final int REQ_CONTINUE
continue processing the request- See Also:
- Constant Field Values
-
REQ_RESTART
static final int REQ_RESTART
restart request processing with first module- See Also:
- Constant Field Values
-
REQ_SHORTCIRC
static final int REQ_SHORTCIRC
stop processing and send the request- See Also:
- Constant Field Values
-
REQ_RESPONSE
static final int REQ_RESPONSE
response generated; go to phase 2- See Also:
- Constant Field Values
-
REQ_RETURN
static final int REQ_RETURN
response generated; return response immediately (no processing)- See Also:
- Constant Field Values
-
REQ_NEWCON_RST
static final int REQ_NEWCON_RST
using a new HTTPConnection, restart request processing- See Also:
- Constant Field Values
-
REQ_NEWCON_SND
static final int REQ_NEWCON_SND
using a new HTTPConnection, send request immediately- See Also:
- Constant Field Values
-
RSP_CONTINUE
static final int RSP_CONTINUE
continue processing response- See Also:
- Constant Field Values
-
RSP_RESTART
static final int RSP_RESTART
restart response processing with first module- See Also:
- Constant Field Values
-
RSP_SHORTCIRC
static final int RSP_SHORTCIRC
stop processing and return response- See Also:
- Constant Field Values
-
RSP_REQUEST
static final int RSP_REQUEST
new request generated; go to phase 1- See Also:
- Constant Field Values
-
RSP_SEND
static final int RSP_SEND
new request generated; send request immediately (no processing)- See Also:
- Constant Field Values
-
RSP_NEWCON_REQ
static final int RSP_NEWCON_REQ
go to phase 1 using a new HTTPConnection- See Also:
- Constant Field Values
-
RSP_NEWCON_SND
static final int RSP_NEWCON_SND
send request using a new HTTPConnection- See Also:
- Constant Field Values
-
-