From: <ss...@vh...> - 2006-03-28 16:33:13
|
Author: sshinde Date: 2006-03-28 18:31:43 +0200 (Tue, 28 Mar 2006) New Revision: 1105 Modified: trunk/ccm-core/src/com/arsdigita/dispatcher/MultipartHttpServletRequest.java trunk/ccm-core/src/com/arsdigita/web/ServletRequestWrapper.java Log: Make these classes compatible with new servlet api which comes on Fedora Core 5.Harmless changes otherwise. Modified: trunk/ccm-core/src/com/arsdigita/dispatcher/MultipartHttpServletRequest.java =================================================================== --- trunk/ccm-core/src/com/arsdigita/dispatcher/MultipartHttpServletRequest.java 2006-03-27 23:08:36 UTC (rev 1104) +++ trunk/ccm-core/src/com/arsdigita/dispatcher/MultipartHttpServletRequest.java 2006-03-28 16:31:43 UTC (rev 1105) @@ -508,4 +508,24 @@ } } + public String getLocalAddr() { + // TODO Auto-generated method stub + return null; + } + + public String getLocalName() { + // TODO Auto-generated method stub + return null; + } + + public int getLocalPort() { + // TODO Auto-generated method stub + return 0; + } + + public int getRemotePort() { + // TODO Auto-generated method stub + return 0; + } + } Modified: trunk/ccm-core/src/com/arsdigita/web/ServletRequestWrapper.java =================================================================== --- trunk/ccm-core/src/com/arsdigita/web/ServletRequestWrapper.java 2006-03-27 23:08:36 UTC (rev 1104) +++ trunk/ccm-core/src/com/arsdigita/web/ServletRequestWrapper.java 2006-03-28 16:31:43 UTC (rev 1105) @@ -137,4 +137,24 @@ throw new UnsupportedOperationException ("This is a Servlet 2.3 feature that we do not currently support"); } + + public String getLocalAddr() { + // TODO Auto-generated method stub + return null; + } + + public String getLocalName() { + // TODO Auto-generated method stub + return null; + } + + public int getLocalPort() { + // TODO Auto-generated method stub + return 0; + } + + public int getRemotePort() { + // TODO Auto-generated method stub + return 0; + } } |