org.apache.bval.jsr303.ConstraintDefaults Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.bval.jsr303;
import javax.validation.ConstraintValidator;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Description: Provides access to the default constraints/validator implementation classes built into the framework.
* These are configured in DefaultConstraints.properties.
*/
public class ConstraintDefaults {
private static final Logger log = Logger.getLogger(ConstraintDefaults.class.getName());
private static final String DEFAULT_CONSTRAINTS =
"org/apache/bval/jsr303/DefaultConstraints.properties";
/**
* The default constraint data stored herein.
*/
protected Map>[]> defaultConstraints;
/**
* Create a new ConstraintDefaults instance.
*/
public ConstraintDefaults() {
defaultConstraints = loadDefaultConstraints(DEFAULT_CONSTRAINTS);
}
/**
* Get the default constraint data.
* @return String-keyed map
*/
public Map>[]> getDefaultConstraints() {
return defaultConstraints;
}
/**
* Get the default validator implementation types for the specified constraint annotation type.
* @param annotationType
* @return array of {@link ConstraintValidator} implementation classes
*/
@SuppressWarnings("unchecked")
public Class extends ConstraintValidator>[] getValidatorClasses(
Class annotationType) {
return (Class extends ConstraintValidator>[]) getDefaultConstraints().get(annotationType.getName());
}
@SuppressWarnings("unchecked")
private Map>[]> loadDefaultConstraints(String resource) {
Properties constraintProperties = new Properties();
final ClassLoader classloader = getClassLoader();
InputStream stream = classloader.getResourceAsStream(resource);
if (stream != null) {
try {
constraintProperties.load(stream);
} catch (IOException e) {
log.log(Level.SEVERE, String.format("Cannot load %s", resource), e);
}
} else {
log.log(Level.WARNING, String.format("Cannot find %s", resource));
}
Map>[]> loadedConstraints
= new HashMap>[]>();
for (Map.Entry