Package | Description |
---|---|
org.kohsuke.stapler |
Stapler URL->Object mapping framework.
|
org.kohsuke.stapler.framework.adjunct |
JavaScript/CSS packaging mechanism.
|
org.kohsuke.stapler.framework.io | |
org.kohsuke.stapler.interceptor | |
org.kohsuke.stapler.jelly |
Optional Jelly support, to write views in Jelly.
|
org.kohsuke.stapler.jelly.groovy |
Modifier and Type | Class and Description |
---|---|
class |
RequestImpl
StaplerRequest implementation. |
Modifier and Type | Method and Description |
---|---|
static StaplerRequest |
Stapler.getCurrentRequest()
Gets the current
StaplerRequest that the calling thread is associated with. |
Modifier and Type | Method and Description |
---|---|
void |
HttpDeletable.delete(StaplerRequest req,
StaplerResponse rsp)
Called when HTTP DELETE method is invoked.
|
void |
ResponseImpl.forward(Object it,
String url,
StaplerRequest request) |
void |
StaplerResponse.forward(Object it,
String url,
StaplerRequest request)
Evaluates the url against the given object and
forwards the request to the result.
|
void |
Stapler.forward(javax.servlet.RequestDispatcher dispatcher,
StaplerRequest req,
javax.servlet.http.HttpServletResponse rsp) |
void |
ResponseImpl.forwardToPreviousPage(StaplerRequest request) |
void |
StaplerResponse.forwardToPreviousPage(StaplerRequest request)
Redirects the browser to where it came from (the referer.)
|
void |
HttpRedirect.generateResponse(StaplerRequest req,
StaplerResponse rsp,
Object node) |
void |
ForwardToView.generateResponse(StaplerRequest req,
StaplerResponse rsp,
Object node) |
void |
HttpResponse.generateResponse(StaplerRequest req,
StaplerResponse rsp,
Object node) |
abstract boolean |
HttpResponseRenderer.generateResponse(StaplerRequest req,
StaplerResponse rsp,
Object node,
Object response) |
boolean |
HttpResponseRenderer.Default.generateResponse(StaplerRequest req,
StaplerResponse rsp,
Object node,
Object response) |
static EvaluationTrace |
EvaluationTrace.get(StaplerRequest req) |
protected boolean |
HttpResponseRenderer.Default.handleHttpResponse(StaplerRequest req,
StaplerResponse rsp,
Object node,
Object response) |
protected boolean |
HttpResponseRenderer.Default.handleJavaScriptProxyMethodCall(StaplerRequest req,
StaplerResponse rsp,
Object response) |
abstract Object |
Function.invoke(StaplerRequest req,
StaplerResponse rsp,
Object o,
Object... args)
Invokes the method.
|
Object |
LimitedTo.Processor.invoke(StaplerRequest request,
StaplerResponse response,
Object instance,
Object[] arguments) |
abstract String |
CrumbIssuer.issueCrumb(StaplerRequest request)
Issues a crumb for the given request.
|
static boolean |
Dispatcher.isTraceEnabled(StaplerRequest req)
Checks if tracing is enabled for the given request.
|
Object |
AncestorInPath.HandlerImpl.parse(StaplerRequest request,
AncestorInPath a,
Class type,
String parameterName) |
Object |
Header.HandlerImpl.parse(StaplerRequest request,
Header a,
Class type,
String parameterName) |
Object |
QueryParameter.HandlerImpl.parse(StaplerRequest request,
QueryParameter a,
Class type,
String parameterName) |
abstract Object |
AnnotationHandler.parse(StaplerRequest request,
T a,
Class type,
String parameterName) |
int |
ResponseImpl.reverseProxyTo(URL url,
StaplerRequest req) |
int |
StaplerResponse.reverseProxyTo(URL url,
StaplerRequest req)
Performs the reverse proxy to the given URL.
|
void |
ResponseImpl.serveExposedBean(StaplerRequest req,
Object exposedBean,
Flavor flavor) |
void |
StaplerResponse.serveExposedBean(StaplerRequest req,
Object exposedBean,
Flavor flavor)
Serves the exposed bean in the specified flavor.
|
void |
ResponseImpl.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
int contentLength,
String fileName) |
void |
StaplerResponse.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
int contentLength,
String fileName) |
void |
ResponseImpl.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
long expiration,
int contentLength,
String fileName) |
void |
StaplerResponse.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
long expiration,
int contentLength,
String fileName) |
void |
ResponseImpl.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
long expiration,
long contentLength,
String fileName) |
void |
StaplerResponse.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
long expiration,
long contentLength,
String fileName)
Serves a static resource.
|
void |
ResponseImpl.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
long contentLength,
String fileName) |
void |
StaplerResponse.serveFile(StaplerRequest req,
InputStream data,
long lastModified,
long contentLength,
String fileName)
Serves a static resource.
|
void |
ResponseImpl.serveFile(StaplerRequest req,
URL resource) |
void |
StaplerResponse.serveFile(StaplerRequest request,
URL res)
Serves a static resource.
|
void |
ResponseImpl.serveFile(StaplerRequest req,
URL resource,
long expiration) |
void |
StaplerResponse.serveFile(StaplerRequest request,
URL res,
long expiration) |
void |
ResponseImpl.serveLocalizedFile(StaplerRequest request,
URL res) |
void |
StaplerResponse.serveLocalizedFile(StaplerRequest request,
URL res)
Works like
StaplerResponse.serveFile(StaplerRequest, URL) but chooses the locale specific
version of the resource if it's available. |
void |
ResponseImpl.serveLocalizedFile(StaplerRequest request,
URL res,
long expiration) |
void |
StaplerResponse.serveLocalizedFile(StaplerRequest request,
URL res,
long expiration)
Works like
StaplerResponse.serveFile(StaplerRequest, URL, long) but chooses the locale
specific version of the resource if it's available. |
static void |
Dispatcher.trace(StaplerRequest req,
StaplerResponse rsp,
String msg) |
static void |
Dispatcher.trace(StaplerRequest req,
StaplerResponse rsp,
String msg,
Object... args) |
static void |
Dispatcher.traceEval(StaplerRequest req,
StaplerResponse rsp,
Object node) |
static void |
Dispatcher.traceEval(StaplerRequest req,
StaplerResponse rsp,
Object node,
String expression) |
static void |
Dispatcher.traceEval(StaplerRequest req,
StaplerResponse rsp,
Object node,
String prefix,
String suffix) |
void |
CrumbIssuer.validateCrumb(StaplerRequest request,
String submittedCrumb)
Validates a crumb that was submitted along with the request.
|
Modifier and Type | Method and Description |
---|---|
void |
AdjunctManager.doDynamic(StaplerRequest req,
StaplerResponse rsp)
Serves resources in the class loader.
|
static AdjunctsInPage |
AdjunctsInPage.get(StaplerRequest request)
Obtains the instance associated with the current request of the given
StaplerRequest . |
void |
Adjunct.write(StaplerRequest req,
org.apache.commons.jelly.XMLOutput out) |
Modifier and Type | Method and Description |
---|---|
protected Writer |
LargeText.createWriter(StaplerRequest req,
StaplerResponse rsp,
long size) |
void |
LargeText.doProgressText(StaplerRequest req,
StaplerResponse rsp)
Implements the progressive text handling.
|
Modifier and Type | Method and Description |
---|---|
Object |
RequirePOST.Processor.invoke(StaplerRequest request,
StaplerResponse response,
Object instance,
Object[] arguments) |
Object |
RespondSuccess.Processor.invoke(StaplerRequest request,
StaplerResponse response,
Object instance,
Object[] arguments) |
abstract Object |
Interceptor.invoke(StaplerRequest request,
StaplerResponse response,
Object instance,
Object[] arguments)
Intercepts the call.
|
Object |
JsonOutputFilter.Processor.invoke(StaplerRequest request,
StaplerResponse response,
Object instance,
Object[] arguments) |
Modifier and Type | Method and Description |
---|---|
protected org.apache.commons.jelly.JellyContext |
DefaultScriptInvoker.createContext(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it) |
protected OutputStream |
DefaultScriptInvoker.createOutputStream(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it) |
protected org.apache.commons.jelly.XMLOutput |
DefaultScriptInvoker.createXMLOutput(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it) |
protected void |
DefaultScriptInvoker.exportVariables(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it,
org.apache.commons.jelly.JellyContext context) |
void |
DefaultScriptInvoker.invokeScript(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it) |
void |
ScriptInvoker.invokeScript(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it)
Invokes the script and generates output to
ServletResponse.getOutputStream() . |
void |
DefaultScriptInvoker.invokeScript(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it,
org.apache.commons.jelly.XMLOutput out) |
void |
ScriptInvoker.invokeScript(StaplerRequest req,
StaplerResponse rsp,
org.apache.commons.jelly.Script script,
Object it,
org.apache.commons.jelly.XMLOutput out)
Invokes the script and generates output to the specified output
|
boolean |
JellyClassTearOff.serveIndexJelly(StaplerRequest req,
StaplerResponse rsp,
Object node)
Serves index.jelly if it's available, and returns true.
|
Modifier and Type | Method and Description |
---|---|
StaplerRequest |
JellyBuilder.getRequest() |
Copyright © 2014. All rights reserved.