Class CoherenceProperties
- java.lang.Object
-
- com.oracle.coherence.spring.boot.autoconfigure.CoherenceProperties
-
@ConfigurationProperties(prefix="coherence") public class CoherenceProperties extends java.lang.ObjectConfiguration properties for the Coherence Spring integration.- Since:
- 3.0
- Author:
- Gunnar Hillert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoherenceProperties.CacheAbstractionPropertiesSpring cache abstraction properties.static classCoherenceProperties.InstancePropertiesConfiguration properties of the Coherence Instance.static classCoherenceProperties.LoggingPropertiesCoherence Logging Configuration.static classCoherenceProperties.ServerPropertiesConfiguration properties of the Coherence Server.static classCoherenceProperties.SessionPropertiesCoherence Session Configuration.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPREFIXConfiguration prefix for config properties.
-
Constructor Summary
Constructors Constructor Description CoherenceProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CoherenceProperties.CacheAbstractionPropertiesgetCache()CoherenceProperties.InstancePropertiesgetInstance()CoherenceProperties.LoggingPropertiesgetLogging()java.util.Map<java.lang.String,java.lang.String>getProperties()java.lang.StringgetPropertyPrefix()CoherenceProperties.ServerPropertiesgetServer()CoherenceProperties.SessionPropertiesgetSessions()voidsetCache(CoherenceProperties.CacheAbstractionProperties cache)voidsetInstance(CoherenceProperties.InstanceProperties instance)voidsetLogging(CoherenceProperties.LoggingProperties logging)voidsetProperties(java.util.Map<java.lang.String,java.lang.String> properties)voidsetPropertyPrefix(java.lang.String propertyPrefix)voidsetServer(CoherenceProperties.ServerProperties server)voidsetSessions(CoherenceProperties.SessionProperties sessions)
-
-
-
Field Detail
-
PREFIX
public static final java.lang.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)
-
getProperties
public java.util.Map<java.lang.String,java.lang.String> getProperties()
-
setProperties
public void setProperties(java.util.Map<java.lang.String,java.lang.String> properties)
-
getLogging
public CoherenceProperties.LoggingProperties getLogging()
-
setLogging
public void setLogging(CoherenceProperties.LoggingProperties logging)
-
getPropertyPrefix
public java.lang.String getPropertyPrefix()
-
setPropertyPrefix
public void setPropertyPrefix(java.lang.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)
-
-