|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.chemistry.opencmis.client.runtime.SessionImpl
public class SessionImpl
Persistent model session.
Constructor Summary | |
---|---|
SessionImpl(Map<String,String> parameters,
ObjectFactory objectFactory,
AuthenticationProvider authenticationProvider,
Cache cache)
Constructor. |
Method Summary | |
---|---|
Acl |
applyAcl(ObjectId objectId,
List<Ace> addAces,
List<Ace> removeAces,
AclPropagation aclPropagation)
Applies an ACL to an object. |
void |
applyPolicy(ObjectId objectId,
ObjectId... policyIds)
Applies a set of policies to an object. |
void |
clear()
Clears all cached data. |
void |
connect()
Connect session object to the provider. |
ObjectId |
createDocument(Map<String,?> properties,
ObjectId folderId,
ContentStream contentStream,
VersioningState versioningState)
Creates a new document. |
ObjectId |
createDocument(Map<String,?> properties,
ObjectId folderId,
ContentStream contentStream,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces)
Creates a new document. |
ObjectId |
createDocumentFromSource(ObjectId source,
Map<String,?> properties,
ObjectId folderId,
VersioningState versioningState)
Creates a new document from a source document. |
ObjectId |
createDocumentFromSource(ObjectId source,
Map<String,?> properties,
ObjectId folderId,
VersioningState versioningState,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces)
Creates a new document from a source document. |
ObjectId |
createFolder(Map<String,?> properties,
ObjectId folderId)
Creates a new folder. |
ObjectId |
createFolder(Map<String,?> properties,
ObjectId folderId,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces)
Creates a new folder. |
ObjectId |
createObjectId(String id)
Creates an object id from a String. |
OperationContext |
createOperationContext()
Creates a new operation context object. |
OperationContext |
createOperationContext(Set<String> filter,
boolean includeAcls,
boolean includeAllowableActions,
boolean includePolicies,
IncludeRelationships includeRelationships,
Set<String> renditionFilter,
boolean includePathSegments,
String orderBy,
boolean cacheEnabled,
int maxItemsPerPage)
Creates a new operation context object with the given properties. |
ObjectId |
createPolicy(Map<String,?> properties,
ObjectId folderId)
Creates a new policy. |
ObjectId |
createPolicy(Map<String,?> properties,
ObjectId folderId,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces)
Creates a new policy. |
QueryStatement |
createQueryStatement(String statement)
Creates a query statement. |
ObjectId |
createRelationship(Map<String,?> properties)
Creates a new relationship. |
ObjectId |
createRelationship(Map<String,?> properties,
List<Policy> policies,
List<Ace> addAces,
List<Ace> removeAces)
Creates a new relationship. |
Acl |
getAcl(ObjectId objectId,
boolean onlyBasicPermissions)
Fetches the ACL of an object from the repository. |
CmisBinding |
getBinding()
Returns the underlying binding object. |
Cache |
getCache()
|
ItemIterable<Document> |
getCheckedOutDocs()
Returns all checked out documents. |
ItemIterable<Document> |
getCheckedOutDocs(OperationContext context)
Returns all checked out documents with the given OperationContext
. |
ChangeEvents |
getContentChanges(String changeLogToken,
boolean includeProperties,
long maxNumItems)
Returns the content changes. |
ChangeEvents |
getContentChanges(String changeLogToken,
boolean includeProperties,
long maxNumItems,
OperationContext context)
Returns the content changes. |
OperationContext |
getDefaultContext()
Returns the current default operation parameters for filtering, paging and caching. |
Locale |
getLocale()
Get the current locale to be used for this session. |
CmisObject |
getObject(ObjectId objectId)
Returns a CMIS object from the session cache. |
CmisObject |
getObject(ObjectId objectId,
OperationContext context)
Returns a CMIS object from the session cache. |
CmisObject |
getObject(String objectId)
Returns a CMIS object from the session cache. |
CmisObject |
getObject(String objectId,
OperationContext context)
Returns a CMIS object from the session cache. |
CmisObject |
getObjectByPath(String path)
Returns a CMIS object from the session cache. |
CmisObject |
getObjectByPath(String path,
OperationContext context)
Returns a CMIS object from the session cache. |
ObjectFactory |
getObjectFactory()
Gets a factory object that provides methods to create the objects used by this API. |
ItemIterable<Relationship> |
getRelationships(ObjectId objectId,
boolean includeSubRelationshipTypes,
RelationshipDirection relationshipDirection,
ObjectType type,
OperationContext context)
Fetches the relationships from or to an object from the repository. |
String |
getRepositoryId()
Returns the repository id. |
RepositoryInfo |
getRepositoryInfo()
Returns the repository info of the repository associated with this session. |
Folder |
getRootFolder()
Gets the root folder of the repository. |
Folder |
getRootFolder(OperationContext context)
Gets the root folder of the repository with the given OperationContext . |
ItemIterable<ObjectType> |
getTypeChildren(String typeId,
boolean includePropertyDefinitions)
Returns the type children of the given type id. |
ObjectType |
getTypeDefinition(String typeId)
Returns the type definition of the given type id. |
List<Tree<ObjectType>> |
getTypeDescendants(String typeId,
int depth,
boolean includePropertyDefinitions)
Returns the type descendants of the given type id. |
ItemIterable<QueryResult> |
query(String statement,
boolean searchAllVersions)
Sends a query to the repository. |
ItemIterable<QueryResult> |
query(String statement,
boolean searchAllVersions,
OperationContext context)
Sends a query to the repository using the given OperationContext . |
void |
removeObjectFromCache(ObjectId objectId)
Removes the given object from the cache. |
void |
removeObjectFromCache(String objectId)
Removes the given object from the cache. |
void |
removePolicy(ObjectId objectId,
ObjectId... policyIds)
Removes a set of policies from an object. |
void |
setDefaultContext(OperationContext context)
Sets the current session parameters for filtering, paging and caching. |
String |
setExtensionContext(String context)
|
ExtensionHandler |
setExtensionHandler(String context,
ExtensionHandler extensionHandler)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SessionImpl(Map<String,String> parameters, ObjectFactory objectFactory, AuthenticationProvider authenticationProvider, Cache cache)
Method Detail |
---|
public void clear()
Session
clear
in interface Session
public ObjectFactory getObjectFactory()
Session
getObjectFactory
in interface Session
public ItemIterable<Document> getCheckedOutDocs()
Session
getCheckedOutDocs
in interface Session
Folder.getCheckedOutDocs()
public ItemIterable<Document> getCheckedOutDocs(OperationContext context)
Session
OperationContext
.
getCheckedOutDocs
in interface Session
Folder.getCheckedOutDocs(OperationContext)
public ChangeEvents getContentChanges(String changeLogToken, boolean includeProperties, long maxNumItems)
Session
getContentChanges
in interface Session
changeLogToken
- the change log token to start from or null
includeProperties
- indicates if changed properties should be included in the
resultmaxNumItems
- maximum numbers of eventspublic ChangeEvents getContentChanges(String changeLogToken, boolean includeProperties, long maxNumItems, OperationContext context)
Session
getContentChanges
in interface Session
changeLogToken
- the change log token to start from or null
includeProperties
- indicates if changed properties should be included in the
resultmaxNumItems
- maximum numbers of eventscontext
- the OperationContextpublic OperationContext getDefaultContext()
Session
getDefaultContext
in interface Session
public void setDefaultContext(OperationContext context)
Session
setDefaultContext
in interface Session
context
- the OperationContext
to be used for the session;
if null
, a default context is usedpublic OperationContext createOperationContext(Set<String> filter, boolean includeAcls, boolean includeAllowableActions, boolean includePolicies, IncludeRelationships includeRelationships, Set<String> renditionFilter, boolean includePathSegments, String orderBy, boolean cacheEnabled, int maxItemsPerPage)
Session
createOperationContext
in interface Session
OperationContext
public OperationContext createOperationContext()
Session
createOperationContext
in interface Session
public ObjectId createObjectId(String id)
Session
createObjectId
in interface Session
public Locale getLocale()
Session
getLocale
in interface Session
public CmisObject getObject(ObjectId objectId)
Session
OperationContext
, it
will load the object from the repository and puts it into the cache.
getObject
in interface Session
objectId
- the object idSession.getObject(String)
public CmisObject getObject(ObjectId objectId, OperationContext context)
Session
OperationContext
has caching turned off, it
will load the object from the repository and puts it into the cache.
getObject
in interface Session
objectId
- the object idcontext
- the OperationContext
to useSession.getObject(String, OperationContext)
public CmisObject getObject(String objectId)
Session
OperationContext
, it
will load the object from the repository and puts it into the cache.
getObject
in interface Session
objectId
- the object idSession.getObject(ObjectId)
public CmisObject getObject(String objectId, OperationContext context)
Session
OperationContext
has caching turned off, it
will load the object from the repository and puts it into the cache.
getObject
in interface Session
objectId
- the object idcontext
- the OperationContext
to useSession.getObject(ObjectId, OperationContext)
public CmisObject getObjectByPath(String path)
Session
OperationContext
, it
will load the object from the repository and puts it into the cache.
getObjectByPath
in interface Session
path
- the object pathpublic CmisObject getObjectByPath(String path, OperationContext context)
Session
OperationContext
has caching turned off, it
will load the object from the repository and puts it into the cache.
getObjectByPath
in interface Session
path
- the object pathcontext
- the OperationContext
to usepublic void removeObjectFromCache(ObjectId objectId)
Session
removeObjectFromCache
in interface Session
objectId
- object idpublic void removeObjectFromCache(String objectId)
Session
removeObjectFromCache
in interface Session
objectId
- object idpublic RepositoryInfo getRepositoryInfo()
Session
getRepositoryInfo
in interface Session
public Folder getRootFolder()
Session
getRootFolder
in interface Session
public Folder getRootFolder(OperationContext context)
Session
OperationContext
.
getRootFolder
in interface Session
public ItemIterable<ObjectType> getTypeChildren(String typeId, boolean includePropertyDefinitions)
Session
getTypeChildren
in interface Session
public ObjectType getTypeDefinition(String typeId)
Session
getTypeDefinition
in interface Session
public List<Tree<ObjectType>> getTypeDescendants(String typeId, int depth, boolean includePropertyDefinitions)
Session
getTypeDescendants
in interface Session
public ItemIterable<QueryResult> query(String statement, boolean searchAllVersions)
Session
query
in interface Session
statement
- the query statement (CMIS query language)searchAllVersions
- specifies if the latest and non-latest versions of document
objects should be includedpublic ItemIterable<QueryResult> query(String statement, boolean searchAllVersions, OperationContext context)
Session
OperationContext
.
(See CMIS spec "2.1.10 Query".)
query
in interface Session
statement
- the query statement (CMIS query language)searchAllVersions
- specifies if the latest and non-latest versions of document
objects should be includedcontext
- the OperationContextpublic QueryStatement createQueryStatement(String statement)
Session
createQueryStatement
in interface Session
statement
- the query statement with placeholders ('?').QueryStatement
public String setExtensionContext(String context)
public ExtensionHandler setExtensionHandler(String context, ExtensionHandler extensionHandler)
public void connect()
In dependency of the parameter set an AtomPub
, a
WebService
or an InMemory
provider is selected.
public CmisBinding getBinding()
Session
getBinding
in interface Session
public Cache getCache()
public String getRepositoryId()
public ObjectId createDocument(Map<String,?> properties, ObjectId folderId, ContentStream contentStream, VersioningState versioningState, List<Policy> policies, List<Ace> addAces, List<Ace> removeAces)
Session
createDocument
in interface Session
Folder.createDocument(Map, ContentStream, VersioningState, List,
List, List, OperationContext)
public ObjectId createDocumentFromSource(ObjectId source, Map<String,?> properties, ObjectId folderId, VersioningState versioningState, List<Policy> policies, List<Ace> addAces, List<Ace> removeAces)
Session
createDocumentFromSource
in interface Session
Folder.createDocumentFromSource(ObjectId, Map, VersioningState,
List, List, List, OperationContext)
public ObjectId createFolder(Map<String,?> properties, ObjectId folderId, List<Policy> policies, List<Ace> addAces, List<Ace> removeAces)
Session
createFolder
in interface Session
Folder.createFolder(Map, List, List, List, OperationContext)
public ObjectId createPolicy(Map<String,?> properties, ObjectId folderId, List<Policy> policies, List<Ace> addAces, List<Ace> removeAces)
Session
createPolicy
in interface Session
Folder.createPolicy(Map, List, List, List, OperationContext)
public ObjectId createRelationship(Map<String,?> properties, List<Policy> policies, List<Ace> addAces, List<Ace> removeAces)
Session
createRelationship
in interface Session
public ObjectId createDocument(Map<String,?> properties, ObjectId folderId, ContentStream contentStream, VersioningState versioningState)
Session
createDocument
in interface Session
Folder.createDocument(Map, ContentStream, VersioningState, List,
List, List, OperationContext)
public ObjectId createDocumentFromSource(ObjectId source, Map<String,?> properties, ObjectId folderId, VersioningState versioningState)
Session
createDocumentFromSource
in interface Session
Folder.createDocumentFromSource(ObjectId, Map, VersioningState,
List, List, List, OperationContext)
public ObjectId createFolder(Map<String,?> properties, ObjectId folderId)
Session
createFolder
in interface Session
Folder.createFolder(Map, List, List, List, OperationContext)
public ObjectId createPolicy(Map<String,?> properties, ObjectId folderId)
Session
createPolicy
in interface Session
Folder.createPolicy(Map, List, List, List, OperationContext)
public ObjectId createRelationship(Map<String,?> properties)
Session
createRelationship
in interface Session
public ItemIterable<Relationship> getRelationships(ObjectId objectId, boolean includeSubRelationshipTypes, RelationshipDirection relationshipDirection, ObjectType type, OperationContext context)
Session
getRelationships
in interface Session
public Acl getAcl(ObjectId objectId, boolean onlyBasicPermissions)
Session
getAcl
in interface Session
public Acl applyAcl(ObjectId objectId, List<Ace> addAces, List<Ace> removeAces, AclPropagation aclPropagation)
Session
applyAcl
in interface Session
public void applyPolicy(ObjectId objectId, ObjectId... policyIds)
Session
applyPolicy
in interface Session
public void removePolicy(ObjectId objectId, ObjectId... policyIds)
Session
removePolicy
in interface Session
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |