Validates the given value for the given entry. This method first invokes
its superclass's validate method and then checks additional string
validations such as 0 length.
super.validate(str);
int length = ((String)str).length();
if (length == 0)
{
throw new InvalidConfigException(
strMgr.getString("validator.invalid_value", getName(), str));
}