void |
IEntity.copyTo(String path) |
Copies this entity to a collection at the specified path.
|
void |
IEntity.create() |
Forces this entity to be created at its current path.
|
ICollection |
IRepositoryWriter.createCollection(String path) |
This method creates a new empty collection at the specified path.
|
IResource |
ICollection.createResource(String name,
byte[] content) |
Create resource under this collection by recognizing the content type and binary flag by its file extension.
|
IResource |
ICollection.createResource(String name,
byte[] content,
boolean isBinary,
String contentType) |
Create resource under this collection by specifying the binary flag.
|
IResource |
IRepositoryWriter.createResource(String path) |
This method creates a new empty resource at the specified path.
|
IResource |
IRepositoryWriter.createResource(String path,
byte[] content) |
This method creates a new resource at the specified path and fills it
with the specified content.
|
IResource |
IRepositoryWriter.createResource(String path,
byte[] content,
boolean isBinary,
String contentType) |
This method creates a new empty resource at the specified path.
|
IResource |
IRepositoryWriter.createResource(String path,
byte[] content,
boolean isBinary,
String contentType,
boolean override) |
This method creates a new empty, or override resource at the specified path.
|
void |
IEntity.delete() |
Removes this entity from the repository.
|
void |
IEntity.moveTo(String path) |
Moves this entity to a collection at the specified path.
|
void |
ICollection.removeCollection(String name) |
Removes the collection with the specified name contained in this
collection.
|
void |
ICollection.removeCollection(ICollection collection) |
Removes the child collection represented by the parameter.
|
void |
IRepositoryWriter.removeCollection(String path) |
This method removes the collection with the specified path from the
repository.
|
void |
ICollection.removeResource(String name) |
Removes the resource with the specified name from this collection.
|
void |
ICollection.removeResource(IResource resource) |
Removes the child resource represented by the parameter.
|
void |
IRepositoryWriter.removeResource(String path) |
This method removes the resource at the specified path from the
repository.
|
void |
IEntity.renameTo(String name) |
Changes the name of this entity to the specified value.
|
void |
IResource.setContent(byte[] content) |
Sets this resource's content.
|
void |
IResource.setContent(byte[] content,
boolean isBinary,
String contentType) |
Sets this resource's content.
|