Uses of Interface
php.java.bridge.http.IContext

Packages that use IContext
php.java.bridge Internal VM Bridge core classes and interfaces. 
php.java.bridge.http Internal fast socket and pipe context runners for VM Bridge J2EE backends. 
php.java.script Internal PHP script engine implementation.
Applications should use the JSR 223 API instead. 
php.java.script.servlet Internal PHP script engine implementation for servlets.
Applications should use the JSR 223 API instead. 
php.java.servlet PHP/Java Bridge Servlet.
Applications should use the JSR 223 API instead. 
 

Uses of IContext in php.java.bridge
 

Methods in php.java.bridge that return IContext
 IContext SessionFactory.getContext()
          Return the associated context
abstract  IContext JavaBridgeFactory.getContext()
          Return the associated JSR223 context
 IContext IJavaBridgeFactory.getContext()
          Return the associated JSR223 context
 

Uses of IContext in php.java.bridge.http
 

Classes in php.java.bridge.http that implement IContext
 class Context
          Emulates a JSR223 script context when the JSR223 classes are not available.
 

Methods in php.java.bridge.http that return IContext
 IContext SimpleContextFactory.getContext()
          Return a JSR223 context
 IContext IContextFactory.getContext()
          Return a JSR223 context
 IContext ContextFactory.getContext()
          Returns the context.
 IContext RemoteHttpContextFactory.getContext()
          Return the associated context
 

Methods in php.java.bridge.http with parameters of type IContext
 void SimpleContextFactory.setContext(IContext context)
          Set the Context into this factory.
 void IContextFactory.setContext(IContext context)
          Set the Context into this factory.
 void ContextFactory.setContext(IContext context)
          Set the Context into this factory.
 void RemoteHttpContextFactory.setContext(IContext context)
          Set the Context into this factory.
 

Uses of IContext in php.java.script
 

Subinterfaces of IContext in php.java.script
 interface IPhpScriptContext
          Common methods for all PHP ScriptContexts
 

Classes in php.java.script that implement IContext
 class AbstractPhpScriptContext
          A simple ScriptContext which can be used in servlet- or standalone environments.
 class PhpCompiledScriptContext
          A decorator for compiled script engines.
 class PhpJavaBridgeRunnerScriptContext
          A decorator which enables secure (HTTPS) connections.
 class PhpScriptContext
          This class implements a simple script context for PHP.
 class PhpScriptContextDecorator
          Abstract class for IPhpScriptContexts.
 class PhpSecureScriptContext
          A decorator which enables secure (HTTPS) connections.
 

Methods in php.java.script with parameters of type IContext
static IContextFactory PhpScriptContextFactory.addNew(IContext context)
          Add the PhpScriptContext
static IContextFactory InteractivePhpScriptContextFactory.addNew(IContext context)
          Add the PhpScriptContext
 

Uses of IContext in php.java.script.servlet
 

Classes in php.java.script.servlet that implement IContext
 class PhpHttpScriptContext
          An example decorator for compiled script engines running in a servlet environment.
 

Uses of IContext in php.java.servlet
 

Classes in php.java.servlet that implement IContext
 class HttpContext
          A custom context which keeps the HttpServletResponse.
 class RemoteContext
          A custom context, used when remote PHP scripts access the servlet.
 

Methods in php.java.servlet that return IContext
 IContext SimpleServletContextFactory.createContext()
          Return an emulated JSR223 context.
 IContext RemoteServletContextFactory.createContext()
          Return an emulated JSR223 context.
 IContext RemoteHttpServletContextFactory.getContext()
          Return the associated JSR223 context
 

Methods in php.java.servlet with parameters of type IContext
 void RemoteHttpServletContextFactory.setContext(IContext context)
          Set the Context into this factory.