Interface Session
-
- All Known Subinterfaces:
CRXSession
,JackrabbitSession
,XASession
- All Known Implementing Classes:
AbstractSession
public interface Session
TheSession
object provides read and (in level 2) write access to the content of a particular workspace in the repository.The
Session
object is returned byRepository.login()
. It encapsulates both the authorization settings of a particular user (as specified by the passedCredentials
) and a binding to the workspace specified by theworkspaceName
passed onlogin
.Each
Session
object is associated one-to-one with aWorkspace
object. TheWorkspace
object represents a "view" of an actual repository workspace entity as seen through the authorization settings of its associatedSession
.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ACTION_ADD_NODE
A constant representing theadd_node
action string, used to determine if thisSession
has permission to add a new node.static java.lang.String
ACTION_READ
A constant representing theread
action string, used to determine if thisSession
has permission to retrieve an item (and read the value, in the case of a property).static java.lang.String
ACTION_REMOVE
A constant representing theremove
action string, used to determine if thisSession
has permission to remove an item.static java.lang.String
ACTION_SET_PROPERTY
A constant representing theset_property
action string, used to determine if thisSession
has permission to set (add or modify) a property.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addLockToken(java.lang.String lt)
Deprecated.As of JCR 2.0,LockManager.addLockToken(String)
should be used instead.void
checkPermission(java.lang.String absPath, java.lang.String actions)
Determines whether thisSession
has permission to perform the specified actions at the specifiedabsPath
.void
exportDocumentView(java.lang.String absPath, java.io.OutputStream out, boolean skipBinary, boolean noRecurse)
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
as an XML stream and outputs it to the suppliedOutputStream
.void
exportDocumentView(java.lang.String absPath, org.xml.sax.ContentHandler contentHandler, boolean skipBinary, boolean noRecurse)
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
into a series of SAX events by calling the methods of the suppliedorg.xml.sax.ContentHandler
.void
exportSystemView(java.lang.String absPath, java.io.OutputStream out, boolean skipBinary, boolean noRecurse)
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
as an XML stream and outputs it to the suppliedOutputStream
.void
exportSystemView(java.lang.String absPath, org.xml.sax.ContentHandler contentHandler, boolean skipBinary, boolean noRecurse)
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
into a series of SAX events by calling the methods of the suppliedorg.xml.sax.ContentHandler
.AccessControlManager
getAccessControlManager()
Returns the access control manager for thisSession
.java.lang.Object
getAttribute(java.lang.String name)
Returns the value of the named attribute as anObject
, ornull
if no attribute of the given name exists.java.lang.String[]
getAttributeNames()
Returns the names of the attributes set in this session as a result of theCredentials
that were used to acquire it.org.xml.sax.ContentHandler
getImportContentHandler(java.lang.String parentAbsPath, int uuidBehavior)
Returns anorg.xml.sax.ContentHandler
which is used to push SAX events to the repository.Item
getItem(java.lang.String absPath)
Returns the node at the specified absolute path in the workspace.java.lang.String[]
getLockTokens()
Deprecated.As of JCR 2.0,LockManager.getLockTokens()
should be used instead.java.lang.String
getNamespacePrefix(java.lang.String uri)
Returns the prefix to which the givenuri
is mapped as currently set in thisSession
.java.lang.String[]
getNamespacePrefixes()
Returns all prefixes currently mapped to URIs in thisSession
.java.lang.String
getNamespaceURI(java.lang.String prefix)
Returns the URI to which the givenprefix
is mapped as currently set in thisSession
.Node
getNode(java.lang.String absPath)
Returns the node at the specified absolute path in the workspace.Node
getNodeByIdentifier(java.lang.String id)
Returns the node specified by the given identifier.Node
getNodeByUUID(java.lang.String uuid)
Deprecated.As of JCR 2.0,getNodeByIdentifier(String)
should be used instead.Property
getProperty(java.lang.String absPath)
Returns the property at the specified absolute path in the workspace.Repository
getRepository()
Returns theRepository
object through which this session was acquired.RetentionManager
getRetentionManager()
Returns the retention and hold manager for thisSession
.Node
getRootNode()
Returns the root node of the workspace, "/".java.lang.String
getUserID()
Gets the user ID associated with thisSession
.ValueFactory
getValueFactory()
This method returns aValueFactory
that is used to createValue
objects for use when setting repository properties.Workspace
getWorkspace()
Returns theWorkspace
attached to thisSession
.boolean
hasCapability(java.lang.String methodName, java.lang.Object target, java.lang.Object[] arguments)
Checks whether an operation can be performed given as much context as can be determined by the repository, including: Permissions granted to the current user, including access control privileges.boolean
hasPendingChanges()
Returnstrue
if this session holds pending (that is, unsaved) changes; otherwise returnsfalse
.boolean
hasPermission(java.lang.String absPath, java.lang.String actions)
Returnstrue
if thisSession
has permission to perform the specified actions at the specifiedabsPath
andfalse
otherwise.Session
impersonate(Credentials credentials)
Returns a new session in accordance with the specified (new) Credentials.void
importXML(java.lang.String parentAbsPath, java.io.InputStream in, int uuidBehavior)
Deserializes an XML document and adds the resulting item subgraph as a child of the node atparentAbsPath
.boolean
isLive()
Returnstrue
if thisSession
object is usable by the client.boolean
itemExists(java.lang.String absPath)
Returnstrue
if an item exists atabsPath
and thisSession
has read access to it; otherwise returnsfalse
.void
logout()
Releases all resources associated with thisSession
.void
move(java.lang.String srcAbsPath, java.lang.String destAbsPath)
Moves the node atsrcAbsPath
(and its entire subgraph) to the new location atdestAbsPath
.boolean
nodeExists(java.lang.String absPath)
Returnstrue
if a node exists atabsPath
and thisSession
has read access to it; otherwise returnsfalse
.boolean
propertyExists(java.lang.String absPath)
Returnstrue
if a property exists atabsPath
and thisSession
has read access to it; otherwise returnsfalse
.void
refresh(boolean keepChanges)
IfkeepChanges
isfalse
, this method discards all pending changes currently recorded in thisSession
and returns all items to reflect the current saved state.void
removeItem(java.lang.String absPath)
Removes the specified item and its subgraph.void
removeLockToken(java.lang.String lt)
Deprecated.As of JCR 2.0,LockManager.removeLockToken(String)
should be used instead.void
save()
Validates all pending changes currently recorded in thisSession
.void
setNamespacePrefix(java.lang.String prefix, java.lang.String uri)
Within the scope of thisSession
, this method mapsuri
toprefix
.
-
-
-
Field Detail
-
ACTION_READ
static final java.lang.String ACTION_READ
A constant representing theread
action string, used to determine if thisSession
has permission to retrieve an item (and read the value, in the case of a property).- Since:
- JCR 2.0
- See Also:
hasPermission(String, String)
,checkPermission(String, String)
, Constant Field Values
-
ACTION_ADD_NODE
static final java.lang.String ACTION_ADD_NODE
A constant representing theadd_node
action string, used to determine if thisSession
has permission to add a new node.- Since:
- JCR 2.0
- See Also:
hasPermission(String, String)
,checkPermission(String, String)
, Constant Field Values
-
ACTION_SET_PROPERTY
static final java.lang.String ACTION_SET_PROPERTY
A constant representing theset_property
action string, used to determine if thisSession
has permission to set (add or modify) a property.- Since:
- JCR 2.0
- See Also:
hasPermission(String, String)
,checkPermission(String, String)
, Constant Field Values
-
ACTION_REMOVE
static final java.lang.String ACTION_REMOVE
A constant representing theremove
action string, used to determine if thisSession
has permission to remove an item.- Since:
- JCR 2.0
- See Also:
hasPermission(String, String)
,checkPermission(String, String)
, Constant Field Values
-
-
Method Detail
-
getRepository
Repository getRepository()
Returns theRepository
object through which this session was acquired.- Returns:
- a
object.Repository
-
getUserID
java.lang.String getUserID()
Gets the user ID associated with thisSession
. How the user ID is set is up to the implementation, it may be a string passed in as part of the credentials or it may be a string acquired in some other way. This method is free to return an "anonymous user ID" ornull
.- Returns:
- the user ID associated with this
Session
.
-
getAttributeNames
java.lang.String[] getAttributeNames()
Returns the names of the attributes set in this session as a result of theCredentials
that were used to acquire it. Not allCredentials
implementations will contain attributes (though, for example,SimpleCredentials
does allow for them). This method returns an empty array if theCredentials
instance did not provide attributes.- Returns:
- A string array containing the names of all attributes passed in the credentials used to acquire this session.
-
getAttribute
java.lang.Object getAttribute(java.lang.String name)
Returns the value of the named attribute as anObject
, ornull
if no attribute of the given name exists. SeegetAttributeNames()
.- Parameters:
name
- the name of an attribute passed in the credentials used to acquire this session.- Returns:
- the value of the attribute or
null
if no attribute of the given name exists.
-
getWorkspace
Workspace getWorkspace()
Returns theWorkspace
attached to thisSession
.- Returns:
- a
object.Workspace
-
getRootNode
Node getRootNode() throws RepositoryException
Returns the root node of the workspace, "/". This node is the main access point to the content of the workspace.- Returns:
- The root node of the workspace: a
object.Node
- Throws:
RepositoryException
- if an error occurs.
-
impersonate
Session impersonate(Credentials credentials) throws LoginException, RepositoryException
Returns a new session in accordance with the specified (new) Credentials. Allows the current user to "impersonate" another using incomplete or relaxed credentials requirements (perhaps including a user name but no password, for example), assuming that thisSession
gives them that permission.The new
Session
is tied to a newWorkspace
instance. In other words,Workspace
instances are not re-used. However, theWorkspace
instance returned represents the same actual persistent workspace entity in the repository as is represented by theWorkspace
object tied to thisSession
.- Parameters:
credentials
- ACredentials
object- Returns:
- a
Session
object - Throws:
LoginException
- if the current session does not have sufficient access to perform the operation.RepositoryException
- if another error occurs.
-
getNodeByUUID
Node getNodeByUUID(java.lang.String uuid) throws ItemNotFoundException, RepositoryException
Deprecated.As of JCR 2.0,getNodeByIdentifier(String)
should be used instead.Returns the node specified by the given UUID. Only applies to nodes that expose a UUID, in other words, those of mixin node typemix:referenceable
- Parameters:
uuid
- A universally unique identifier.- Returns:
- A
Node
. - Throws:
ItemNotFoundException
- if the specified UUID is not found.RepositoryException
- if another error occurs.
-
getNodeByIdentifier
Node getNodeByIdentifier(java.lang.String id) throws ItemNotFoundException, RepositoryException
Returns the node specified by the given identifier. Applies to both referenceable and non-referenceable nodes.- Parameters:
id
- An identifier.- Returns:
- A
Node
. - Throws:
ItemNotFoundException
- if no node with the specified identifier exists or if thisSession
does not have read access to the node with the specified identifier.
RepositoryException
- if another error occurs.- Since:
- JCR 2.0
-
getItem
Item getItem(java.lang.String absPath) throws PathNotFoundException, RepositoryException
Returns the node at the specified absolute path in the workspace. If no such node exists, then it returns the property at the specified path.This method should only be used if the application does not know whether the item at the indicated path is property or node. In cases where the application has this information, either
getNode(java.lang.String)
orgetProperty(java.lang.String)
should be used, as appropriate. In many repository implementations the node and property-specific methods are likely to be more efficient thangetItem
.- Parameters:
absPath
- An absolute path.- Returns:
- the specified
Item
. - Throws:
PathNotFoundException
- if no accessible item is found at the specified path.RepositoryException
- if another error occurs.
-
getNode
Node getNode(java.lang.String absPath) throws PathNotFoundException, RepositoryException
Returns the node at the specified absolute path in the workspace.- Parameters:
absPath
- An absolute path.- Returns:
- the specified
Node
. - Throws:
PathNotFoundException
- If no accessible node is found at the specifed path.RepositoryException
- If another error occurs.- Since:
- JCR 2.0
-
getProperty
Property getProperty(java.lang.String absPath) throws PathNotFoundException, RepositoryException
Returns the property at the specified absolute path in the workspace.- Parameters:
absPath
- An absolute path.- Returns:
- the specified
Property
. - Throws:
PathNotFoundException
- If no accessible property is found at the specified path.RepositoryException
- if another error occurs.- Since:
- JCR 2.0
-
itemExists
boolean itemExists(java.lang.String absPath) throws RepositoryException
Returnstrue
if an item exists atabsPath
and thisSession
has read access to it; otherwise returnsfalse
.- Parameters:
absPath
- An absolute path.- Returns:
- a
boolean
- Throws:
RepositoryException
- ifabsPath
is not a well-formed absolute path.
-
nodeExists
boolean nodeExists(java.lang.String absPath) throws RepositoryException
Returnstrue
if a node exists atabsPath
and thisSession
has read access to it; otherwise returnsfalse
.- Parameters:
absPath
- An absolute path.- Returns:
- a
boolean
- Throws:
RepositoryException
- ifabsPath
is not a well-formed absolute path.- Since:
- JCR 2.0
-
propertyExists
boolean propertyExists(java.lang.String absPath) throws RepositoryException
Returnstrue
if a property exists atabsPath
and thisSession
has read access to it; otherwise returnsfalse
.- Parameters:
absPath
- An absolute path.- Returns:
- a
boolean
- Throws:
RepositoryException
- ifabsPath
is not a well-formed absolute path.- Since:
- JCR 2.0
-
move
void move(java.lang.String srcAbsPath, java.lang.String destAbsPath) throws ItemExistsException, PathNotFoundException, VersionException, ConstraintViolationException, LockException, RepositoryException
Moves the node atsrcAbsPath
(and its entire subgraph) to the new location atdestAbsPath
.This is a session-write method and therefor requires a
save
to dispatch the change.The identifiers of referenceable nodes must not be changed by a
move
. The identifiers of non-referenceable nodes may change.A
ConstraintViolationException
is thrown either immediately, on dispatch or on persist, if performing this operation would violate a node type or implementation-specific constraint. Implementations may differ on when this validation is performed.As well, a
ConstraintViolationException
will be thrown on persist if an attempt is made to separatelysave
either the source or destination node.Note that this behavior differs from that of
Workspace.move(java.lang.String, java.lang.String)
, which is a workspace-write method and therefore immediately dispatches changes.The
destAbsPath
provided must not have an index on its final element. If ordering is supported by the node type of the parent node of the new location, then the newly moved node is appended to the end of the child node list.This method cannot be used to move an individual property by itself. It moves an entire node and its subgraph.
If no node exists at
srcAbsPath
or no node exists one level abovedestAbsPath
(in other words, there is no node that will serve as the parent of the moved item) then aPathNotFoundException
is thrown either immediately, on dispatch or on persist. Implementations may differ on when this validation is performed.An
ItemExistsException
is thrown either immediately, on dispatch or on persist, if a node already exists atdestAbsPath
and same-name siblings are not allowed. Implementations may differ on when this validation is performed.Note that if a property already exists at
destAbsPath
, the operation succeeds, since a node may have a child node and property with the same name.A
VersionException
is thrown either immediately, on dispatch or on persist, if the parent node ofdestAbsPath
or the parent node ofsrcAbsPath] is read-only due to a checked-in node. Implementations may differ on when this validation is performed.
A
LockException
is thrown either immediately, on dispatch or on persist, if a lock prevents themove
. Implementations may differ on when this validation is performed.- Parameters:
srcAbsPath
- the root of the subgraph to be moved.destAbsPath
- the location to which the subgraph is to be moved.- Throws:
ItemExistsException
- if a node already exists atdestAbsPath
and same-name siblings are not allowed.PathNotFoundException
- if eithersrcAbsPath
ordestAbsPath
cannot be found and this implementation performs this validation immediately.VersionException
- if the parent node ofdestAbsPath
or the parent node ofsrcAbsPath
is versionable and checked-in, or or is non-versionable and its nearest versionable ancestor is checked-in and this implementation performs this validation immediately.ConstraintViolationException
- if a node-type or other constraint violation is detected immediately and this implementation performs this validation immediately.LockException
- if the move operation would violate a lock and this implementation performs this validation immediately.RepositoryException
- if the last element ofdestAbsPath
has an index or if another error occurs.
-
removeItem
void removeItem(java.lang.String absPath) throws VersionException, LockException, ConstraintViolationException, AccessDeniedException, RepositoryException
Removes the specified item and its subgraph.This is a session-write method and therefore requires a
save
in order to dispatch the change.If a node with same-name siblings is removed, this decrements by one the indices of all the siblings with indices greater than that of the removed node. In other words, a removal compacts the array of same-name siblings and causes the minimal re-numbering required to maintain the original order but leave no gaps in the numbering.
A
ReferentialIntegrityException
will be thrown on dispatch if the specified item or an item in its subgraph is currently the target of aREFERENCE
property located in this workspace but outside the specified item's subgraph and the currentSession
has read access to thatREFERENCE
property.A
ConstraintViolationException
will be thrown either immediately, on dispatch or on persist, if removing the specified item would violate a node type or implementation-specific constraint. Implementations may differ on when this validation is performed.A
VersionException
will be thrown either immediately, on dispatch or on persist, if the parent node of the specified item is read-only due to a checked-in node. Implementations may differ on when this validation is performed.A
LockException
will be thrown either immediately, on dispatch or on persist, if a lock prevents the removal of the specified item. Implementations may differ on when this validation is performed.A
PathNotFoundException
will be thrown either immediately, on dispatch or on persist, if no accessible item is found at atabsPath
.A
AccessDeniedException
will be thrown either immediately, on dispatch or on persist, if the specified item or an item in its subgraph is currently the target of aREFERENCE
property located in this workspace but outside the specified item's subgraph and the currentSession
does not have read access to thatREFERENCE
property.- Parameters:
absPath
- the absolute path of the item to be removed.- Throws:
VersionException
- if the parent node of the item at absPath is read-only due to a checked-in node and this implementation performs this validation immediately.LockException
- if a lock prevents the removal of the specified item and this implementation performs this validation immediately.ConstraintViolationException
- if removing the specified item would violate a node type or implementation-specific constraint and this implementation performs this validation immediately.PathNotFoundException
- if no accessible item is found atabsPath
and this implementation performs this validation immediately.AccessDeniedException
- if the specified item or an item in its subgraph is currently the target of aREFERENCE
property located in this workspace but outside the specified item's subgraph and the currentSession
does not have read access to thatREFERENCE
property and this implementation performs this validation immediately.RepositoryException
- if another error occurs.- Since:
- JCR 2.0
- See Also:
Item.remove()
-
save
void save() throws AccessDeniedException, ItemExistsException, ReferentialIntegrityException, ConstraintViolationException, InvalidItemStateException, VersionException, LockException, NoSuchNodeTypeException, RepositoryException
Validates all pending changes currently recorded in thisSession
. If validation of all pending changes succeeds, then this change information is cleared from theSession
.If the
save
occurs outside a transaction, the changes are dispatched and persisted. Upon being persisted the changes become potentially visible to otherSessions
bound to the same persitent workspace.If the
save
occurs within a transaction, the changes are dispatched but are not persisted until the transaction is committed.If validation fails, then no pending changes are dispatched and they remain recorded on the
Session
. There is no best-effort or partialsave
.- Throws:
AccessDeniedException
- if any of the changes to be persisted would violate the access privileges of the thisSession
. Also thrown if any of the changes to be persisted would cause the removal of a node that is currently referenced by aREFERENCE
property that this Session does not have read access to.ItemExistsException
- if any of the changes to be persisted would be prevented by the presence of an already existing item in the workspace.ConstraintViolationException
- if any of the changes to be persisted would violate a node type or restriction. Additionally, a repository may use this exception to enforce implementation- or configuration-dependent restrictions.InvalidItemStateException
- if any of the changes to be persisted conflicts with a change already persisted through another session and the implementation is such that this conflict can only be detected atsave
-time and therefore was not detected earlier, at change-time.ReferentialIntegrityException
- if any of the changes to be persisted would cause the removal of a node that is currently referenced by aREFERENCE
property that thisSession
has read access to.VersionException
- if thesave
would make a result in a change to persistent storage that would violate the read-only status of a checked-in node.LockException
- if thesave
would result in a change to persistent storage that would violate a lock.NoSuchNodeTypeException
- if thesave
would result in the addition of a node with an unrecognized node type.RepositoryException
- if another error occurs.
-
refresh
void refresh(boolean keepChanges) throws RepositoryException
IfkeepChanges
isfalse
, this method discards all pending changes currently recorded in thisSession
and returns all items to reflect the current saved state. Outside a transaction this state is simply the current state of persistent storage. Within a transaction, this state will reflect persistent storage as modified by changes that have been saved but not yet committed.If
keepChanges
is true then pending change are not discarded but items that do not have changes pending have their state refreshed to reflect the current saved state, thus revealing changes made by other sessions.- Parameters:
keepChanges
- a boolean- Throws:
RepositoryException
- if an error occurs.
-
hasPendingChanges
boolean hasPendingChanges() throws RepositoryException
Returnstrue
if this session holds pending (that is, unsaved) changes; otherwise returnsfalse
.- Returns:
- a boolean
- Throws:
RepositoryException
- if an error occurs
-
getValueFactory
ValueFactory getValueFactory() throws UnsupportedRepositoryOperationException, RepositoryException
This method returns aValueFactory
that is used to createValue
objects for use when setting repository properties.- Returns:
- a
ValueFactory
- Throws:
UnsupportedRepositoryOperationException
- if writing to the repository is not supported.RepositoryException
- if another error occurs.
-
hasPermission
boolean hasPermission(java.lang.String absPath, java.lang.String actions) throws RepositoryException
Returnstrue
if thisSession
has permission to perform the specified actions at the specifiedabsPath
andfalse
otherwise.The
actions
parameter is a comma separated list of action strings. The following action strings are defined:-
: Ifadd_node
hasPermission(path, "add_node")
returnstrue
, then thisSession
has permission to add a node atpath
. -
: Ifset_property
hasPermission(path, "set_property")
returnstrue
, then thisSession
has permission to set (add or change) a property atpath
. -
: Ifremove
hasPermission(path, "remove")
returnstrue
, then thisSession
has permission to remove an item atpath
. -
: Ifread
hasPermission(path, "read")
returnstrue
, then thisSession
has permission to retrieve (and read the value of, in the case of a property) an item atpath
.
actions
parameter, this method will only returntrue
if thisSession
has permission to perform all of the listed actions at the specified path.The information returned through this method will only reflect the access control status (both JCR defined and implementation-specific) and not other restrictions that may exist, such as node type constraints. For example, even though
hasPermission
may indicate that a particularSession
may add a property at/A/B/C
, the node type of the node at/A/B
may prevent the addition of a property calledC
.- Parameters:
absPath
- an absolute path.actions
- a comma separated list of action strings.- Returns:
true
if thisSession
has permission to perform the specified actions at the specifiedabsPath
.- Throws:
RepositoryException
- if an error occurs.- Since:
- JCR 2.0
-
-
checkPermission
void checkPermission(java.lang.String absPath, java.lang.String actions) throws java.security.AccessControlException, RepositoryException
Determines whether thisSession
has permission to perform the specified actions at the specifiedabsPath
. This method quietly returns if the access request is permitted, or throws a suitablejava.security.AccessControlException
otherwise.The
actions
parameter is a comma separated list of action strings. The following action strings are defined:-
: Ifadd_node
checkPermission(path, "add_node")
returns quietly, then thisSession
has permission to add a node atpath
, otherwise permission is denied. -
: Ifset_property
checkPermission(path, "set_property")
returns quietly, then thisSession
has permission to set (add or change) a property atpath
, otherwise permission is denied. -
: Ifremove
checkPermission(path, "remove")
returns quietly, then thisSession
has permission to remove an item atpath
, otherwise permission is denied. -
: Ifread
checkPermission(path, "read")
returns quietly, then thisSession
has permission to retrieve (and read the value of, in the case of a property) an item atpath
, otherwise permission is denied.
actions
parameter, this method will only return quietly if thisSession
has permission to perform all of the listed actions at the specified path.The information returned through this method will only reflect access control status (both JCR defined and implementation-specific) and not other restrictions that may exist, such as node type constraints. For example, even though
checkPermission
may indicate that a particularSession
may add a property at/A/B/C
, the node type of the node at/A/B
may prevent the addition of a property calledC
.- Parameters:
absPath
- an absolute path.actions
- a comma separated list of action strings.- Throws:
java.security.AccessControlException
- If permission is denied.RepositoryException
- if another error occurs.
-
-
hasCapability
boolean hasCapability(java.lang.String methodName, java.lang.Object target, java.lang.Object[] arguments) throws RepositoryException
Checks whether an operation can be performed given as much context as can be determined by the repository, including:- Permissions granted to the current user, including access control privileges.
- Current state of the target object (reflecting locks, checkin/checkout status, retention and hold status etc.).
- Repository capabilities.
- Node type-enforced restrictions.
- Repository configuration-specific restrictions.
false
guarantees that the operation cannot be performed, but returningtrue
does not guarantee the opposite. The repository implementation should use this to give priority to performance over completeness. An exception should be thrown only for important failures such as loss of connectivity to the back-end.The implementation of this method is best effort: returning false guarantees that the operation cannot be performed, but returning true does not guarantee the opposite.
The
methodName
parameter identifies the method in question by its name as defined in the Javadoc.The
target
parameter identifies the object on which the specified method is called.The
arguments
parameter contains an array of typeObject
object consisting of the arguments to be passed to the method in question. In cases where a parameter is a Java primitive type it must be converted to its corresponding Java object form.For example, given a
Session
S
andNode
N
thenboolean b = S.hasCapability("addNode", N, new Object[]{"foo"});
will result in
b == false
if a child node calledfoo
cannot be added to the nodeN
within the sessionS
.- Parameters:
methodName
- the nakme of the method.target
- the target object of the operation.arguments
- the arguments of the operation.- Returns:
false
if the operation cannot be performed,true
if the operation can be performed or if the repository cannot determine whether the operation can be performed.- Throws:
RepositoryException
- if an error occurs- Since:
- JCR 2.0
-
getImportContentHandler
org.xml.sax.ContentHandler getImportContentHandler(java.lang.String parentAbsPath, int uuidBehavior) throws PathNotFoundException, ConstraintViolationException, VersionException, LockException, RepositoryException
Returns anorg.xml.sax.ContentHandler
which is used to push SAX events to the repository. If the incoming XML (in the form of SAX events) does not appear to be a JCR system view XML document then it is interpreted as a JCR document view XML document.The incoming XML is deserialized into a subgraph of items immediately below the node at
parentAbsPath
.This method simply returns the
ContentHandler
without altering the state of the session; the actual deserialization to the session transient space is done through the methods of theContentHandler
. Invalid XML data will cause theContentHandler
to throw aSAXException
.As SAX events are fed into the
ContentHandler
, the tree of new items is built in the transient storage of the session. In order to dispatch the new content,save
must be called. SeeWorkspace.getImportContentHandler(java.lang.String, int)
for a workspace-write version of this method.The flag
uuidBehavior
governs how the identifiers of incoming nodes are handled:-
ImportUUIDBehavior.IMPORT_UUID_CREATE_NEW
: Incoming identifiers nodes are added in the same way that new node is added withNode.addNode
. That is, they are either assigned newly created identifiers upon addition or uponsave
(depending on the implementation). In either case, identifier collisions will not occur. -
ImportUUIDBehavior.IMPORT_UUID_COLLISION_REMOVE_EXISTING
: If an incoming node has the same identifier as a node already existing in the workspace then the already existing node (and its subgraph) is removed from wherever it may be in the workspace before the incoming node is added. Note that this can result in nodes "disappearing" from locations in the workspace that are remote from the location to which the incoming subgraph is being written. Both the removal and the new addition will be persisted onsave
. -
ImportUUIDBehavior.IMPORT_UUID_COLLISION_REPLACE_EXISTING
: If an incoming node has the same identifier as a node already existing in the workspace, then the already-existing node is replaced by the incoming node in the same position as the existing node. Note that this may result in the incoming subgraph being disaggregated and "spread around" to different locations in the workspace. In the most extreme case this behavior may result in no node at all being added as child ofparentAbsPath
. This will occur if the topmost element of the incoming XML has the same identifier as an existing node elsewhere in the workspace. The change will be persisted onsave
. -
ImportUUIDBehavior.IMPORT_UUID_COLLISION_THROW
: If an incoming node has the same identifier as a node already existing in the workspace then aSAXException
is thrown by theContentHandler
during deserialization.
Workspace.getImportContentHandler
, this method does not necessarily enforce all node type constraints during deserialization. Those that would be immediately enforced in a session-write method (Node.addNode
,Node.setProperty
etc.) of this implementation cause the returnedContentHandler
to throw an immediateSAXException
during deserialization. All other constraints are checked on save, just as they are in normal write operations. However, which node type constraints are enforced depends upon whether node type information in the imported data is respected, and this is an implementation-specific issue.A
SAXException
will also be thrown by the returnedContentHandler
during deserialization ifuuidBehavior
is set toIMPORT_UUID_COLLISION_REMOVE_EXISTING
and an incoming node has the same identifier as the node atparentAbsPath
or one of its ancestors.A
PathNotFoundException
is thrown either immediately, on dispatch or on persist, if no node exists atparentAbsPath
. Implementations may differ on when this validation is performedA
ConstraintViolationException
is thrown either immediately, on dispatch or on persist, if the new subgraph cannot be added to the node atparentAbsPath
due to node-type or other implementation-specific constraints, and this can be determined before the first SAX event is sent. Implementations may differ on when this validation is performed.A
VersionException
is thrown either immediately, on dispatch or on persist, if the node atparentAbsPath
is read-only due to a check-in. Implementations may differ on when this validation is performed.A
LockException
is thrown either immediately, on dispatch or on persist, if a lock prevents the addition of the subgraph. Implementations may differ on when this validation is performed.- Parameters:
parentAbsPath
- the absolute path of a node under which (as child) the imported subgraph will be built.uuidBehavior
- a four-value flag that governs how incoming identifiers are handled.- Returns:
- an org.xml.sax.ContentHandler whose methods may be called to feed SAX events into the deserializer.
- Throws:
PathNotFoundException
- if no node exists atparentAbsPath
and this implementation performs this validation immediately.ConstraintViolationException
- if the new subgraph cannot be added to the node atparentAbsPath
due to node-type or other implementation-specific constraints, and this implementation performs this validation immediately.VersionException
- if the node atparentAbsPath
is read-only due to a checked-in node and this implementation performs this validation immediately.LockException
- if a lock prevents the addition of the subgraph and this implementation performs this validation immediately.RepositoryException
- if another error occurs.
-
-
importXML
void importXML(java.lang.String parentAbsPath, java.io.InputStream in, int uuidBehavior) throws java.io.IOException, PathNotFoundException, ItemExistsException, ConstraintViolationException, VersionException, InvalidSerializedDataException, LockException, RepositoryException
Deserializes an XML document and adds the resulting item subgraph as a child of the node atparentAbsPath
.If the incoming XML stream does not appear to be a JCR system view XML document then it is interpreted as a document view XML document.
The passed
InputStream
is closed before this method returns either normally or because of an exception.The tree of new items is built in the transient storage of the
Session
. In order to persist the new content,save
must be called. The advantage of this through-the-session method is that (depending on what constraint checks the implementation leaves untilsave
) structures that violate node type constraints can be imported, fixed and then saved. The disadvantage is that a large import will result in a large cache of pending nodes in the session. SeeWorkspace.importXML(java.lang.String, java.io.InputStream, int)
for a version of this method that does not go through theSession
.The flag
uuidBehavior
governs how the identifiers of incoming nodes are handled. There are four options:-
ImportUUIDBehavior.IMPORT_UUID_CREATE_NEW
: Incoming nodes are added in the same way that new node is added withNode.addNode
. That is, they are either assigned newly created identifiers upon addition or uponsave
(depending on the implementation, see 4.9.1.1 When Identifiers are Assigned in the specification). In either case, identifier collisions will not occur. -
ImportUUIDBehavior.IMPORT_UUID_COLLISION_REMOVE_EXISTING
: If an incoming node has the same identifier as a node already existing in the workspace then the already existing node (and its subgraph) is removed from wherever it may be in the workspace before the incoming node is added. Note that this can result in nodes "disappearing" from locations in the workspace that are remote from the location to which the incoming subgraph is being written. Both the removal and the new addition will be dispatched onsave
. -
ImportUUIDBehavior.IMPORT_UUID_COLLISION_REPLACE_EXISTING
: If an incoming node has the same identifier as a node already existing in the workspace, then the already-existing node is replaced by the incoming node in the same position as the existing node. Note that this may result in the incoming subgraph being disaggregated and "spread around" to different locations in the workspace. In the most extreme case this behavior may result in no node at all being added as child ofparentAbsPath
. This will occur if the topmost element of the incoming XML has the same identifier as an existing node elsewhere in the workspace. The change will be dispatched onsave
. -
ImportUUIDBehavior.IMPORT_UUID_COLLISION_THROW
: If an incoming node has the same identifier as a node already existing in the workspace then anItemExistsException
is thrown.
Workspace.importXML(java.lang.String, java.io.InputStream, int)
, this method does not necessarily enforce all node type constraints during deserialization. Those that would be immediately enforced in a normal write method (Node.addNode
,Node.setProperty
etc.) of this implementation cause an immediateConstraintViolationException
during deserialization. All other constraints are checked onsave
, just as they are in normal write operations. However, which node type constraints are enforced depends upon whether node type information in the imported data is respected, and this is an implementation-specific issue.A
ConstraintViolationException
will also be thrown immediately ifuuidBehavior
is set toIMPORT_UUID_COLLISION_REMOVE_EXISTING
and an incoming node has the same identifier as the node atparentAbsPath
or one of its ancestors.A
PathNotFoundException
is thrown either immediately, on dispatch or on persist, if no node exists atparentAbsPath
. Implementations may differ on when this validation is performedA
ConstraintViolationException
is thrown either immediately, on dispatch or on persist, if the new subgraph cannot be added to the node atparentAbsPath
due to node-type or other implementation-specific constraints. Implementations may differ on when this validation is performed.A
VersionException
is thrown either immediately, on dispatch or on persist, if the node atparentAbsPath
is read-only due to a check-in. Implementations may differ on when this validation is performed.A
LockException
is thrown either immediately, on dispatch or on persist, if a lock prevents the addition of the subgraph. Implementations may differ on when this validation is performed.- Parameters:
parentAbsPath
- the absolute path of the node below which the deserialized subgraph is added.in
- TheInputstream
from which the XML to be deserialized is read.uuidBehavior
- a four-value flag that governs how incoming identifiers are handled.- Throws:
java.io.IOException
- if an error during an I/O operation occurs.PathNotFoundException
- if no node exists atparentAbsPath
and this implementation performs this validation immediately.ItemExistsException
- if deserialization would overwrite an existing item and this implementation performs this validation immediately.ConstraintViolationException
- if a node type or other implementation-specific constraint is violated that would be checked on a session-write method or ifuuidBehavior
is set toIMPORT_UUID_COLLISION_REMOVE_EXISTING
and an incoming node has the same UUID as the node atparentAbsPath
or one of its ancestors.VersionException
- if the node atparentAbsPath
is read-only due to a checked-in node and this implementation performs this validation immediately.InvalidSerializedDataException
- if incoming stream is not a valid XML document.LockException
- if a lock prevents the addition of the subgraph and this implementation performs this validation immediately.RepositoryException
- if another error occurs.
-
-
exportSystemView
void exportSystemView(java.lang.String absPath, org.xml.sax.ContentHandler contentHandler, boolean skipBinary, boolean noRecurse) throws PathNotFoundException, org.xml.sax.SAXException, RepositoryException
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
into a series of SAX events by calling the methods of the suppliedorg.xml.sax.ContentHandler
. The resulting XML is in the system view form. Note thatabsPath
must be the path of a node, not a property.If
skipBinary
is true then any properties ofPropertyType.BINARY
will be serialized as if they are empty. That is, the existence of the property will be serialized, but its content will not appear in the serialized output (the<sv:value>
element will have no content). Note that in the case of multi-valueBINARY
properties, the number of values in the property will be reflected in the serialized output, though they will all be empty. IfskipBinary
is false then the actual value(s) of eachBINARY
property is recorded using Base64 encoding.If
noRecurse
is true then only the node atabsPath
and its properties, but not its child nodes, are serialized. IfnoRecurse
isfalse
then the entire subgraph rooted atabsPath
is serialized.If the user lacks read access to some subsection of the specified tree, that section simply does not get serialized, since, from the user's point of view, it is not there.
The serialized output will reflect the state of the current workspace as modified by the state of this
Session
. This means that pending changes (regardless of whether they are valid according to node type constraints) and all namespace mappings in the namespace registry, as modified by the current session-mappings, are reflected in the output.The output XML will be encoded in UTF-8.
- Parameters:
absPath
- The path of the root of the subgraph to be serialized. This must be the path to a node, not a propertycontentHandler
- Theorg.xml.sax.ContentHandler
to which the SAX events representing the XML serialization of the subgraph will be output.skipBinary
- Aboolean
governing whether binary properties are to be serialized.noRecurse
- Aboolean
governing whether the subgraph at absPath is to be recursed.- Throws:
PathNotFoundException
- if no node exists atabsPath
.org.xml.sax.SAXException
- if an error occurs while feeding events to theorg.xml.sax.ContentHandler
.RepositoryException
- if another error occurs.
-
exportSystemView
void exportSystemView(java.lang.String absPath, java.io.OutputStream out, boolean skipBinary, boolean noRecurse) throws java.io.IOException, PathNotFoundException, RepositoryException
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
as an XML stream and outputs it to the suppliedOutputStream
. The resulting XML is in the system view form. Note thatabsPath
must be the path of a node, not a property.If
skipBinary
is true then any properties ofPropertyType.BINARY
will be serialized as if they are empty. That is, the existence of the property will be serialized, but its content will not appear in the serialized output (the<sv:value>
element will have no content). Note that in the case of multi-valueBINARY
properties, the number of values in the property will be reflected in the serialized output, though they will all be empty. IfskipBinary
is false then the actual value(s) of eachBINARY
property is recorded using Base64 encoding.If
noRecurse
is true then only the node atabsPath
and its properties, but not its child nodes, are serialized. IfnoRecurse
isfalse
then the entire subgraph rooted atabsPath
is serialized.If the user lacks read access to some subsection of the specified tree, that section simply does not get serialized, since, from the user's point of view, it is not there.
The serialized output will reflect the state of the current workspace as modified by the state of this
Session
. This means that pending changes (regardless of whether they are valid according to node type constraints) and all namespace mappings in the namespace registry, as modified by the current session-mappings, are reflected in the output.The output XML will be encoded in UTF-8.
It is the responsibility of the caller to close the passed
OutputStream
.- Parameters:
absPath
- The path of the root of the subgraph to be serialized. This must be the path to a node, not a propertyout
- TheOutputStream
to which the XML serialization of the subgraph will be output.skipBinary
- Aboolean
governing whether binary properties are to be serialized.noRecurse
- Aboolean
governing whether the subgraph at absPath is to be recursed.- Throws:
PathNotFoundException
- if no node exists atabsPath
.java.io.IOException
- if an error during an I/O operation occurs.RepositoryException
- if another error occurs.
-
exportDocumentView
void exportDocumentView(java.lang.String absPath, org.xml.sax.ContentHandler contentHandler, boolean skipBinary, boolean noRecurse) throws PathNotFoundException, org.xml.sax.SAXException, RepositoryException
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
into a series of SAX events by calling the methods of the suppliedorg.xml.sax.ContentHandler
. The resulting XML is in the document view form. Note thatabsPath
must be the path of a node, not a property.If
skipBinary
is true then any properties ofPropertyType.BINARY
will be serialized as if they are empty. That is, the existence of the property will be serialized, but its content will not appear in the serialized output (the value of the attribute will be empty). IfskipBinary
is false then the actual value(s) of eachBINARY
property is recorded using Base64 encoding.If
noRecurse
is true then only the node atabsPath
and its properties, but not its child nodes, are serialized. IfnoRecurse
isfalse
then the entire subgraph rooted atabsPath
is serialized.If the user lacks read access to some subsection of the specified tree, that section simply does not get serialized, since, from the user's point of view, it is not there.
The serialized output will reflect the state of the current workspace as modified by the state of this
Session
. This means that pending changes (regardless of whether they are valid according to node type constraints) and all namespace mappings in the namespace registry, as modified by the current session-mappings, are reflected in the output.The output XML will be encoded in UTF-8.
- Parameters:
absPath
- The path of the root of the subgraph to be serialized. This must be the path to a node, not a propertycontentHandler
- Theorg.xml.sax.ContentHandler
to which the SAX events representing the XML serialization of the subgraph will be output.skipBinary
- Aboolean
governing whether binary properties are to be serialized.noRecurse
- Aboolean
governing whether the subgraph at absPath is to be recursed.- Throws:
PathNotFoundException
- if no node exists atabsPath
.org.xml.sax.SAXException
- if an error occurs while feeding events to theorg.xml.sax.ContentHandler
.RepositoryException
- if another error occurs.
-
exportDocumentView
void exportDocumentView(java.lang.String absPath, java.io.OutputStream out, boolean skipBinary, boolean noRecurse) throws java.io.IOException, PathNotFoundException, RepositoryException
Serializes the node (and ifnoRecurse
isfalse
, the whole subgraph) atabsPath
as an XML stream and outputs it to the suppliedOutputStream
. The resulting XML is in the document view form. Note thatabsPath
must be the path of a node, not a property.If
skipBinary
is true then any properties ofPropertyType.BINARY
will be serialized as if they are empty. That is, the existence of the property will be serialized, but its content will not appear in the serialized output (the value of the attribute will be empty). IfskipBinary
is false then the actual value(s) of eachBINARY
property is recorded using Base64 encoding.If
noRecurse
is true then only the node atabsPath
and its properties, but not its child nodes, are serialized. IfnoRecurse
isfalse
then the entire subgraph rooted atabsPath
is serialized.If the user lacks read access to some subsection of the specified tree, that section simply does not get serialized, since, from the user's point of view, it is not there.
The serialized output will reflect the state of the current workspace as modified by the state of this
Session
. This means that pending changes (regardless of whether they are valid according to node type constraints) and all namespace mappings in the namespace registry, as modified by the current session-mappings, are reflected in the output.The output XML will be encoded in UTF-8.
It is the responsibility of the caller to close the passed
OutputStream
.- Parameters:
absPath
- The path of the root of the subgraph to be serialized. This must be the path to a node, not a propertyout
- TheOutputStream
to which the XML serialization of the subgraph will be output.skipBinary
- Aboolean
governing whether binary properties are to be serialized.noRecurse
- Aboolean
governing whether the subgraph at absPath is to be recursed.- Throws:
PathNotFoundException
- if no node exists atabsPath
.java.io.IOException
- if an error during an I/O operation occurs.RepositoryException
- if another error occurs.
-
setNamespacePrefix
void setNamespacePrefix(java.lang.String prefix, java.lang.String uri) throws NamespaceException, RepositoryException
Within the scope of thisSession
, this method mapsuri
toprefix
. The remapping only affects operations done through thisSession
. To clear all remappings, the client must acquire a newSession
.All local mappings already present in the
Session
that include either the specifiedprefix
or the specifieduri
are removed and the new mapping is added.- Parameters:
prefix
- a stringuri
- a string- Throws:
NamespaceException
- if an attempt is made to map a namespace URI to a prefix beginning with the characters "xml
" (in any combination of case) or if an attempt is made to map either the empty prefix or the empty namespace (i.e., if eitherprefix
oruri
are the empty string).RepositoryException
- if another error occurs.
-
getNamespacePrefixes
java.lang.String[] getNamespacePrefixes() throws RepositoryException
Returns all prefixes currently mapped to URIs in thisSession
.- Returns:
- a string array
- Throws:
RepositoryException
- if an error occurs
-
getNamespaceURI
java.lang.String getNamespaceURI(java.lang.String prefix) throws NamespaceException, RepositoryException
Returns the URI to which the givenprefix
is mapped as currently set in thisSession
.- Parameters:
prefix
- a string- Returns:
- a string
- Throws:
NamespaceException
- if the specifiedprefix
is unknown.RepositoryException
- if another error occurs
-
getNamespacePrefix
java.lang.String getNamespacePrefix(java.lang.String uri) throws NamespaceException, RepositoryException
Returns the prefix to which the givenuri
is mapped as currently set in thisSession
.- Parameters:
uri
- a string- Returns:
- a string
- Throws:
NamespaceException
- if the specifieduri
is unknown.RepositoryException
- if another error occurs
-
logout
void logout()
Releases all resources associated with thisSession
. This method should be called when aSession
is no longer needed.
-
isLive
boolean isLive()
Returnstrue
if thisSession
object is usable by the client. Otherwise, returnsfalse
. A usableSession
is one that is neither logged-out, timed-out nor in any other way disconnected from the repository.- Returns:
true
if thisSession
is usable,false
otherwise.
-
addLockToken
void addLockToken(java.lang.String lt)
Deprecated.As of JCR 2.0,LockManager.addLockToken(String)
should be used instead.Adds the specified lock token to thisSession
. Holding a lock token makes thisSession
the owner of the lock specified by that particular lock token.- Parameters:
lt
- a lock token (a string).
-
getLockTokens
java.lang.String[] getLockTokens()
Deprecated.As of JCR 2.0,LockManager.getLockTokens()
should be used instead.Returns an array containing all lock tokens currently held by thisSession
. Note that any such tokens will represent open-scoped locks, since session-scoped locks do not have tokens.- Returns:
- an array of lock tokens (strings)
-
removeLockToken
void removeLockToken(java.lang.String lt)
Deprecated.As of JCR 2.0,LockManager.removeLockToken(String)
should be used instead.Removes the specified lock token from thisSession
.- Parameters:
lt
- a lock token (a string)
-
getAccessControlManager
AccessControlManager getAccessControlManager() throws UnsupportedRepositoryOperationException, RepositoryException
Returns the access control manager for thisSession
.- Returns:
- the access control manager for this
Session
- Throws:
UnsupportedRepositoryOperationException
- if access control is not supported.RepositoryException
- if another error occurs.- Since:
- JCR 2.0
-
getRetentionManager
RetentionManager getRetentionManager() throws UnsupportedRepositoryOperationException, RepositoryException
Returns the retention and hold manager for thisSession
.- Returns:
- the retention manager for this
Session
. - Throws:
UnsupportedRepositoryOperationException
- if retention and hold are not supported.RepositoryException
- if another error occurs.- Since:
- JCR 2.0
-
-