Interface | Description |
---|---|
ObjectStoreService |
An ObjectStoreService is mainly used in SMILA to store binary data during bulk processing.
|
StoreObject |
Information about objects in a store of an
ObjectStoreService . |
Class | Description |
---|---|
StoreObjectTimestampComparator |
Comparator implementation for StoreObject timestamps.
|
StoreOutputStream |
Extension of Java's
OutputStream to support aborting a created but not yet closed object. |
Exception | Description |
---|---|
BadRequestException |
Subclass of
ObjectStoreException for errors that are caused by invalid arguments or other conditions that
make it impossible to perform an operation. |
InvalidStoreNameException |
Thrown to indicate that the given store name does not conform to the restrictions imposed by the service
implementation.
|
NoSuchObjectException |
Thrown by object read or info operations if no object exists with the given ID in the selected store.
|
NoSuchStoreException |
Thrown if no store exists with the given name.
|
ObjectStoreException |
base class of exceptions thrown by
ObjectStoreService . |
ServiceUnavailableException |
Thrown to describe that some possibly temporary condition prevents the
ObjectStoreService from performing an
operation (e.g. network failures, if the service implementation depends on talking It may make sense for a client to
retry the operation after a short time, but there is no guarantee that it will succeed then. |
StoreExistsException |
Thrown to denote that the operation required to create a new store with a name of an already existing store.
|