All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.validator.internal.metadata.location.FieldConstraintLocation Maven / Gradle / Ivy

Go to download

JPMS Module-Info's for a few of the Jakarta Libraries. These will be removed as time goes by

There is a newer version: 62
Show newest version
/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package org.hibernate.validator.internal.metadata.location;

import org.hibernate.validator.internal.properties.Field;

/**
 * Field property constraint location.
 *
 * @author Marko Bekhta
 */
public class FieldConstraintLocation extends AbstractPropertyConstraintLocation {

	FieldConstraintLocation(Field field) {
		super( field );
	}

	@Override
	public ConstraintLocationKind getKind() {
		return ConstraintLocationKind.FIELD;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy