Package org.kohsuke.stapler.interceptor
Class RequirePOST.Processor
java.lang.Object
org.kohsuke.stapler.interceptor.Interceptor
org.kohsuke.stapler.interceptor.RequirePOST.Processor
- Enclosing class:
- RequirePOST
-
Field Summary
Fields inherited from class org.kohsuke.stapler.interceptor.Interceptor
target -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioninvoke(StaplerRequest2 request, StaplerResponse2 response, Object instance, Object[] arguments) Intercepts the call.Methods inherited from class org.kohsuke.stapler.interceptor.Interceptor
invoke, setTarget
-
Constructor Details
-
Processor
public Processor()
-
-
Method Details
-
invoke
public Object invoke(StaplerRequest2 request, StaplerResponse2 response, Object instance, Object[] arguments) throws IllegalAccessException, InvocationTargetException, jakarta.servlet.ServletException Description copied from class:InterceptorIntercepts the call.The minimal no-op interceptor would do
target.invoke(request,response,instance,arguments), but the implementation is free to do additional pre/post processing.- Overrides:
invokein classInterceptor- Parameters:
request- The current request we are processing.response- The current response object.instance- The domain object instance whose method we are about to invoke.arguments- Arguments of the method call.- Returns:
- Return value from the method.
- Throws:
InvocationTargetException- if you want to send e.g. something fromHttpResponsesIllegalAccessExceptionjakarta.servlet.ServletException
-