|
1 | 1 | /*
|
2 |
| - * Copyright 2002-2013 the original author or authors. |
| 2 | + * Copyright 2002-2014 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
|
43 | 43 | * add by default. {@code AbstractEnvironment} adds none. Subclasses should contribute
|
44 | 44 | * property sources through the protected {@link #customizePropertySources(MutablePropertySources)}
|
45 | 45 | * hook, while clients should customize using {@link ConfigurableEnvironment#getPropertySources()}
|
46 |
| - * and working against the {@link MutablePropertySources} API. See |
47 |
| - * {@link ConfigurableEnvironment} Javadoc for usage examples. |
| 46 | + * and working against the {@link MutablePropertySources} API. |
| 47 | + * See {@link ConfigurableEnvironment} javadoc for usage examples. |
48 | 48 | *
|
49 | 49 | * @author Chris Beams
|
| 50 | + * @author Juergen Hoeller |
50 | 51 | * @since 3.1
|
51 | 52 | * @see ConfigurableEnvironment
|
52 | 53 | * @see StandardEnvironment
|
@@ -395,6 +396,8 @@ protected String getSystemAttribute(String attributeName) {
|
395 | 396 | * and therefore avoiding security manager warnings (if any).
|
396 | 397 | * <p>The default implementation checks for the "spring.getenv.ignore" system property,
|
397 | 398 | * returning {@code true} if its value equals "true" in any case.
|
| 399 | + * @see #IGNORE_GETENV_PROPERTY_NAME |
| 400 | + * @see SpringProperties#getFlag |
398 | 401 | */
|
399 | 402 | protected boolean suppressGetenvAccess() {
|
400 | 403 | return SpringProperties.getFlag(IGNORE_GETENV_PROPERTY_NAME);
|
|
0 commit comments