org.kohsuke.stapler.jelly
Interface ScriptInvoker

All Known Implementing Classes:
DefaultScriptInvoker

public interface ScriptInvoker

Pluggability point for controlling how scripts get executed.

Author:
Kohsuke Kawaguchi
See Also:
JellyFacet.scriptInvoker

Method Summary
 void invokeScript(StaplerRequest req, StaplerResponse rsp, org.apache.commons.jelly.Script script, java.lang.Object it)
          Invokes the script and generates output to ServletResponse.getOutputStream().
 void invokeScript(StaplerRequest req, StaplerResponse rsp, org.apache.commons.jelly.Script script, java.lang.Object it, org.apache.commons.jelly.XMLOutput out)
          Invokes the script and generates output to the specified output
 

Method Detail

invokeScript

void invokeScript(StaplerRequest req,
                  StaplerResponse rsp,
                  org.apache.commons.jelly.Script script,
                  java.lang.Object it)
                  throws java.io.IOException,
                         org.apache.commons.jelly.JellyTagException
Invokes the script and generates output to ServletResponse.getOutputStream().

Throws:
java.io.IOException
org.apache.commons.jelly.JellyTagException

invokeScript

void invokeScript(StaplerRequest req,
                  StaplerResponse rsp,
                  org.apache.commons.jelly.Script script,
                  java.lang.Object it,
                  org.apache.commons.jelly.XMLOutput out)
                  throws java.io.IOException,
                         org.apache.commons.jelly.JellyTagException
Invokes the script and generates output to the specified output

Throws:
java.io.IOException
org.apache.commons.jelly.JellyTagException


Copyright © 2012. All Rights Reserved.