return mapping.findForward("success");
}
public ActionForward randomLock(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) {
log.debug("Entering randomLock");
FreshetForm ff = (FreshetForm)form;
if ("".equals((ff.getLockType())))
queueUpService.unsetRandomLock();
else
queueUpService.setRandomLock(ff.getLockType(), ff.getLockId());
setBrowseProperties(ff, (User)request.getSession().getAttribute("user"));
queueDisplayService.setQueueDisplay(ff);
return mapping.findForward("success");
}