[Jrevproxy-cvs] jRevProxy/src/cx/noe/jrevproxy HTTPBase.java,1.12,1.13 Rule.java,2.8,2.9 HTTPRequest
Status: Alpha
Brought to you by:
fnoe
|
From: <fn...@us...> - 2003-12-26 22:04:34
|
Update of /cvsroot/jrevproxy/jRevProxy/src/cx/noe/jrevproxy
In directory sc8-pr-cvs1:/tmp/cvs-serv28141/src/cx/noe/jrevproxy
Modified Files:
HTTPBase.java Rule.java HTTPRequest.java
Log Message:
fixed/updated javadoc info
Index: HTTPBase.java
===================================================================
RCS file: /cvsroot/jrevproxy/jRevProxy/src/cx/noe/jrevproxy/HTTPBase.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** HTTPBase.java 15 Jun 2003 21:21:38 -0000 1.12
--- HTTPBase.java 26 Dec 2003 22:04:31 -0000 1.13
***************
*** 60,64 ****
/**
* Updates HTTP header values or adds the key/value pair if the header is missing at all
! * @param response the HTTP message
* @param key the HTTP header key
* @param value the HTTP header value
--- 60,64 ----
/**
* Updates HTTP header values or adds the key/value pair if the header is missing at all
! * @param msg the HTTP message
* @param key the HTTP header key
* @param value the HTTP header value
***************
*** 105,109 ****
/**
* Retrieves a value for a header key in the specified HTTP message
! * @param request the HTTP message
**/
public static String getValue(String msg, String key) {
--- 105,110 ----
/**
* Retrieves a value for a header key in the specified HTTP message
! * @param msg the HTTP message
! * @param key the key to be searched for
**/
public static String getValue(String msg, String key) {
Index: Rule.java
===================================================================
RCS file: /cvsroot/jrevproxy/jRevProxy/src/cx/noe/jrevproxy/Rule.java,v
retrieving revision 2.8
retrieving revision 2.9
diff -C2 -d -r2.8 -r2.9
*** Rule.java 18 May 2003 11:10:48 -0000 2.8
--- Rule.java 26 Dec 2003 22:04:31 -0000 2.9
***************
*** 61,65 ****
/**
* Sets the external virtual directory
! * @param the external virtual directory
*/
public void setVirtualDir(String vdir) {
--- 61,65 ----
/**
* Sets the external virtual directory
! * @param vdir the external virtual directory
*/
public void setVirtualDir(String vdir) {
Index: HTTPRequest.java
===================================================================
RCS file: /cvsroot/jrevproxy/jRevProxy/src/cx/noe/jrevproxy/HTTPRequest.java,v
retrieving revision 2.13
retrieving revision 2.14
diff -C2 -d -r2.13 -r2.14
*** HTTPRequest.java 26 Dec 2003 19:14:18 -0000 2.13
--- HTTPRequest.java 26 Dec 2003 22:04:31 -0000 2.14
***************
*** 168,173 ****
*
* @param request the HTTPRequest string
! * @param vdir the virtual directory to be placed in the request
! * @return the modified HTTPRequest string with the new virtual directory
**/
public static String setVirtualDir(String request, String newVdir) throws HTTPFormatException {
--- 168,173 ----
*
* @param request the HTTPRequest string
! * @param newVdir the virtual directory to be placed in the request
! * @return the modified HTTPRequest string with the new virtual directory
**/
public static String setVirtualDir(String request, String newVdir) throws HTTPFormatException {
|