All pastes #2132113 Raw Edit

Something

public java v1 · immutable
#2132113 ·published 2012-03-26 00:40 UTC
rendered paste body
public class ExampleAction extends Action {	@Override	public ActionForward execute(ActionMapping mapping, 			ActionForm form, 			HttpServletRequest req, 			HttpServletResponse res)			throws Exception {		HttpSession session = req.getSession(true);		session.setAttribute("foo", "bar");				res.addCookie(new Cookie("baz", "qux"));				return mapping.findForward("success");	}}