Class AbstractParamConverter<T>

  • All Implemented Interfaces:
    jakarta.ws.rs.ext.ParamConverter<T>

    public class AbstractParamConverter<T>
    extends Object
    implements jakarta.ws.rs.ext.ParamConverter<T>
    Converter to Jersey for Dropwizard's *Param classes.

    When a param class is used as a resource parameter this converter will instantiate the parameter class with the value provided and the name of the parameter, so if value parsing fails the parameter name can be used in the error message. If the param class does not have a two-string constructor this provider will return null, causing jersey to use the single-string constructor for the parameter type as it normally would.

    Since:
    2.0
    • Constructor Detail

      • AbstractParamConverter

        public AbstractParamConverter​(Constructor<T> constructor,
                                      String parameterName,
                                      @Nullable String defaultValue)