Class ExtractorService
- java.lang.Object
-
- com.oracle.coherence.spring.configuration.ExtractorService
-
public class ExtractorService extends Object
Service that supports theExtractorConfiguration
.- Since:
- 3.0
- Author:
- Gunnar Hillert
-
-
Constructor Summary
Constructors Constructor Description ExtractorService(ConfigurableApplicationContext applicationContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,E>
com.tangosol.util.ValueExtractor<T,E>resolve(Set<Annotation> annotations)
Resolve aValueExtractor
implementation from the specified qualifiers.
-
-
-
Constructor Detail
-
ExtractorService
public ExtractorService(ConfigurableApplicationContext applicationContext)
-
-
Method Detail
-
resolve
public <T,E> com.tangosol.util.ValueExtractor<T,E> resolve(Set<Annotation> annotations)
Resolve aValueExtractor
implementation from the specified qualifiers.- Type Parameters:
T
- the type that theValueExtractor
can extract fromE
- the type that theValueExtractor
extracts- Parameters:
annotations
- the qualifiers to use to create theValueExtractor
- Returns:
- a
ValueExtractor
implementation created from the specified qualifiers.
-
-