public boolean isRestricted() {
return true;
}
public void validate(String value, Locale locale, WGAConfiguration config) throws OptionValueValidationException {
OptionValueProvider provider = getValueProvider(config);
if (!provider.getProvidedValues().contains(value)) {
throw new OptionValueValidationException("The database '" + value + "' in either unknown, not enabled or no content store");
}
}