Package org.springframework.context.annotation.ConfigurationCondition

Examples of org.springframework.context.annotation.ConfigurationCondition.ConfigurationPhase


    }

    Collections.sort(conditions, AnnotationAwareOrderComparator.INSTANCE);

    for (Condition condition : conditions) {
      ConfigurationPhase requiredPhase = null;
      if (condition instanceof ConfigurationCondition) {
        requiredPhase = ((ConfigurationCondition) condition).getConfigurationPhase();
      }
      if (requiredPhase == null || requiredPhase == phase) {
        if (!condition.matches(this.context, metadata)) {
View Full Code Here

TOP

Related Classes of org.springframework.context.annotation.ConfigurationCondition.ConfigurationPhase

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.