| /** | |
| * Accepts the new description. | |
| */ | |
| @RequirePOST | |
| public synchronized void doSubmitDescription( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException { | |
| checkPermission(CONFIGURE); | |
| description = req.getParameter("description"); | |
| save(); | |
| rsp.sendRedirect("."); // go to the top page | |
| } |