* the character encoding
* @return the validation result
*/
public FormValidation doCheckThreshold(@QueryParameter final String threshold) {
try {
return new ThresholdValidator().check(threshold);
}
catch (FormValidation exception) {
return exception;
}
}