public interface Session
extends javax.resource.cci.Connection
Modifier and Type | Interface and Description |
---|---|
static interface |
Session.PathResolver
Interface for a class that knows how to resolve a node path into a node id.
|
Modifier and Type | Method and Description |
---|---|
Node |
addChildNode(Node parent,
String name,
Long pos,
String typeName,
boolean complexProp)
Creates a new child node.
|
Node |
addChildNode(Serializable id,
Node parent,
String name,
Long pos,
String typeName,
boolean complexProp)
Creates a new child node with given id (used for import).
|
boolean |
addMixinType(Node node,
String mixin)
Adds a mixin to a node.
|
Node |
addProxy(Serializable targetId,
Serializable versionSeriesId,
Node parent,
String name,
Long pos)
Creates a proxy for a version node.
|
Node |
checkIn(Node node,
String label,
String checkinComment)
Checks in a checked-out node: creates a new version with a copy of its information.
|
void |
checkOut(Node node)
Checks out a checked-in node.
|
Node |
copy(Node source,
Node parent,
String name)
Copies a node to a new location with a new name.
|
Map<String,String> |
getBinaryFulltext(Serializable id)
Gets the fulltext extracted from the binary fields.
|
Node |
getChildNode(Node parent,
String name,
boolean complexProp)
Gets a child node given its parent and name.
|
List<Node> |
getChildren(Node parent,
String name,
boolean complexProp)
Gets the children of a node.
|
Node |
getLastVersion(Serializable versionSeriesId)
Gets the last version for a given version series id.
|
Lock |
getLock(Serializable id)
Gets the lock state of a document.
|
Mapper |
getMapper()
Gets the low-level Mapper for this session.
|
Model |
getModel()
Gets the
Model associated to this session. |
Node |
getNodeById(Serializable id)
Gets a node given its id.
|
Node |
getNodeByPath(String path,
Node node)
Gets a node given its absolute path, or given an existing node and a relative path.
|
List<Node> |
getNodesByIds(List<Serializable> ids)
Gets several nodes given their ids.
|
Node |
getParentNode(Node node)
Gets the parent of a node.
|
String |
getPath(Node node)
Gets the absolute path of a node.
|
List<Node> |
getProxies(Node document,
Node parent)
Finds the proxies for a document.
|
String |
getRepositoryName()
Gets the session repository name.
|
Node |
getRootNode()
Gets the root node of the repository.
|
Node |
getVersionByLabel(Serializable versionSeriesId,
String label)
Gets a version given its version series id and label.
|
List<Node> |
getVersions(Serializable versionSeriesId)
Gets all the versions for a given version series id.
|
boolean |
hasChildNode(Node parent,
String name,
boolean complexProp)
Checks if a child node with the given name exists.
|
boolean |
hasChildren(Node parent,
boolean complexProp)
Checks it a node has children.
|
boolean |
isLive()
Checks if the session is live (not closed).
|
boolean |
isStateSharedByAllThreadSessions()
Returns
true if all sessions in the current thread share the same state. |
Node |
move(Node source,
Node parent,
String name)
Moves a node to a new location with a new name.
|
void |
orderBefore(Node parent,
Node source,
Node dest)
Order the given source child node before the destination child node.
|
PartialList<Serializable> |
query(String query,
QueryFilter queryFilter,
boolean countTotal)
Makes a NXQL query to the database.
|
PartialList<Serializable> |
query(String query,
String queryType,
QueryFilter queryFilter,
long countUpTo)
Makes a query to the database.
|
IterableQueryResult |
queryAndFetch(String query,
String queryType,
QueryFilter queryFilter,
Object... params)
Makes a query to the database and returns an iterable (which must be closed when done).
|
void |
rebuildReadAcls()
Rebuild the read ACLs for the whole repository.
|
Lock |
removeLock(Serializable id,
String owner,
boolean force)
Removes a lock from a document.
|
boolean |
removeMixinType(Node node,
String mixin)
Removes a mixin from a node.
|
void |
removeNode(Node node)
Removes a node from the storage.
|
void |
removePropertyNode(Node node)
Removes a property node from the storage.
|
void |
requireReadAclsUpdate()
Read ACLs are optimized ACLs for the read permission, they need to be updated after document creation or ACL
change.
|
void |
restore(Node node,
Node version)
Restores a node to a given version.
|
void |
save()
Saves the modifications to persistent storage.
|
Lock |
setLock(Serializable id,
Lock lock)
Sets a lock on a document.
|
void |
setProxyTarget(Node proxy,
Serializable targetId)
Sets a proxies' target.
|
void |
updateReadAcls()
Update only the read ACLs that have changed.
|
Mapper getMapper() throws StorageException
StorageException
boolean isLive()
true
if the session is liveboolean isStateSharedByAllThreadSessions()
true
if all sessions in the current thread share the same state.String getRepositoryName() throws StorageException
StorageException
Model getModel() throws StorageException
Model
associated to this session.StorageException
void save() throws StorageException
Modifications will be actually written only upon transaction commit.
StorageException
Node getRootNode() throws StorageException
StorageException
Node getNodeById(Serializable id) throws StorageException
id
- the idnull
if not foundStorageException
List<Node> getNodesByIds(List<Serializable> ids) throws StorageException
ids
- the idsnull
if not foundStorageException
Node getNodeByPath(String path, Node node) throws StorageException
path
- the pathnode
- the node (ignored for absolute paths)null
if not foundStorageException
boolean addMixinType(Node node, String mixin) throws StorageException
Does nothing if the mixin was already present on the node.
node
- the nodemixin
- the mixin nametrue
if the mixin was added, or false
if it is already presentStorageException
boolean removeMixinType(Node node, String mixin) throws StorageException
It's not possible to remove a mixin coming from the primary type.
node
- the nodemixin
- the mixintrue
if the mixin was removed, or false
if it isn't present or is present on the type or
does not existStorageException
Node getParentNode(Node node) throws StorageException
The root has a null
parent.
node
- the nodenull
for the root's parentStorageException
String getPath(Node node) throws StorageException
node
- the nodeStorageException
boolean hasChildNode(Node parent, String name, boolean complexProp) throws StorageException
There are two kinds of children, the regular children documents and the complex properties. The boolean
allows a choice between those.
parent
- the parent nodename
- the child namecomplexProp
- whether to check complex properties or regular childrentrue
if a child node with that name existsStorageException
Node getChildNode(Node parent, String name, boolean complexProp) throws StorageException
parent
- the parent nodename
- the child namecomplexProp
- whether to check complex properties or regular childrennull
is not foundStorageException
boolean hasChildren(Node parent, boolean complexProp) throws StorageException
parent
- the parent nodecomplexProp
- whether to check complex properties or regular childrentrue
if the parent has childrenStorageException
List<Node> getChildren(Node parent, String name, boolean complexProp) throws StorageException
parent
- the parent nodename
- the children name to get (for lists of complex properties), or null
for allcomplexProp
- whether to check complex properties or regular childrenStorageException
Node addChildNode(Node parent, String name, Long pos, String typeName, boolean complexProp) throws StorageException
parent
- the parent to which the child is addedname
- the child namepos
- the child position, or null
typeName
- the child typecomplexProp
- whether this is a complex property (true
) or a regular child (false
)StorageException
Node addChildNode(Serializable id, Node parent, String name, Long pos, String typeName, boolean complexProp) throws StorageException
id
- the idparent
- the parent to which the child is addedname
- the child namepos
- the child position, or null
typeName
- the child typecomplexProp
- whether this is a complex property (true
) or a regular child (false
)StorageException
Node addProxy(Serializable targetId, Serializable versionSeriesId, Node parent, String name, Long pos) throws StorageException
targetId
- the target idversionSeriesId
- the version series idparent
- the parent to which the proxy is addedname
- the proxy namepos
- the proxy positionStorageException
void setProxyTarget(Node proxy, Serializable targetId) throws StorageException
proxy
- the proxytargetId
- the new target idStorageException
void removeNode(Node node) throws StorageException
This is much more complex that removing a property node ( removePropertyNode(org.nuxeo.ecm.core.storage.sql.Node)
).
node
- the node to removeStorageException
#removePropertyNode}
void removePropertyNode(Node node) throws StorageException
This is much less complex that removing a generic document node ( removeNode(org.nuxeo.ecm.core.storage.sql.Node)
).
node
- the property node to removeStorageException
#removeNode}
void orderBefore(Node parent, Node source, Node dest) throws StorageException
null
, the source node will be appended at the end of the children
list.parent
- the parent nodesource
- the child node to movedest
- the child node before which to place the source node, or null
to move at the endStorageException
Node move(Node source, Node parent, String name) throws StorageException
A save()
is automatically done first.
source
- the node to moveparent
- the new parent to which the node is movedname
- the new node nameStorageException
Node copy(Node source, Node parent, String name) throws StorageException
A save()
is automatically done first.
source
- the node to copyparent
- the new parent to which the node is copiedname
- the new node nameStorageException
Node checkIn(Node node, String label, String checkinComment) throws StorageException
A save()
is automatically done first.
node
- the node to check inlabel
- the label for the versioncheckinComment
- the description for the versionStorageException
void checkOut(Node node) throws StorageException
node
- the node to check outStorageException
void restore(Node node, Node version) throws StorageException
The restored node is checked in.
node
- the node to restoreversion
- the version to restore fromStorageException
Node getVersionByLabel(Serializable versionSeriesId, String label) throws StorageException
versionSeriesId
- the version series idlabel
- the labelnull
if not foundStorageException
List<Node> getVersions(Serializable versionSeriesId) throws StorageException
A save()
is automatically done first.
versionSeriesId
- the version series idStorageException
Node getLastVersion(Serializable versionSeriesId) throws StorageException
A save()
is automatically done first.
versionSeriesId
- the version series idnull
if no versions existStorageException
List<Node> getProxies(Node document, Node parent) throws StorageException
If the document is a version, then only proxies to that version will be looked up.
Otherwise all proxies to the same version series than the document are retrieved.
A save()
is automatically done first.
document
- the documentparent
- the parent, or null
StorageException
PartialList<Serializable> query(String query, QueryFilter queryFilter, boolean countTotal) throws StorageException
query
- the queryqueryFilter
- the query filtercountTotal
- if true
, also count the total size without offset/limitStorageException
PartialList<Serializable> query(String query, String queryType, QueryFilter queryFilter, long countUpTo) throws StorageException
query
- the queryquery
- the query typequeryFilter
- the query filtercountUpTo
- if -1
, also count the total size without offset/limit.0
, don't count the total size.n
, count the total number if there are less than n documents otherwise set the size to
-1
.StorageException
IterableQueryResult queryAndFetch(String query, String queryType, QueryFilter queryFilter, Object... params) throws StorageException
query
- the queryqueryType
- the query typequeryFilter
- the query filterparams
- optional query-type-dependent parametersStorageException
Lock getLock(Serializable id)
If the document does not exist, null
is returned.
id
- the document idnull
when there is no lockLock setLock(Serializable id, Lock lock)
If the document is already locked, returns its existing lock status (there is no re-locking, removeLock(java.io.Serializable, java.lang.String, boolean)
must be called first).
id
- the document idlock
- the lock object to setnull
if locking succeeded, or the existing lock if locking failedLock removeLock(Serializable id, String owner, boolean force)
The previous lock is returned.
If owner
is null
then the lock is unconditionally removed.
If owner
is not null
, it must match the existing lock owner for the lock to be removed. If it
doesn't match, the returned lock will return true
for Lock.getFailed()
.
id
- the document idthe
- owner to check, or null
for no checkforce
- true
to just do the remove and not return the previous lockvoid requireReadAclsUpdate()
This method flag the current session, the read ACLs update will be done automatically at save time.
void updateReadAcls() throws StorageException
StorageException
void rebuildReadAcls() throws StorageException
StorageException
Map<String,String> getBinaryFulltext(Serializable id) throws StorageException
StorageException
Copyright © 2015 Nuxeo SA. All rights reserved.