///
Considerando, no trecho de código abaixo, uma classe Java ActionForward, avalie a alternativa verdadeira:
01 public ActionForward metodo1
(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response)throws
Exception {
02 ActionForward f = new ActionForward();
03 try {
04 request.getSession().setAttribute("metodo",
“metodo1”);
05 }
06 catch (Exception e) {
07 e.printStackTrace();}
08 f.setPath("iniciar.jsp");
09 return f;
10 }