You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jg...@apache.org on 2007/12/28 16:01:40 UTC

svn commit: r607252 - /mina/sandbox/asyncweb/core/src/main/java/org/safehaus/asyncweb/service/transport/mina/SingleHttpSessionIoHandler.java

Author: jgenender
Date: Fri Dec 28 07:01:38 2007
New Revision: 607252

URL: http://svn.apache.org/viewvc?rev=607252&view=rev
Log:
Set qualifiers to extend SingleHttpSessionIoHandler

Modified:
    mina/sandbox/asyncweb/core/src/main/java/org/safehaus/asyncweb/service/transport/mina/SingleHttpSessionIoHandler.java

Modified: mina/sandbox/asyncweb/core/src/main/java/org/safehaus/asyncweb/service/transport/mina/SingleHttpSessionIoHandler.java
URL: http://svn.apache.org/viewvc/mina/sandbox/asyncweb/core/src/main/java/org/safehaus/asyncweb/service/transport/mina/SingleHttpSessionIoHandler.java?rev=607252&r1=607251&r2=607252&view=diff
==============================================================================
--- mina/sandbox/asyncweb/core/src/main/java/org/safehaus/asyncweb/service/transport/mina/SingleHttpSessionIoHandler.java (original)
+++ mina/sandbox/asyncweb/core/src/main/java/org/safehaus/asyncweb/service/transport/mina/SingleHttpSessionIoHandler.java Fri Dec 28 07:01:38 2007
@@ -50,7 +50,7 @@
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-class SingleHttpSessionIoHandler implements SingleSessionIoHandler {
+public class SingleHttpSessionIoHandler implements SingleSessionIoHandler {
 
     private static final Logger LOG = LoggerFactory
             .getLogger(SingleHttpSessionIoHandler.class);
@@ -220,7 +220,7 @@
         this.readIdleTime = readIdleTime;
     }
 
-    private HttpServiceContext createContext(HttpRequest request) {
+    protected HttpServiceContext createContext(HttpRequest request) {
         return new DefaultHttpServiceContext(request);
     }