Browse Source
* Environment now extends PropertyResolver * Environment no longer exposes resolver and sources * PropertySource is String,Object instead of String,String * PropertySource no longer assumes enumerability of property names * Introduced EnumerablePropertySource for those that do have enumerable property names git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3862 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
39 changed files with 391 additions and 315 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
/* |
||||
* Copyright 2002-2011 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.context.annotation; |
||||
|
||||
import org.springframework.core.type.AnnotationMetadata; |
||||
|
||||
class ProfileHelper { |
||||
/** |
||||
* Return whether the given metadata includes Profile information, whether directly or |
||||
* through meta-annotation. |
||||
*/ |
||||
static boolean isProfileAnnotationPresent(AnnotationMetadata metadata) { |
||||
return metadata.isAnnotated(Profile.class.getName()); |
||||
} |
||||
|
||||
/** |
||||
* Return the String[] of candidate profiles from {@link Profile#value()}. |
||||
*/ |
||||
static String[] getCandidateProfiles(AnnotationMetadata metadata) { |
||||
return (String[])metadata.getAnnotationAttributes(Profile.class.getName()).get("value"); |
||||
} |
||||
} |
||||
@ -0,0 +1,58 @@
@@ -0,0 +1,58 @@
|
||||
/* |
||||
* Copyright 2002-2011 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.core.env; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* TODO SPR-7508: document |
||||
* |
||||
* @author Chris Beams |
||||
* @since 3.1 |
||||
*/ |
||||
public abstract class EnumerablePropertySource<T> extends PropertySource<T> { |
||||
|
||||
protected static final String[] EMPTY_NAMES_ARRAY = new String[0]; |
||||
|
||||
|
||||
public EnumerablePropertySource(String name, T source) { |
||||
super(name, source); |
||||
} |
||||
|
||||
/** |
||||
* Return the names of all properties contained by the {@linkplain #getSource() |
||||
* source} object (never {@code null}). |
||||
*/ |
||||
public abstract String[] getPropertyNames(); |
||||
|
||||
/** |
||||
* Return whether this {@code PropertySource} contains the given key. |
||||
* <p>This implementation checks for the presence of the given key within |
||||
* the {@link #getPropertyNames()} array. |
||||
* @param key the property key to find |
||||
*/ |
||||
public boolean containsProperty(String name) { |
||||
Assert.notNull(name, "property name must not be null"); |
||||
for (String candidate : this.getPropertyNames()) { |
||||
if (candidate.equals(name)) { |
||||
return true; |
||||
} |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue