Example usage for org.springframework.context.annotation ConfigurationClass validate

List of usage examples for org.springframework.context.annotation ConfigurationClass validate

Introduction

In this page you can find the example usage for org.springframework.context.annotation ConfigurationClass validate.

Prototype

public void validate(ProblemReporter problemReporter) 

Source Link

Usage

From source file:org.springframework.context.annotation.ConfigurationClassParser.java

/**
 * Validate each {@link ConfigurationClass} object.
 * @see ConfigurationClass#validate//from w w  w.j  av a  2 s  . c  om
 */
public void validate() {
    for (ConfigurationClass configClass : this.configurationClasses.keySet()) {
        configClass.validate(this.problemReporter);
    }
}