public static void processAction(String action){
processAction(action,ReqScopeConstants.Request);
}
public static void processAction(String action,ReqScopeConstants scope){
RequestScopeObject scopeObj=null;
try{
scopeObj=RequestScope.getObjectFromScope(scope);
initCompBeforeAction(scopeObj.getCompMap());
ActionProcessor processor=new ActionProcessor();
processor.execute(action, scope);
}catch(SwingObjectsException e){
CommonUI.showErrorDialogForComponent(scopeObj.getActionPerformOnComp(), e);
CommonUI.setDefaultsComponents(scopeObj.getCompMap().values().iterator());
}
}