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

org.hibernate.validator.internal.constraintvalidators.hv.pl.REGONValidator Maven / Gradle / Ivy

Go to download

JSR 380's RI, Hibernate Validator version ${hibernate-validator.version} and its dependencies repackaged as OSGi bundle

There is a newer version: 5.1.0
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.constraintvalidators.hv.pl;

import java.util.List;

import org.hibernate.validator.constraints.pl.REGON;

/**
 * Validator for {@link REGON}. Validates both 9 and 14 digits REGON numbers.
 *
 * @author Marko Bekhta
 */
public class REGONValidator extends PolishNumberValidator {

	private static final int[] WEIGHTS_REGON_14 = { 2, 4, 8, 5, 0, 9, 7, 3, 6, 1, 2, 4, 8 };

	private static final int[] WEIGHTS_REGON_9 = { 8, 9, 2, 3, 4, 5, 6, 7 };

	@Override
	public void initialize(REGON constraintAnnotation) {
		super.initialize(
				0,
				Integer.MAX_VALUE,
				-1,
				false
		);
	}

	/**
	 * @param digits a list of digits to be verified. They are used to determine a size of REGON number - is it 9 or 14 digit number
	 *
	 * @return an array of weights to be used to calculate a checksum
	 */
	@Override
	protected int[] getWeights(List digits) {
		if ( digits.size() == 8 ) {
			return WEIGHTS_REGON_9;
		}
		else if ( digits.size() == 13 ) {
			return WEIGHTS_REGON_14;
		}
		else {
			return new int[] { };
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy