Class CoherenceProperties
- java.lang.Object
-
- com.oracle.coherence.spring.boot.autoconfigure.CoherenceProperties
-
@ConfigurationProperties(prefix="coherence") public class CoherenceProperties extends Object
Configuration properties for the Coherence Spring integration.- Since:
- 3.0
- Author:
- Gunnar Hillert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CoherenceProperties.CacheAbstractionProperties
Spring cache abstraction properties.static class
CoherenceProperties.InstanceProperties
Configuration properties of the Coherence Instance.static class
CoherenceProperties.LoggingProperties
Coherence Logging Configuration.static class
CoherenceProperties.ServerProperties
Configuration properties of the Coherence Server.static class
CoherenceProperties.SessionProperties
Coherence Session Configuration.
-
Constructor Summary
Constructors Constructor Description CoherenceProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CoherenceProperties.CacheAbstractionProperties
getCache()
CoherenceProperties.InstanceProperties
getInstance()
CoherenceProperties.LoggingProperties
getLogging()
Map<String,String>
getProperties()
String
getPropertyPrefix()
CoherenceProperties.ServerProperties
getServer()
CoherenceProperties.SessionProperties
getSessions()
void
setCache(CoherenceProperties.CacheAbstractionProperties cache)
void
setInstance(CoherenceProperties.InstanceProperties instance)
void
setLogging(CoherenceProperties.LoggingProperties logging)
void
setProperties(Map<String,String> properties)
void
setPropertyPrefix(String propertyPrefix)
void
setServer(CoherenceProperties.ServerProperties server)
void
setSessions(CoherenceProperties.SessionProperties sessions)
-
-
-
Field Detail
-
PREFIX
public static final String PREFIX
Configuration prefix for config properties.- See Also:
- Constant Field Values
-
-
Method Detail
-
getSessions
public CoherenceProperties.SessionProperties getSessions()
-
setSessions
public void setSessions(CoherenceProperties.SessionProperties sessions)
-
getLogging
public CoherenceProperties.LoggingProperties getLogging()
-
setLogging
public void setLogging(CoherenceProperties.LoggingProperties logging)
-
getPropertyPrefix
public String getPropertyPrefix()
-
setPropertyPrefix
public void setPropertyPrefix(String propertyPrefix)
-
getCache
public CoherenceProperties.CacheAbstractionProperties getCache()
-
setCache
public void setCache(CoherenceProperties.CacheAbstractionProperties cache)
-
getServer
public CoherenceProperties.ServerProperties getServer()
-
setServer
public void setServer(CoherenceProperties.ServerProperties server)
-
getInstance
public CoherenceProperties.InstanceProperties getInstance()
-
setInstance
public void setInstance(CoherenceProperties.InstanceProperties instance)
-
-