if(ExpressionAdapter.getExpressions(updatedEntity).isEmpty())
{
int minPoolSize = updatedEntity.getMinPoolSize();
int maxPoolSize = updatedEntity.getMaxPoolSize();
if(minPoolSize > maxPoolSize){
superValidation.addError("maxPoolSize");
maxCon.setErroneous(true);
maxCon.setErrMessage("Max Pool Size must be greater than Min Pool Size");
}
}
return superValidation;