Uses of Interface
jakarta.validation.ClockProvider
-
Packages that use ClockProvider Package Description jakarta.validation Top level package of the Jakarta Bean Validation API.jakarta.validation.spi Package containing objects specific to the interaction between the Jakarta Bean Validation bootstrapping process and Jakarta Bean Validation providers. -
-
Uses of ClockProvider in jakarta.validation
Methods in jakarta.validation that return ClockProvider Modifier and Type Method Description ClockProvider
ConstraintValidatorContext. getClockProvider()
Returns the provider for obtaining the current time in the form of aClock
, e.g.ClockProvider
ValidatorFactory. getClockProvider()
Returns theClockProvider
instance configured at initialization time for theValidatorFactory
.ClockProvider
Configuration. getDefaultClockProvider()
Returns an implementation of theClockProvider
interface following the defaultClockProvider
defined in the specification: returns a clock representing the current system time and default time zone.Methods in jakarta.validation with parameters of type ClockProvider Modifier and Type Method Description T
Configuration. clockProvider(ClockProvider clockProvider)
Defines the clock provider.ValidatorContext
ValidatorContext. clockProvider(ClockProvider clockProvider)
Defines theClockProvider
implementation used by theValidator
. -
Uses of ClockProvider in jakarta.validation.spi
Methods in jakarta.validation.spi that return ClockProvider Modifier and Type Method Description ClockProvider
ConfigurationState. getClockProvider()
Returns the clock provider for this configuration.
-