Class ExecutionBridge

java.lang.Object
io.keikaiex.ui.ExecutionBridge
All Implemented Interfaces:
Serializable

public abstract class ExecutionBridge extends Object implements Serializable
A abstract util wrapping Renders provide easier functionality for a servlet to do job in zk execution
Since:
3.0.0
Author:
dennis
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected final javax.servlet.http.HttpServletRequest
     
    protected final javax.servlet.http.HttpServletResponse
     
    protected final javax.servlet.ServletContext
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    ExecutionBridge(javax.servlet.ServletContext servletContext, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    protected abstract void
    process(org.zkoss.zk.ui.Execution execution)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • _servletContext

      protected final javax.servlet.ServletContext _servletContext
    • _request

      protected final javax.servlet.http.HttpServletRequest _request
    • _response

      protected final javax.servlet.http.HttpServletResponse _response
  • Constructor Details

    • ExecutionBridge

      public ExecutionBridge(javax.servlet.ServletContext servletContext, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
  • Method Details

    • process

      public void process()
    • process

      protected abstract void process(org.zkoss.zk.ui.Execution execution) throws Exception
      Throws:
      Exception