Esempio n. 1
0
 /**
  * Returns a validate handler for this configuration.
  *
  * <p>Next handler cannot be null, use {@link LeafFaceletHandler} if no next handler is needed.
  */
 public ValidateHandler getValidateHandler(
     String tagConfigId,
     TagAttributes attributes,
     FaceletHandler nextHandler,
     String validatorId) {
   ValidatorConfig config =
       TagConfigFactory.createValidatorConfig(
           tagConfig, tagConfigId, attributes, nextHandler, validatorId);
   return new ValidateHandler(config);
 }