* @return CoordinatorActionBean
* @throws BaseEngineException
*/
public CoordinatorActionBean getCoordAction(String actionId) throws BaseEngineException {
try {
return new CoordActionInfoCommand(actionId).call();
}
catch (CommandException ex) {
throw new BaseEngineException(ex);
}
}