|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StorageException | |
---|---|
org.apache.lucene.gdata.storage | Feed / Enty storage |
org.apache.lucene.gdata.storage.db4o | DB4o storage implementation (needs third patry jar) DB4o Website |
org.apache.lucene.gdata.storage.lucenestorage | Lucene storage implementation |
org.apache.lucene.gdata.storage.lucenestorage.recover | Recovering component for the lucene storage |
Uses of StorageException in org.apache.lucene.gdata.storage |
---|
Subclasses of StorageException in org.apache.lucene.gdata.storage | |
---|---|
class |
ModificationConflictException
This exception will be thrown if a Version conflict occures while updateing or deleteing an entry. |
class |
ResourceNotFoundException
This exception will be thrown if an requested resource of a resource to modify can not be found |
Methods in org.apache.lucene.gdata.storage that throw StorageException | |
---|---|
void |
Storage.deleteAccount(String accountname)
Deletes the account for the given account name. |
void |
Storage.deleteEntry(ServerBaseEntry entry)
Deletes the given entry. |
void |
Storage.deleteFeed(String feedId)
Deletes the feed for the given feed id. |
GDataAccount |
Storage.getAccount(String accountName)
Retrieves the GDataAccount for the given account name |
String |
Storage.getAccountNameForFeedId(String feedId)
Each feed belongs to one specific account. |
com.google.gdata.data.BaseEntry |
Storage.getEntry(ServerBaseEntry entry)
Retrieves the requested entry from the storage. |
Long |
Storage.getEntryLastModified(String entryId,
String feedId)
Retrieves the date of the last modification for the given id |
com.google.gdata.data.BaseFeed |
Storage.getFeed(ServerBaseFeed feed)
Retrieves the requested feed from the storage. |
Long |
Storage.getFeedLastModified(String feedId)
Retrieves the date of the last modification for the given id |
String |
Storage.getServiceForFeed(String feedId)
Retrieves the service name for a stored feed |
Storage |
StorageController.getStorage()
Creates Storage instances to access the underlaying storage component |
void |
Storage.storeAccount(GDataAccount account)
Saves a new account. |
com.google.gdata.data.BaseEntry |
Storage.storeEntry(ServerBaseEntry entry)
Stores the given entry. |
void |
Storage.storeFeed(ServerBaseFeed feed,
String accountname)
Stores a new feed for a existing account. |
void |
Storage.updateAccount(GDataAccount account)
Updates an existing account. |
com.google.gdata.data.BaseEntry |
Storage.updateEntry(ServerBaseEntry entry)
Updates the given entry. |
void |
Storage.updateFeed(ServerBaseFeed feed,
String accountname)
Updates a stored feed. |
Uses of StorageException in org.apache.lucene.gdata.storage.db4o |
---|
Methods in org.apache.lucene.gdata.storage.db4o that throw StorageException | |
---|---|
void |
DB4oStorage.deleteAccount(String accountname)
|
void |
DB4oStorage.deleteEntry(ServerBaseEntry entry)
|
void |
DB4oStorage.deleteFeed(String feedId)
|
GDataAccount |
DB4oStorage.getAccount(String accountName)
|
String |
DB4oStorage.getAccountNameForFeedId(String feedId)
|
com.google.gdata.data.BaseEntry |
DB4oStorage.getEntry(ServerBaseEntry entry)
|
Long |
DB4oStorage.getEntryLastModified(String entryId,
String feedId)
|
com.google.gdata.data.BaseFeed |
DB4oStorage.getFeed(ServerBaseFeed feed)
|
Long |
DB4oStorage.getFeedLastModified(String feedId)
|
String |
DB4oStorage.getServiceForFeed(String feedId)
|
Storage |
DB4oController.getStorage()
|
void |
DB4oStorage.storeAccount(GDataAccount account)
|
com.google.gdata.data.BaseEntry |
DB4oStorage.storeEntry(ServerBaseEntry entry)
|
void |
DB4oStorage.storeFeed(ServerBaseFeed feed,
String accountname)
|
void |
DB4oStorage.updateAccount(GDataAccount account)
|
com.google.gdata.data.BaseEntry |
DB4oStorage.updateEntry(ServerBaseEntry entry)
|
void |
DB4oStorage.updateFeed(ServerBaseFeed feed,
String accountname)
|
Uses of StorageException in org.apache.lucene.gdata.storage.lucenestorage |
---|
Methods in org.apache.lucene.gdata.storage.lucenestorage that throw StorageException | |
---|---|
void |
StorageModifier.createAccount(StorageAccountWrapper account)
Adds a new accountr to the storage. |
void |
StorageModifier.createFeed(StorageFeedWrapper wrapper)
Adds a new Feed to the storage. |
void |
StorageModifier.deleteAccount(String accountName)
Deletes the user with the given username. |
void |
StorageImplementation.deleteAccount(String Accountname)
|
void |
StorageImplementation.deleteEntry(ServerBaseEntry entry)
|
void |
StorageModifier.deleteEntry(StorageEntryWrapper wrapper)
Deletes the entry for the given entry id. |
void |
StorageModifier.deleteFeed(String feedId)
Deletes the feed with the given feed id Feed action will be not buffered. |
void |
StorageImplementation.deleteFeed(String feedId)
|
GDataAccount |
StorageImplementation.getAccount(String accountName)
|
String |
StorageImplementation.getAccountNameForFeedId(String feedId)
|
com.google.gdata.data.BaseEntry |
StorageImplementation.getEntry(ServerBaseEntry entry)
|
Long |
StorageImplementation.getEntryLastModified(String entryId,
String feedId)
|
protected long |
StorageQuery.getEntryLastModified(String entryId,
String feedId)
|
com.google.gdata.data.BaseFeed |
StorageImplementation.getFeed(ServerBaseFeed feed)
|
Long |
StorageImplementation.getFeedLastModified(String feedId)
|
String |
StorageImplementation.getServiceForFeed(String feedId)
|
Storage |
StorageCoreController.getStorage()
|
void |
StorageModifier.insertEntry(StorageEntryWrapper wrapper)
Inserts a new Entry to the Lucene index storage |
void |
StorageImplementation.storeAccount(GDataAccount Account)
|
com.google.gdata.data.BaseEntry |
StorageImplementation.storeEntry(ServerBaseEntry entry)
|
void |
StorageImplementation.storeFeed(ServerBaseFeed feed,
String accountName)
|
void |
StorageImplementation.updateAccount(GDataAccount Account)
|
void |
StorageModifier.updateAccount(StorageAccountWrapper user)
User action will be not buffered. |
com.google.gdata.data.BaseEntry |
StorageImplementation.updateEntry(ServerBaseEntry entry)
|
void |
StorageModifier.updateEntry(StorageEntryWrapper wrapper)
Updates the given entry. |
void |
StorageImplementation.updateFeed(ServerBaseFeed feed,
String accountName)
|
void |
StorageModifier.updateFeed(StorageFeedWrapper wrapper)
Feed action will be not buffered. |
Constructors in org.apache.lucene.gdata.storage.lucenestorage that throw StorageException | |
---|---|
StorageImplementation()
Creates a new StorageImplementation |
Uses of StorageException in org.apache.lucene.gdata.storage.lucenestorage.recover |
---|
Subclasses of StorageException in org.apache.lucene.gdata.storage.lucenestorage.recover | |
---|---|
class |
RecoverException
|
Methods in org.apache.lucene.gdata.storage.lucenestorage.recover that throw StorageException | |
---|---|
protected void |
RecoverController.storeEntries(List<StorageEntryWrapper> entries,
StorageModifier modifier)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |