String |
ContentStore.addContent(String spaceId,
String contentId,
InputStream content,
long contentSize,
String contentMimeType,
String contentChecksum,
Map<String,String> contentProperties) |
Adds content to a space.
|
String |
ContentStoreImpl.addContent(String spaceId,
String contentId,
InputStream content,
long contentSize,
String contentMimeType,
String contentChecksum,
Map<String,String> contentProperties) |
Adds content to a space.
|
boolean |
ContentStore.contentExists(String spaceId,
String contentId) |
Determines if a content item exists in a given space
|
boolean |
ContentStoreImpl.contentExists(String spaceId,
String contentId) |
Determines if a content item exists in a given space
|
String |
ContentStore.copyContent(String srcSpaceId,
String srcContentId,
String destSpaceId,
String destContentId) |
This method copies the content item found in source-space with the id of
source-content-id into the dest-space, naming it to dest-content-id.
|
String |
ContentStore.copyContent(String srcSpaceId,
String srcContentId,
String destStoreId,
String destSpaceId,
String destContentId) |
This method provides a way to copy a content item to another content provider.
|
String |
ContentStoreImpl.copyContent(String srcSpaceId,
String srcContentId,
String destSpaceId,
String destContentId) |
This method copies the content item found in source-space with the id of
source-content-id into the dest-space, naming it to dest-content-id.
|
String |
ContentStoreImpl.copyContent(String srcSpaceId,
String srcContentId,
String destStoreId,
String destSpaceId,
String destContentId) |
This method provides a way to copy a content item to another content provider.
|
void |
ContentStore.createSpace(String spaceId) |
Creates a new space.
|
void |
ContentStoreImpl.createSpace(String spaceId) |
Creates a new space.
|
void |
ContentStore.deleteContent(String spaceId,
String contentId) |
Removes content from a space.
|
void |
ContentStoreImpl.deleteContent(String spaceId,
String contentId) |
Removes content from a space.
|
void |
ContentStore.deleteSpace(String spaceId) |
Deletes a space.
|
void |
ContentStoreImpl.deleteSpace(String spaceId) |
Deletes a space.
|
protected abstract T |
StoreCaller.doCall() |
|
protected RestHttpHelper.HttpResponse |
ContentStoreImpl.doGetContent(String spaceId,
String contentId,
Long startByte,
Long endByte) |
|
protected <T> T |
ContentStoreImpl.execute(Retriable retriable) |
|
InputStream |
ContentStore.getAuditLog(String spaceId) |
Gets an audit log for the specific space if one exists.
|
InputStream |
ContentStoreImpl.getAuditLog(String spaceId) |
|
BitIntegrityReport |
ContentStore.getBitIntegrityReport(String spaceId) |
Returns the most recent bit integrity report.
|
BitIntegrityReport |
ContentStoreImpl.getBitIntegrityReport(String spaceId) |
|
BitIntegrityReportProperties |
ContentStore.getBitIntegrityReportProperties(String spaceId) |
Returns the properties associated with the most recent bit integrity report.
|
BitIntegrityReportProperties |
ContentStoreImpl.getBitIntegrityReportProperties(String spaceId) |
|
Content |
ContentStore.getContent(String spaceId,
String contentId) |
Gets content from a space.
|
Content |
ContentStore.getContent(String spaceId,
String contentId,
Long startByte,
Long endByte) |
Gets a byte range of a content item from a space.
|
Content |
ContentStoreImpl.getContent(String spaceId,
String contentId) |
Gets content from a space.
|
Content |
ContentStoreImpl.getContent(String spaceId,
String contentId,
Long startByte,
Long endByte) |
Gets a byte range of a content item from a space.
|
Map<String,String> |
ContentStore.getContentProperties(String spaceId,
String contentId) |
Retrieves the properties associated with content.
|
Map<String,String> |
ContentStoreImpl.getContentProperties(String spaceId,
String contentId) |
Retrieves the properties associated with content.
|
ContentStore |
ContentStoreManager.getContentStore(String storeID) |
Gets a specific content store based on ID.
|
ContentStore |
ContentStoreManager.getContentStore(String storeID,
int maxRetries) |
Gets a specific content store based on ID.
|
ContentStore |
ContentStoreManagerImpl.getContentStore(String storeID) |
Gets a specific content store based on ID.
|
ContentStore |
ContentStoreManagerImpl.getContentStore(String storeID,
int maxRetries) |
Gets a specific content store based on ID.
|
Map<String,ContentStore> |
ContentStoreManager.getContentStores() |
Gets all available content stores.
|
Map<String,ContentStore> |
ContentStoreManager.getContentStores(int maxRetries) |
Gets all available content stores.
|
Map<String,ContentStore> |
ContentStoreManagerImpl.getContentStores() |
Gets all available content stores.
|
Map<String,ContentStore> |
ContentStoreManagerImpl.getContentStores(int maxRetries) |
Gets all available content stores.
|
InputStream |
ContentStore.getManifest(String spaceId,
ManifestFormat format) |
Gets a manifest for the specific space if one exists.
|
InputStream |
ContentStoreImpl.getManifest(String spaceId,
ManifestFormat format) |
|
ContentStore |
ContentStoreManager.getPrimaryContentStore() |
Gets the primary content store.
|
ContentStore |
ContentStoreManager.getPrimaryContentStore(int maxRetries) |
Gets the primary content store.
|
ContentStore |
ContentStoreManagerImpl.getPrimaryContentStore() |
Gets the primary content store.
|
ContentStore |
ContentStoreManagerImpl.getPrimaryContentStore(int maxRetries) |
Gets the primary content store.
|
ContentStore |
ContentStoreManager.getPrimaryContentStoreAsAnonymous() |
Provides access to the primary content store without requiring login().
|
ContentStore |
ContentStoreManager.getPrimaryContentStoreAsAnonymous(int maxRetries) |
Provides access to the primary content store without requiring login().
|
ContentStore |
ContentStoreManagerImpl.getPrimaryContentStoreAsAnonymous() |
Provides access to the primary content store without requiring login().
|
ContentStore |
ContentStoreManagerImpl.getPrimaryContentStoreAsAnonymous(int maxRetries) |
Provides access to the primary content store without requiring login().
|
Space |
ContentStore.getSpace(String spaceId,
String prefix,
long maxResults,
String marker) |
Provides a space, including the id and properties of the space as well as
a limited list of the content items within a space.
|
Space |
ContentStoreImpl.getSpace(String spaceId,
String prefix,
long maxResults,
String marker) |
Provides a space, including the id and properties of the space as well as
a limited list of the content items within a space.
|
Map<String,AclType> |
ContentStore.getSpaceACLs(String spaceId) |
Retrieves the ACLs associated with a space.
|
Map<String,AclType> |
ContentStoreImpl.getSpaceACLs(String spaceId) |
Retrieves the ACLs associated with a space.
|
Iterator<String> |
ContentStore.getSpaceContents(String spaceId) |
Retrieves the complete list of content items within a space.
|
Iterator<String> |
ContentStore.getSpaceContents(String spaceId,
String prefix) |
Retrieves the complete list of content items within a space.
|
Iterator<String> |
ContentStoreImpl.getSpaceContents(String spaceId) |
Retrieves the complete list of content items within a space.
|
Iterator<String> |
ContentStoreImpl.getSpaceContents(String spaceId,
String prefix) |
Retrieves the complete list of content items within a space.
|
Map<String,String> |
ContentStore.getSpaceProperties(String spaceId) |
Retrieves the properties associated with a space.
|
Map<String,String> |
ContentStoreImpl.getSpaceProperties(String spaceId) |
Retrieves the properties associated with a space.
|
List<String> |
ContentStore.getSpaces() |
Provides a listing of all spaces IDs.
|
List<String> |
ContentStoreImpl.getSpaces() |
Provides a listing of all spaces IDs.
|
SpaceStatsDTOList |
ContentStore.getSpaceStats(String spaceId,
Date from,
Date to) |
Returns a space stats time series for presenting in a graph.
|
SpaceStatsDTOList |
ContentStoreImpl.getSpaceStats(String spaceId,
Date start,
Date end) |
|
SpaceStatsDTOList |
ContentStore.getStorageProviderStats(Date from,
Date to) |
Returns a base based series of stats for all spaces within a storage provider for the
specified time range.
|
SpaceStatsDTOList |
ContentStoreImpl.getStorageProviderStats(Date start,
Date end) |
|
SpaceStatsDTOList |
ContentStore.getStorageProviderStatsByDay(Date date) |
Returns stats for all spaces within a storage provider for a particular
day, averaging bit and object counts between 0:00:00 and 23:59:59 UTC.
|
SpaceStatsDTOList |
ContentStoreImpl.getStorageProviderStatsByDay(Date date) |
|
List<String> |
ContentStore.getSupportedTasks() |
Gets a listing of the supported tasks.
|
List<String> |
ContentStoreImpl.getSupportedTasks() |
Gets a listing of the supported tasks.
|
String |
ContentStore.moveContent(String srcSpaceId,
String srcContentId,
String destSpaceId,
String destContentId) |
This method moves the content item found in source-space with the id of
source-content-id into the dest-space, naming it to dest-content-id.
|
String |
ContentStore.moveContent(String srcSpaceId,
String srcContentId,
String destStoreId,
String destSpaceId,
String destContentId) |
This method moves the content item found in source-space with the id of
source-content-id into the dest-space, naming it to dest-content-id.
|
String |
ContentStoreImpl.moveContent(String srcSpaceId,
String srcContentId,
String destSpaceId,
String destContentId) |
This method moves the content item found in source-space with the id of
source-content-id into the dest-space, naming it to dest-content-id.
|
String |
ContentStoreImpl.moveContent(String srcSpaceId,
String srcContentId,
String destStoreId,
String destSpaceId,
String destContentId) |
This method moves the content item found in source-space with the id of
source-content-id into the dest-space, naming it to dest-content-id.
|
String |
ContentStore.performTask(String taskName,
String taskParameters) |
Perform a task (with retries on failure) which is outside of the standard set of storage activities
but is available through one or more storage providers.
|
String |
ContentStoreImpl.performTask(String taskName,
String taskParameters) |
Perform a task (with retries on failure) which is outside of the standard set of storage activities
but is available through one or more storage providers.
|
String |
ContentStore.performTaskWithNoRetries(String taskName,
String taskParameters) |
Perform a task (without retrying on failure) which is outside of the standard set of storage activities
but is available through one or more storage providers.
|
String |
ContentStoreImpl.performTaskWithNoRetries(String taskName,
String taskParameters) |
Perform a task (without retrying on failure) which is outside of the standard set of storage activities
but is available through one or more storage providers.
|
void |
ContentStoreManager.reinitialize(String host,
String port,
String context) |
reconfigure
|
void |
ContentStoreManagerImpl.reinitialize(String host,
String port,
String context) |
|
void |
ContentStore.setContentProperties(String spaceId,
String contentId,
Map<String,String> contentProperties) |
Sets the properties associated with content.
|
void |
ContentStoreImpl.setContentProperties(String spaceId,
String contentId,
Map<String,String> contentProperties) |
Sets the properties associated with content.
|
void |
ContentStore.setSpaceACLs(String spaceId,
Map<String,AclType> spaceACLs) |
Sets the ACLs associated with a space.
|
void |
ContentStoreImpl.setSpaceACLs(String spaceId,
Map<String,AclType> spaceACLs) |
Sets the ACLs associated with a space.
|
boolean |
ContentStore.spaceExists(String spaceId) |
Determines if a space exists
|
boolean |
ContentStoreImpl.spaceExists(String spaceId) |
Determines if a space exists
|