Known Direct Subclasses
|
Known Indirect Subclasses
|
Class Overview
A ObjectStoreModuleMetadataAdapater is a wrapper around ObjectStoreModule that adds support for querying metadata about the extension.
Summary
|
[Expand]
Inherited Fields |
From class
org.mule.modules.ObjectStoreModule
|
private
Integer |
entryTtl |
TimeToLive for stored values in milliseconds. |
|
private
Integer |
expirationInterval |
Specifies the expiration check interval in milliseconds. |
|
private
Integer |
maxEntries |
Specifies the max number of entries. |
|
private
ObjectStore |
objectStore |
Reference to an Object Store bean. |
|
private
ObjectStoreManager |
objectStoreManager |
|
|
private
String |
partition |
Name of the partition in the default in-memory or persistent object stores (this argument has no
meaning if the object store is passed by ref using objectStore-ref)
|
|
private
boolean |
persistent |
Specified whenever the required store needs to be persistent or not (this argument has no
meaning if the object store is passed by ref using objectStore-ref or no partition name is defined)
|
|
private
Registry |
registry |
|
|
| Public Methods |
|
String
|
getDevkitBuild()
Returns the build of the DevKit used to create this module
|
|
String
|
getDevkitVersion()
Returns the version of the DevKit used to create this module
|
|
String
|
getModuleName()
Returns the user-friendly name of this module
|
|
String
|
getModuleVersion()
Returns the version of this module
|
|
[Expand]
Inherited Methods |
From class
org.mule.modules.adapters.ObjectStoreModuleCapabilitiesAdapter
|
From class
org.mule.modules.ObjectStoreModule
|
List<Serializable>
|
allKeys()
Returns a list of all the keys in the store.
|
|
boolean
|
contains(String key)
Returns whether the object store contains the given key or not
|
|
void
|
dualStore(String key, Serializable value, boolean overwrite)
Store value using key, and also store key using value.
|
|
Integer
|
getEntryTtl()
|
|
Integer
|
getExpirationInterval()
|
|
Integer
|
getMaxEntries()
|
|
ObjectStore
|
getObjectStore()
|
|
ObjectStoreManager
|
getObjectStoreManager()
|
|
String
|
getPartition()
|
|
Registry
|
getRegistry()
|
|
void
|
init()
|
|
boolean
|
isPersistent()
|
|
Object
|
remove(String key, boolean ignoreNotExists)
Remove the object with key.
|
|
Object
|
retrieve(String key, Object defaultValue, String targetProperty, MulePropertyScope targetScope, MuleMessage muleMessage)
Retrieve the given Object.
|
|
void
|
setEntryTtl(Integer entryTtl)
|
|
void
|
setExpirationInterval(Integer expirationInterval)
|
|
void
|
setMaxEntries(Integer maxEntries)
|
|
void
|
setObjectStore(ObjectStore objectStore)
|
|
void
|
setObjectStoreManager(ObjectStoreManager objectStoreManager)
|
|
void
|
setPartition(String partition)
|
|
void
|
setPersistent(boolean persistent)
|
|
void
|
setRegistry(Registry registry)
|
|
void
|
store(String key, Serializable value, boolean overwrite)
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
org.mule.modules.basic.Capabilities
|
abstract
boolean
|
isCapableOf(Capability capability)
Returns true if this module implements such
capability
|
|
From interface
org.mule.modules.basic.MetadataAware
|
Constants
private
static
final
String
DEVKIT_BUILD
Constant Value:
"3.4.0.1555.8df15c1"
private
static
final
String
DEVKIT_VERSION
private
static
final
String
MODULE_NAME
Constant Value:
"ObjectStore"
private
static
final
String
MODULE_VERSION
Public Constructors
public
ObjectStoreModuleMetadataAdapater
()
Public Methods
public
String
getDevkitBuild
()
Returns the build of the DevKit used to create this module
public
String
getDevkitVersion
()
Returns the version of the DevKit used to create this module
public
String
getModuleName
()
Returns the user-friendly name of this module
public
String
getModuleVersion
()
Returns the version of this module