Uses of Class
org.mule.api.store.ObjectStoreException

Packages that use ObjectStoreException
org.mule.api.store   
org.mule.module.spring.objectstore   
org.mule.transport.jdbc.store   
org.mule.util.store   
 

Uses of ObjectStoreException in org.mule.api.store
 

Subclasses of ObjectStoreException in org.mule.api.store
 class ObjectAlreadyExistsException
           
 class ObjectDoesNotExistException
           
 class ObjectStoreNotAvaliableException
          This exception is thrown when the underlying to an ObjectStore's system fails.
 

Methods in org.mule.api.store that throw ObjectStoreException
 boolean ObjectStore.contains(Serializable key)
          Check whether the given Object is already registered with this store.
 T ObjectStore.remove(Serializable key)
          Remove the object with key.
 T ObjectStore.retrieve(Serializable key)
          Retrieve the given Object.
 void ObjectStore.store(Serializable key, T value)
          Store the given Object.
 

Uses of ObjectStoreException in org.mule.module.spring.objectstore
 

Methods in org.mule.module.spring.objectstore that throw ObjectStoreException
 boolean SpringCacheObjectStore.contains(Serializable key)
           
 T SpringCacheObjectStore.remove(Serializable key)
           
 T SpringCacheObjectStore.retrieve(Serializable key)
           
 void SpringCacheObjectStore.store(Serializable key, T value)
           
 

Uses of ObjectStoreException in org.mule.transport.jdbc.store
 

Methods in org.mule.transport.jdbc.store that throw ObjectStoreException
 boolean JdbcObjectStore.contains(Serializable key)
          Check whether the given Object is already registered with this store.
 T JdbcObjectStore.remove(Serializable key)
          Remove the object with key.
 T JdbcObjectStore.retrieve(Serializable key)
          Retrieve the given Object.
 void JdbcObjectStore.store(Serializable key, T value)
          Store the given Object.
 void JdbcObjectStore.store(Serializable key, T value, String[] parameters)
           
 

Uses of ObjectStoreException in org.mule.util.store
 

Methods in org.mule.util.store that throw ObjectStoreException
 boolean InMemoryObjectStore.contains(Serializable key)
          Check whether the given Object is already registered with this store.
 T InMemoryObjectStore.remove(Serializable key)
           
 T InMemoryObjectStore.retrieve(Serializable key)
          Retrieve the given Object.
 void TextFileObjectStore.store(Serializable id, String item)
           
 void InMemoryObjectStore.store(Serializable id, T value)
          Store the given Object.
 



Copyright © 2003-2014 MuleSoft, Inc.. All Rights Reserved.