Fixed bugs from last commit.

This commit is contained in:
wcrisman
2014-07-11 10:41:39 -07:00
parent d2027e13f9
commit 07b8c2ff8d
3 changed files with 8 additions and 6 deletions

View File

@@ -8,6 +8,7 @@ import com.common.thread.IRunnable;
import com.common.util.LiteHashMap;
import com.foundation.web.controller.HtmlViewController;
import com.foundation.web.controller.WebRequestController;
import com.foundation.web.interfaces.IConnectionContext;
import com.foundation.web.interfaces.IRequest;
import com.foundation.web.interfaces.IResponse;
@@ -17,9 +18,9 @@ import com.foundation.web.interfaces.IResponse;
public final class FrameworkController extends WebRequestController {
private static final Integer INVALID_CLIENT_ID = new Integer(0);
/* (non-Javadoc)
* @see com.foundation.web.IWebRequestHandler#processRequest(com.foundation.web.interfaces.IRequest, com.foundation.web.interfaces.IResponse, com.foundation.web.SessionData, com.foundation.SecureSessionData)
* @see com.foundation.web.IWebRequestHandler#processRequest(com.foundation.web.interfaces.IRequest, com.foundation.web.interfaces.IResponse, com.foundation.web.SessionData, com.foundation.web.SecureSessionData, com.foundation.web.interfaces.IConnectionContext)
*/
public void processRequest(IRequest request, IResponse response, SessionData sessionData, SecureSessionData secureSessionData) {
public void processRequest(IRequest request, IResponse response, SessionData sessionData, SecureSessionData secureSessionData, IConnectionContext connectionContext) {
String result = null;
//Note that all calls to this method within the context of a single session are single threaded - the session's request handler is used by the web application to thread the requests on the session's thread.//