php.java.servlet
Class RemoteServletContextFactory

java.lang.Object
  extended by php.java.bridge.http.SimpleContextFactory
      extended by php.java.servlet.SimpleServletContextFactory
          extended by php.java.servlet.RemoteServletContextFactory
All Implemented Interfaces:
IContextFactory, IContextFactoryVisitor, IJavaBridgeFactory

public class RemoteServletContextFactory
extends SimpleServletContextFactory

Create session contexts for servlets.

In addition to the standard ContextFactory this factory keeps a reference to the HttpServletRequest.

See Also:
ContextFactory, ContextServer

Method Summary
static IContextFactory addNew(javax.servlet.Servlet servlet, javax.servlet.ServletContext kontext, javax.servlet.http.HttpServletRequest proxy, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Create and add a new ContextFactory.
 IContext createContext()
          Return an emulated JSR223 context.
 ISession getSession(java.lang.String name, short clientIsNew, int timeout)
          Return a session for the JavaBridge
 
Methods inherited from class php.java.servlet.SimpleServletContextFactory
destroy, getSession, getSimpleSession, throwJavaSessionException
 
Methods inherited from class php.java.bridge.http.SimpleContextFactory
flushBuffer, getBridge, getContext, getId, getSimpleSession, initialize, invalidate, isNew, parseHeader, recycle, recycle, release, releaseManaged, setContext, toString, visit, waitFor
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

getSession

public ISession getSession(java.lang.String name,
                           short clientIsNew,
                           int timeout)
Return a session for the JavaBridge

Specified by:
getSession in interface IContextFactory
Specified by:
getSession in interface IJavaBridgeFactory
Overrides:
getSession in class SimpleServletContextFactory
Parameters:
name - The session name. If name is null, the name PHPSESSION will be used.
clientIsNew - true if the client wants a new session
timeout - timeout in seconds. If 0 the session does not expire.
Returns:
The session
See Also:
ISession

addNew

public static IContextFactory addNew(javax.servlet.Servlet servlet,
                                     javax.servlet.ServletContext kontext,
                                     javax.servlet.http.HttpServletRequest proxy,
                                     javax.servlet.http.HttpServletRequest req,
                                     javax.servlet.http.HttpServletResponse res)
Create and add a new ContextFactory.

Parameters:
servlet - The servlet
kontext - The servlet context
proxy - The request proxy
req - The HttpServletRequest
res - The HttpServletResponse
Returns:
The created ContextFactory

createContext

public IContext createContext()
Return an emulated JSR223 context.

Overrides:
createContext in class SimpleServletContextFactory
Returns:
The context.
See Also:
HttpContext