In my Spring web flow, I have a variable in FlowScope named "action", and I want to check this variable in validation method;
\\\\\\
if(action=="copy"){
doCopy;
}else{
doOther;
}
\\\\\\\
But I don't know how to call "action" variable. Please help me.