Class CoherenceHibernateSystemPropertyResolver
- java.lang.Object
-
- com.oracle.coherence.hibernate.cache.v53.configuration.support.CoherenceHibernateSystemPropertyResolver
-
public class CoherenceHibernateSystemPropertyResolver extends Object
A helper class that makes Coherence-bound configuration properties available as System property.This class needs to be eagerly instantiated by Coherence Hibernate before any Coherence class that might need properties.
- Since:
- 2.1
- Author:
- Gunnar Hillert
-
-
Constructor Summary
Constructors Constructor Description CoherenceHibernateSystemPropertyResolver()
This constructor is required so that Coherence can discover and instantiate this class using the Java ServiceLoader.CoherenceHibernateSystemPropertyResolver(Map<String,Object> coherenceProperties)
This constructor will be called by Coherence Hibernate to instantiate the singleton bean and set thecoherenceProperties
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCoherenceProperty(String key, String value)
String
getProperty(String coherenceProperty)
void
initialize()
void
unset()
-
-
-
Constructor Detail
-
CoherenceHibernateSystemPropertyResolver
public CoherenceHibernateSystemPropertyResolver()
This constructor is required so that Coherence can discover and instantiate this class using the Java ServiceLoader.
-
CoherenceHibernateSystemPropertyResolver
public CoherenceHibernateSystemPropertyResolver(Map<String,Object> coherenceProperties)
This constructor will be called by Coherence Hibernate to instantiate the singleton bean and set thecoherenceProperties
.- Parameters:
coherenceProperties
- the Coherence properties. Must not be null.
-
-