Interface INBSPRuntime


public interface INBSPRuntime
Runs nbspage system.
  • Field Details

  • Method Details

    • render

      void render(String file, Writer out, Map<String,Object> params) throws Exception
      Renders the specified file into the specified output sttream.
      Parameters:
      file - URI specifing file to render.
      out - Output stream into which to render.
      params - Params for nbspage to use. May be null.
      Throws:
      Exception
    • lookup

      Object lookup(Map<String,Object> params, String name)
      Finds the specified param in the specified param map.
      Parameters:
      params - Map of the page's params.
      name - Name of param to find.
      Returns:
      Found object or null.
    • lookup

      Object lookup(Map<String,Object> params, String name, boolean ignoreUrlParams)