getAttribute struts 1 no struts 2 Como fica ActionContext

Olá
No struts 1 eu consigo pegar uma parametro dessa maneira:

String v_nome = (String) request.getAttribute(“nome”) ;

No struts 2 tenho essa forma:

String v_nome = getNome();

não teria alguma maneira semelhante struts 1 no strut 2, tipo:

ActionContext context = ActionContext.getContext();

Como ficaria para pegar o parametro NOME com o context?

Grato