Commit 7e97d38d authored by Stephane Nicoll's avatar Stephane Nicoll

Polish Javadoc

Closes gh-9726
parent 6381b887
/* /*
* Copyright 2012-2016 the original author or authors. * Copyright 2012-2017 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -28,16 +28,24 @@ import org.springframework.context.annotation.Condition; ...@@ -28,16 +28,24 @@ import org.springframework.context.annotation.Condition;
* <pre class="code"> * <pre class="code">
* static class OnJndiAndProperty extends AllNestedConditions { * static class OnJndiAndProperty extends AllNestedConditions {
* *
* OnJndiAndProperty() {
* super(ConfigurationPhase.PARSE_CONFIGURATION);
* }
*
* &#064;ConditionalOnJndi() * &#064;ConditionalOnJndi()
* static class OnJndi { * static class OnJndi {
* } * }
*
* &#064;ConditionalOnProperty("something") * &#064;ConditionalOnProperty("something")
* static class OnProperty { * static class OnProperty {
* } * }
* *
* } * }
* </pre> * </pre>
* <p>
* The {@link ConfigurationPhase} should be specified according to the conditions that
* are defined. In the example above, all conditions are static and can be evaluated
* early so {@code PARSE_CONFIGURATION} is a right fit.
* *
* @author Phillip Webb * @author Phillip Webb
* @since 1.3.0 * @since 1.3.0
......
/* /*
* Copyright 2012-2016 the original author or authors. * Copyright 2012-2017 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -30,16 +30,24 @@ import org.springframework.core.annotation.Order; ...@@ -30,16 +30,24 @@ import org.springframework.core.annotation.Order;
* <pre class="code"> * <pre class="code">
* static class OnJndiOrProperty extends AnyNestedCondition { * static class OnJndiOrProperty extends AnyNestedCondition {
* *
* OnJndiOrProperty() {
* super(ConfigurationPhase.PARSE_CONFIGURATION);
* }
*
* &#064;ConditionalOnJndi() * &#064;ConditionalOnJndi()
* static class OnJndi { * static class OnJndi {
* } * }
*
* &#064;ConditionalOnProperty("something") * &#064;ConditionalOnProperty("something")
* static class OnProperty { * static class OnProperty {
* } * }
* *
* } * }
* </pre> * </pre>
* <p>
* The {@link ConfigurationPhase} should be specified according to the conditions that
* are defined. In the example above, all conditions are static and can be evaluated
* early so {@code PARSE_CONFIGURATION} is a right fit.
* *
* @author Phillip Webb * @author Phillip Webb
* @since 1.2.0 * @since 1.2.0
......
/* /*
* Copyright 2012-2016 the original author or authors. * Copyright 2012-2017 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -28,16 +28,24 @@ import org.springframework.context.annotation.Condition; ...@@ -28,16 +28,24 @@ import org.springframework.context.annotation.Condition;
* <pre class="code"> * <pre class="code">
* static class OnNeitherJndiNorProperty extends NoneOfNestedConditions { * static class OnNeitherJndiNorProperty extends NoneOfNestedConditions {
* *
* OnNeitherJndiNorProperty() {
* super(ConfigurationPhase.PARSE_CONFIGURATION);
* }
*
* &#064;ConditionalOnJndi() * &#064;ConditionalOnJndi()
* static class OnJndi { * static class OnJndi {
* } * }
*
* &#064;ConditionalOnProperty("something") * &#064;ConditionalOnProperty("something")
* static class OnProperty { * static class OnProperty {
* } * }
* *
* } * }
* </pre> * </pre>
* <p>
* The {@link ConfigurationPhase} should be specified according to the conditions that
* are defined. In the example above, all conditions are static and can be evaluated
* early so {@code PARSE_CONFIGURATION} is a right fit.
* *
* @author Phillip Webb * @author Phillip Webb
* @since 1.3.0 * @since 1.3.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment