Package hudson.util
Class FormApply
java.lang.Object
hudson.util.FormApply
Server-side code related to the
<f:apply>
button.- Since:
- 1.453
- Author:
- Kohsuke Kawaguchi
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.kohsuke.stapler.HttpResponses.HttpResponseException
applyResponse
(String script) Generates the response for the asynchronous background form submission (AKA the Apply button.)static boolean
isApply
(org.kohsuke.stapler.StaplerRequest req) Is this submission from the "apply" button?static org.kohsuke.stapler.HttpResponses.HttpResponseException
Generates the response for the form submission in such a way that it handles the "apply" button correctly.
-
Constructor Details
-
FormApply
public FormApply()
-
-
Method Details
-
success
Generates the response for the form submission in such a way that it handles the "apply" button correctly.- Parameters:
destination
- The page that the user will be taken to upon a successful submission (in case this is not via the "apply" button.)
-
isApply
public static boolean isApply(org.kohsuke.stapler.StaplerRequest req) Is this submission from the "apply" button? -
applyResponse
Generates the response for the asynchronous background form submission (AKA the Apply button.)When the response HTML includes a JavaScript function in a pre-determined name, that function gets executed. This method generates such a response from JavaScript text.
-