/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
 */
package org.hibernate.validator.internal.constraintvalidators.bv.time.past;

import java.time.Clock;
import java.time.ZonedDateTime;

Check that the java.time.ZonedDateTime passed is in the past.
Author:Khalid Alqinyah, Guillaume Smet
/** * Check that the {@code java.time.ZonedDateTime} passed is in the past. * * @author Khalid Alqinyah * @author Guillaume Smet */
public class PastValidatorForZonedDateTime extends AbstractPastJavaTimeValidator<ZonedDateTime> { @Override protected ZonedDateTime getReferenceValue(Clock reference) { return ZonedDateTime.now( reference ); } }