public class ProvidedObjectStoreWrapper<T extends Serializable> extends Object implements ObjectStore<T>, Disposable
PHASE_NAME
Constructor and Description |
---|
ProvidedObjectStoreWrapper(ObjectStore<T> providedObjectStore,
org.apache.commons.collections.Factory objectStoreFactory)
Wraps the
providedObjectStore if given, or uses the objectStoreFactory to create one. |
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all items of this store without disposing it, meaning that after
performing a clear(), you should still be able perform other operations.
|
boolean |
contains(Serializable key)
Check whether the given Object is already registered with this store.
|
void |
dispose()
A lifecycle method where implementor should free up any resources.
|
protected ObjectStore<T> |
getWrapped() |
boolean |
isPersistent()
Is this store persistent?
|
T |
remove(Serializable key)
Remove the object with key.
|
T |
retrieve(Serializable key)
Retrieve the given Object.
|
void |
store(Serializable key,
T value)
Store the given Object.
|
public ProvidedObjectStoreWrapper(ObjectStore<T> providedObjectStore, org.apache.commons.collections.Factory objectStoreFactory)
providedObjectStore
if given, or uses the objectStoreFactory
to create one.providedObjectStore
- the objectStroe provided through config to use. May be null.objectStoreFactory
- the factory to use to build an object store if providedObjectStore
is null.public boolean contains(Serializable key) throws ObjectStoreException
ObjectStore
contains
in interface ObjectStore<T extends Serializable>
key
- the identifier of the object to checktrue
if the key is stored or false
no value
was stored for the key.ObjectStoreException
- if the given key is null
.ObjectStoreNotAvaliableException
- if any implementation-specific error
occured, e.g. when the store is not availablepublic void store(Serializable key, T value) throws ObjectStoreException
ObjectStore
store
in interface ObjectStore<T extends Serializable>
key
- the identifier for value
value
- the Object to store with key
ObjectStoreException
- if the given key cannot be stored or is
null
.ObjectStoreNotAvaliableException
- if the store is not available or any
other implementation-specific error occured.ObjectAlreadyExistsException
- if an attempt is made to store an object
for a key that already has an object associated.public T retrieve(Serializable key) throws ObjectStoreException
ObjectStore
retrieve
in interface ObjectStore<T extends Serializable>
key
- the identifier of the object to retrieve.ObjectDoesNotExistException
.ObjectStoreException
- if the given key is null
.ObjectStoreNotAvaliableException
- if the store is not available or any
other implementation-specific error occured.ObjectDoesNotExistException
- if no value for the given key was
previously stored.public T remove(Serializable key) throws ObjectStoreException
ObjectStore
remove
in interface ObjectStore<T extends Serializable>
key
- the identifier of the object to remove.ObjectStoreException
- if the given key is null
or if the
store is not available or any other implementation-specific error
occuredObjectDoesNotExistException
- if no value for the given key was
previously stored.public boolean isPersistent()
ObjectStore
isPersistent
in interface ObjectStore<T extends Serializable>
public void clear() throws ObjectStoreException
ObjectStore
clear
in interface ObjectStore<T extends Serializable>
ObjectStoreException
- if the operation failspublic void dispose()
Disposable
dispose
in interface Disposable
protected ObjectStore<T> getWrapped()
Copyright © 2003–2016 MuleSoft, Inc.. All rights reserved.