Uses of Interface
php.java.bridge.ISession

Packages that use ISession
php.java.bridge PHP/Java Bridge core classes and interfaces. 
php.java.bridge.http Fast socket and pipe context runners for PHP/Java Bridge J2EE backends. 
php.java.servlet PHP/Java Bridge Servlet. 
 

Uses of ISession in php.java.bridge
 

Methods in php.java.bridge that return ISession
abstract  ISession JavaBridgeFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)
          Return a session for the JavaBridge
 ISession JavaBridge.getSession(java.lang.String name, boolean clientIsNew, int timeout)
          Return a session handle shared among all JavaBridge instances.
 ISession IJavaBridgeFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)
          Return a session for the JavaBridge
 ISession SessionFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)
           
 

Uses of ISession in php.java.bridge.http
 

Methods in php.java.bridge.http that return ISession
 ISession SimpleContextFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)
           
 ISession ContextFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)
          Return a standard session, shared with JSP
 ISession IContextFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)
           
 ISession ContextFactory.getSimpleSession(java.lang.String name, boolean clientIsNew, int timeout)
          Return a simple session which cannot be shared with JSP
 

Uses of ISession in php.java.servlet
 

Classes in php.java.servlet that implement ISession
 class HttpSessionFacade
          Wraps the J2EE session interface
 class RemoteHttpSessionFacade
          A custom session, used when remote PHP scripts access the servlet.In this case only the session object is available, the HttpServletRequest, HttpServletResponse and ServletContext objects are set to null.
 

Methods in php.java.servlet that return ISession
 ISession RemoteServletContextFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)
           
 ISession SimpleServletContextFactory.getSession(java.lang.String name, boolean clientIsNew, int timeout)