public class GemfireAccessor extends Object implements InitializingBean
GemfireAccessor
is a base class for GemfireTemplate
defining common operations and properties,
such as Region
.
This class is not intended to be used directly.InitializingBean
,
Region
Modifier and Type | Field and Description |
---|---|
protected org.slf4j.Logger |
logger |
Constructor and Description |
---|
GemfireAccessor() |
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet() |
DataAccessException |
convertGemFireAccessException(org.apache.geode.GemFireCheckedException ex)
Converts the given
GemFireCheckedException to an appropriate exception from the
org.springframework.dao hierarchy. |
DataAccessException |
convertGemFireAccessException(org.apache.geode.GemFireException ex)
Converts the given
GemFireException to an appropriate exception from the
org.springframework.dao hierarchy. |
DataAccessException |
convertGemFireQueryException(RuntimeException ex)
Converts the given Pivotal GemFire exception to an appropriate exception from the
org.springframework.dao hierarchy. |
<K,V> org.apache.geode.cache.Region<K,V> |
getRegion()
Returns the template Pivotal GemFire Cache Region.
|
void |
setRegion(org.apache.geode.cache.Region<?,?> region)
Sets the template Pivotal GemFire Cache Region.
|
public <K,V> org.apache.geode.cache.Region<K,V> getRegion()
K
- the Region key class type.V
- the Region value class type.Region
public void setRegion(org.apache.geode.cache.Region<?,?> region)
region
- the Pivotal GemFire Cache Region used by this template.Region
public void afterPropertiesSet()
afterPropertiesSet
in interface InitializingBean
public DataAccessException convertGemFireAccessException(org.apache.geode.GemFireCheckedException ex)
GemFireCheckedException
to an appropriate exception from the
org.springframework.dao
hierarchy.
May be overridden in subclasses.ex
- GemFireCheckedException that occurredpublic DataAccessException convertGemFireAccessException(org.apache.geode.GemFireException ex)
GemFireException
to an appropriate exception from the
org.springframework.dao
hierarchy.
May be overridden in subclasses.ex
- GemFireException that occurredpublic DataAccessException convertGemFireQueryException(RuntimeException ex)
org.springframework.dao
hierarchy. Note that this particular implementation
is called only for Pivotal GemFire querying exception that do NOT extend from Pivotal GemFire exception.
May be overridden in subclasses.ex
- GemFireException that occurredCopyright © 2011–2021 Pivotal Software, Inc.. All rights reserved.