Interface ConfigurationContextResolver
-
public interface ConfigurationContextResolverAn interface able to extract all attributes and their values from specified context. Interface should take all possible context inheritance, merging, etc. for the returned map to be a map of final effective attributes of context.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>getContextAttributes(Context context)Retrieves all attributes and their values for context
-
-
-
Method Detail
-
getContextAttributes
java.util.Map<java.lang.String,java.lang.String> getContextAttributes(Context context)
Retrieves all attributes and their values for context- Parameters:
context- context for which attributes are required- Returns:
- map of effective attributes of provided context in form of >name, value<
-
-