String |
ContentResource.addContent(String spaceID,
String contentID,
InputStream content,
String contentMimeType,
Map<String,String> userProperties,
long contentSize,
String checksum,
String storeID) |
|
String |
ContentResourceImpl.addContent(String spaceID,
String contentID,
InputStream content,
String contentMimeType,
Map<String,String> userProperties,
long contentSize,
String checksum,
String storeID) |
Adds content to a space.
|
void |
SpaceResource.addSpace(String spaceID,
Map<String,AclType> userACLs,
String storeID) |
Adds a space.
|
String |
ContentResource.copyContent(String srcStoreID,
String srcSpaceID,
String srcContentID,
String destStoreID,
String destSpaceID,
String destContentID) |
|
String |
ContentResourceImpl.copyContent(String srcStoreID,
String srcSpaceID,
String srcContentID,
String destStoreID,
String destSpaceID,
String destContentID) |
This method copies the content found in space srcSpaceID with id
srcContentID to the space destSpaceID within the same content store
(storeID) to the id of destContentID.
|
void |
ContentResource.deleteContent(String spaceID,
String contentID,
String storeID) |
|
void |
ContentResourceImpl.deleteContent(String spaceID,
String contentID,
String storeID) |
Removes a piece of content.
|
void |
SpaceResource.deleteSpace(String spaceID,
String storeID) |
Deletes a space, removing all included content.
|
RetrievedContent |
ContentResource.getContent(String spaceID,
String contentID,
String storeID,
String range) |
|
RetrievedContent |
ContentResourceImpl.getContent(String spaceID,
String contentID,
String storeID,
String range) |
Retrieves content from a space.
|
Map<String,String> |
ContentResource.getContentProperties(String spaceID,
String contentID,
String storeID) |
|
Map<String,String> |
ContentResourceImpl.getContentProperties(String spaceID,
String contentID,
String storeID) |
Retrieves the properties of a piece of content.
|
Map<String,AclType> |
SpaceResource.getSpaceACLs(String spaceID,
String storeID) |
Gets the ACLs of a space.
|
String |
SpaceResource.getSpaceContents(String spaceID,
String storeID,
String prefix,
long maxResults,
String marker) |
Gets a listing of the contents of a space.
|
Map<String,String> |
SpaceResource.getSpaceProperties(String spaceID,
String storeID) |
Gets the properties of a space.
|
String |
SpaceResource.getSpaces(String storeID) |
Provides a listing of all spaces for a customer.
|
void |
ContentResource.updateContentProperties(String spaceID,
String contentID,
String contentMimeType,
Map<String,String> userProperties,
String storeID) |
|
void |
ContentResourceImpl.updateContentProperties(String spaceID,
String contentID,
String contentMimeType,
Map<String,String> userProperties,
String storeID) |
Updates the properties of a piece of content.
|
void |
SpaceResource.updateSpaceACLs(String spaceID,
Map<String,AclType> spaceACLs,
String storeID) |
Updates the ACLs of a space.
|