private ExpressionBean isExpressionValid(
      ExpressionBean expressionBean, AuditableBeanWrapper<?> beanWrapper) {

    if (expressionBean.getContextName() == null && expressionBean.getContext() == null) {
      expressionBean.setContext(Context.OC_RULES_V1);
    }
    if (expressionBean.getContextName() != null && expressionBean.getContext() == null) {
      beanWrapper.warning("The Context you selected is not support we will use the default one");
      expressionBean.setContext(Context.OC_RULES_V1);
    }
    return expressionBean;
  }