Modifier and Type | Interface and Description |
---|---|
interface |
Document
CMIS document interface.
|
interface |
FileableCmisObject
Fileable CMIS object.
|
interface |
Folder
CMIS folder interface.
|
interface |
Item
CMIS item interface.
|
interface |
Policy
CMIS policy interface.
|
interface |
Relationship
CMIS relationship interface.
|
Modifier and Type | Method and Description |
---|---|
CmisObject |
ObjectFactory.convertObject(ObjectData objectData,
OperationContext context) |
CmisObject |
Session.getObject(ObjectId objectId)
Returns a CMIS object from the session cache.
|
CmisObject |
Session.getObject(ObjectId objectId,
OperationContext context)
Returns a CMIS object from the session cache.
|
CmisObject |
Session.getObject(String objectId)
Returns a CMIS object from the session cache.
|
CmisObject |
Session.getObject(String objectId,
OperationContext context)
Returns a CMIS object from the session cache.
|
CmisObject |
Session.getObjectByPath(String path)
Returns a CMIS object from the session cache.
|
CmisObject |
Session.getObjectByPath(String path,
OperationContext context)
Returns a CMIS object from the session cache.
|
CmisObject |
Relationship.getSource()
Gets the source object.
|
CmisObject |
Relationship.getSource(OperationContext context)
Gets the source object using the given
OperationContext . |
CmisObject |
Relationship.getTarget()
Gets the target object.
|
CmisObject |
Relationship.getTarget(OperationContext context)
Gets the target object using the given
OperationContext . |
CmisObject |
CmisObject.rename(String newName)
Renames this object (changes the value of
cmis:name ). |
CmisObject |
CmisObject.updateProperties(Map<String,?> properties)
Updates the provided properties and refreshes this object afterwards.
|
Modifier and Type | Method and Description |
---|---|
ItemIterable<CmisObject> |
Folder.getChildren()
Returns the children of this folder.
|
ItemIterable<CmisObject> |
Folder.getChildren(OperationContext context)
Returns the children of this folder using the given
OperationContext . |
ItemIterable<CmisObject> |
Session.queryObjects(String typeId,
String where,
boolean searchAllVersions,
OperationContext context)
Builds a CMIS query and returns the query results as an iterator of
CmisObject objects. |
Modifier and Type | Method and Description |
---|---|
List<BulkUpdateObjectIdAndChangeToken> |
Session.bulkUpdateProperties(List<CmisObject> objects,
Map<String,?> properties,
List<String> addSecondaryTypeIds,
List<String> removeSecondaryTypeIds)
Updates multiple objects in one request.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractCmisObject
Base class for all persistent session object impl classes.
|
class |
AbstractFilableCmisObject
Base class for all filable persistent session object impl classes.
|
class |
DocumentImpl |
class |
FolderImpl |
class |
ItemImpl |
class |
PolicyImpl |
class |
RelationshipImpl |
Modifier and Type | Method and Description |
---|---|
CmisObject |
SessionImpl.getObject(ObjectId objectId) |
CmisObject |
SessionImpl.getObject(ObjectId objectId,
OperationContext context) |
CmisObject |
SessionImpl.getObject(String objectId) |
CmisObject |
SessionImpl.getObject(String objectId,
OperationContext context) |
CmisObject |
SessionImpl.getObjectByPath(String path) |
CmisObject |
SessionImpl.getObjectByPath(String path,
OperationContext context) |
CmisObject |
RelationshipImpl.getSource() |
CmisObject |
RelationshipImpl.getSource(OperationContext context) |
CmisObject |
RelationshipImpl.getTarget() |
CmisObject |
RelationshipImpl.getTarget(OperationContext context) |
CmisObject |
AbstractCmisObject.rename(String newName) |
CmisObject |
AbstractCmisObject.updateProperties(Map<String,?> properties) |
Modifier and Type | Method and Description |
---|---|
ItemIterable<CmisObject> |
FolderImpl.getChildren() |
ItemIterable<CmisObject> |
FolderImpl.getChildren(OperationContext context) |
ItemIterable<CmisObject> |
SessionImpl.queryObjects(String typeId,
String where,
boolean searchAllVersions,
OperationContext context) |
Modifier and Type | Method and Description |
---|---|
List<BulkUpdateObjectIdAndChangeToken> |
SessionImpl.bulkUpdateProperties(List<CmisObject> objects,
Map<String,?> properties,
List<String> addSecondaryTypeIds,
List<String> removeSecondaryTypeIds) |
Modifier and Type | Method and Description |
---|---|
CmisObject |
NoCacheImpl.getById(String objectId,
String cacheKey) |
CmisObject |
CacheImpl.getById(String objectId,
String cacheKey) |
CmisObject |
Cache.getById(String objectId,
String cacheKey) |
CmisObject |
NoCacheImpl.getByPath(String path,
String cacheKey) |
CmisObject |
CacheImpl.getByPath(String path,
String cacheKey) |
CmisObject |
Cache.getByPath(String path,
String cacheKey) |
Modifier and Type | Method and Description |
---|---|
void |
NoCacheImpl.put(CmisObject object,
String cacheKey) |
void |
CacheImpl.put(CmisObject object,
String cacheKey) |
void |
Cache.put(CmisObject object,
String cacheKey) |
void |
NoCacheImpl.putPath(String path,
CmisObject object,
String cacheKey) |
void |
CacheImpl.putPath(String path,
CmisObject object,
String cacheKey) |
void |
Cache.putPath(String path,
CmisObject object,
String cacheKey) |
Modifier and Type | Method and Description |
---|---|
CmisObject |
ObjectFactoryImpl.convertObject(ObjectData objectData,
OperationContext context) |
Modifier and Type | Method and Description |
---|---|
static CmisObject |
FileUtils.getObject(String pathOrIdOfObject,
Session session)
Gets an object by path or object id.
|
Modifier and Type | Method and Description |
---|---|
static void |
FileUtils.printProperties(CmisObject object)
Prints out all of the properties for this object to System.out.
|
static void |
FileUtils.printProperties(CmisObject object,
PrintStream out)
Prints out all of the properties for this object to the given
PrintStream.
|
Modifier and Type | Method and Description |
---|---|
protected CmisTestResult |
AbstractSessionTest.assertAllowableAction(CmisObject object,
Action action,
CmisTestResult success,
CmisTestResult failure) |
protected CmisTestResult |
AbstractSessionTest.assertEquals(CmisObject expected,
CmisObject actual,
CmisTestResult success,
CmisTestResult failure,
boolean checkAcls,
boolean checkPolicies) |
protected CmisTestResult |
AbstractSessionTest.assertNotAllowableAction(CmisObject object,
Action action,
CmisTestResult success,
CmisTestResult failure) |
protected CmisTestResult |
AbstractSessionTest.assertShallowEquals(CmisObject expected,
CmisObject actual,
CmisTestResult success,
CmisTestResult failure) |
protected CmisTestResult |
AbstractSessionTest.checkObject(Session session,
CmisObject object,
String[] properties,
String message) |
protected CmisTestResult |
AbstractSessionTest.checkRenditions(Session session,
CmisObject object,
String message) |
protected CmisTestResult |
AbstractSessionTest.checkVersionHistory(Session session,
CmisObject object,
String[] properties,
String message) |
protected void |
AbstractSessionTest.deleteObject(CmisObject object)
Deletes an object and checks if it is deleted.
|
protected boolean |
AbstractSessionTest.exists(CmisObject object)
Tests if an object exists by refreshing it.
|
protected String[] |
AbstractSessionTest.getAllProperties(CmisObject object) |
Modifier and Type | Method and Description |
---|---|
protected CmisTestResult |
AbstractSessionTest.assertEqualObjectList(List<? extends CmisObject> expected,
List<? extends CmisObject> actual,
CmisTestResult success,
CmisTestResult failure) |
protected CmisTestResult |
AbstractSessionTest.assertEqualObjectList(List<? extends CmisObject> expected,
List<? extends CmisObject> actual,
CmisTestResult success,
CmisTestResult failure) |
Modifier and Type | Method and Description |
---|---|
static File |
ClientHelper.createTempFileFromDocument(CmisObject object,
String streamId) |
static void |
ClientHelper.download(Component component,
CmisObject object,
String streamId) |
static void |
ClientHelper.open(Component component,
CmisObject object,
String streamId) |
Constructor and Description |
---|
AclEditorFrame(ClientModel model,
CmisObject object) |
PropertyEditorFrame(ClientModel model,
CmisObject object) |
Modifier and Type | Method and Description |
---|---|
CmisObject |
AbstractDetailsTable.getObject() |
Modifier and Type | Method and Description |
---|---|
CmisObject |
ClientModel.getCurrentObject() |
CmisObject |
ClientModel.getFromCurrentChildren(String id) |
Modifier and Type | Method and Description |
---|---|
List<CmisObject> |
ClientModel.getCurrentChildren() |
Modifier and Type | Method and Description |
---|---|
CmisObject |
ActionPanel.getObject() |
Modifier and Type | Method and Description |
---|---|
void |
ActionPanel.setObject(CmisObject object) |
Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.