A B C D E G H I J L M N O P Q R S T U V W X

A

ABORT - Static variable in class javax.jcr.version.OnParentVersionAction
 
ACTIONNAME_ABORT - Static variable in class javax.jcr.version.OnParentVersionAction
 
ACTIONNAME_COMPUTE - Static variable in class javax.jcr.version.OnParentVersionAction
 
ACTIONNAME_COPY - Static variable in class javax.jcr.version.OnParentVersionAction
The names of the defined on-version actions, as used in serialization.
ACTIONNAME_IGNORE - Static variable in class javax.jcr.version.OnParentVersionAction
 
ACTIONNAME_INITIALIZE - Static variable in class javax.jcr.version.OnParentVersionAction
 
ACTIONNAME_VERSION - Static variable in class javax.jcr.version.OnParentVersionAction
 
AccessDeniedException - exception javax.jcr.AccessDeniedException.
Exception thrown by access-related methods.
AccessDeniedException() - Constructor for class javax.jcr.AccessDeniedException
Constructs a new instance of this class with null as its detail message.
AccessDeniedException(String) - Constructor for class javax.jcr.AccessDeniedException
Constructs a new instance of this class with the specified detail message.
AccessDeniedException(String, Throwable) - Constructor for class javax.jcr.AccessDeniedException
Constructs a new instance of this class with the specified detail message and root cause.
AccessDeniedException(Throwable) - Constructor for class javax.jcr.AccessDeniedException
Constructs a new instance of this class with the specified root cause.
accept(ItemVisitor) - Method in interface javax.jcr.Item
Accepts an ItemVistor.
addEventListener(EventListener, int, String, boolean, String[], String[], boolean) - Method in interface javax.jcr.observation.ObservationManager
Adds an event listener that listens for the specified eventTypes (a combination of one or more event types encoded as a bit mask value).
addLockToken(String) - Method in interface javax.jcr.Session
Adds the specified lock token to this session.
addMixin(String) - Method in interface javax.jcr.Node
Adds the specified mixin node type to this node.
addNode(String) - Method in interface javax.jcr.Node
Creates a new node at relPath.
addNode(String, String) - Method in interface javax.jcr.Node
Creates a new node at relPath of the specified node type.
addVersionLabel(String, String, boolean) - Method in interface javax.jcr.version.VersionHistory
Adds the specified label to the specified version.
allowsSameNameSiblings() - Method in interface javax.jcr.nodetype.NodeDefinition
Reports whether this child node can have same-name siblings.

B

BINARY - Static variable in class javax.jcr.PropertyType
 
BOOLEAN - Static variable in class javax.jcr.PropertyType
 
breadthFirst - Variable in class javax.jcr.util.TraversingItemVisitor
indicates if traversal should be done in a breadth-first manner rather than depth-first (which is the default)

C

COMPUTE - Static variable in class javax.jcr.version.OnParentVersionAction
 
COPY - Static variable in class javax.jcr.version.OnParentVersionAction
The action constants.
ConstraintViolationException - exception javax.jcr.nodetype.ConstraintViolationException.
Exception thrown when an action would violate a constraint on repository structure.
ConstraintViolationException() - Constructor for class javax.jcr.nodetype.ConstraintViolationException
Constructs a new instance of this class with null as its detail message.
ConstraintViolationException(String) - Constructor for class javax.jcr.nodetype.ConstraintViolationException
Constructs a new instance of this class with the specified detail message.
ConstraintViolationException(String, Throwable) - Constructor for class javax.jcr.nodetype.ConstraintViolationException
Constructs a new instance of this class with the specified detail message and root cause.
ConstraintViolationException(Throwable) - Constructor for class javax.jcr.nodetype.ConstraintViolationException
Constructs a new instance of this class with the specified root cause.
Credentials - interface javax.jcr.Credentials.
Interface for all credentials that may be passed to the Repository.login(Credentials credentials, String workspaceName) method.
canAddChildNode(String) - Method in interface javax.jcr.nodetype.NodeType
Returns true if this node type allows the addition of a child node called childNodeName without specific node type information (that is, given the definition of this parent node type, the child node name is sufficient to determine the intended child node type).
canAddChildNode(String, String) - Method in interface javax.jcr.nodetype.NodeType
Returns true if this node type allows the addition of a child node called childNodeName of node type nodeTypeName.
canAddMixin(String) - Method in interface javax.jcr.Node
Returns true if the specified mixin node type, mixinName, can be added to this node.
canRemoveItem(String) - Method in interface javax.jcr.nodetype.NodeType
Returns true if removing the child item called itemName is allowed by this node type.
canSetProperty(String, Value) - Method in interface javax.jcr.nodetype.NodeType
Returns true if setting propertyName to value is allowed by this node type.
canSetProperty(String, Value[]) - Method in interface javax.jcr.nodetype.NodeType
Returns true if setting propertyName to values is allowed by this node type.
cancelMerge(Version) - Method in interface javax.jcr.Node
Cancels the merge process with respect to this node and specified version.
checkPermission(String, String) - Method in interface javax.jcr.Session
Determines whether this Session has permission to perform the specified actions at the specified absPath.
checkin() - Method in interface javax.jcr.Node
Creates a new version with a system generated version name and returns that version (which will be the new base version of this node).
checkout() - Method in interface javax.jcr.Node
Sets this versionable node to checked-out status by setting its jcr:isCheckedOut property to true and adds to the jcr:predecessors (multi-value) property a reference to the current base version (the same value as held in jcr:baseVersion).
clone(String, String, String, boolean) - Method in interface javax.jcr.Workspace
Clones the subtree at the node srcAbsPath in srcWorkspace to the new location at destAbsPath in this workspace.
copy(String, String) - Method in interface javax.jcr.Workspace
This method copies the node at srcAbsPath to the new location at destAbsPath.
copy(String, String, String) - Method in interface javax.jcr.Workspace
This method copies the subtree at srcAbsPath in srcWorkspace to destAbsPath in this workspace.
createQuery(String, String) - Method in interface javax.jcr.query.QueryManager
Creates a new query by specifying the query statement itself and the language in which the query is stated.
createValue(String) - Method in interface javax.jcr.ValueFactory
Returns a Value object of PropertyType.STRING with the specified value.
createValue(String, int) - Method in interface javax.jcr.ValueFactory
Returns a Value object of the PropertyType specified by type with the specified value.
createValue(long) - Method in interface javax.jcr.ValueFactory
Returns a Value object of PropertyType.LONG with the specified value.
createValue(double) - Method in interface javax.jcr.ValueFactory
Returns a Value object of PropertyType.DOUBLE with the specified value.
createValue(boolean) - Method in interface javax.jcr.ValueFactory
Returns a Value object of PropertyType.BOOLEAN with the specified value.
createValue(Calendar) - Method in interface javax.jcr.ValueFactory
Returns a Value object of PropertyType.DATE with the specified value.
createValue(InputStream) - Method in interface javax.jcr.ValueFactory
Returns a Value object of PropertyType.BINARY with a value consisting of the content of the specified InputStream.
createValue(Node) - Method in interface javax.jcr.ValueFactory
Returns a Value object of PropertyType.REFERENCE that holds the UUID of the specified Node.

D

DATE - Static variable in class javax.jcr.PropertyType
 
DOUBLE - Static variable in class javax.jcr.PropertyType
 
doneMerge(Version) - Method in interface javax.jcr.Node
Completes the merge process with respect to this node and the specified version.

E

Event - interface javax.jcr.observation.Event.
An event fired by the observation mechanism.
EventIterator - interface javax.jcr.observation.EventIterator.
Allows easy iteration through a list of Events with nextEvent as well as a skip method inherited from RangeIterator.
EventListener - interface javax.jcr.observation.EventListener.
An event listener.
EventListenerIterator - interface javax.jcr.observation.EventListenerIterator.
Allows easy iteration through a list of EventListeners with nextEventListener as well as a skip method inherited from RangeIterator.
entering(Node, int) - Method in class javax.jcr.util.TraversingItemVisitor.Default
 
entering(Property, int) - Method in class javax.jcr.util.TraversingItemVisitor.Default
 
entering(Property, int) - Method in class javax.jcr.util.TraversingItemVisitor
Implement this method to add behaviour performed before a Property is visited.
entering(Node, int) - Method in class javax.jcr.util.TraversingItemVisitor
Implement this method to add behaviour performed before a Node is visited.
execute() - Method in interface javax.jcr.query.Query
Executes this query and returns a QueryResult.
exportDocumentView(String, ContentHandler, boolean, boolean) - Method in interface javax.jcr.Session
Serializes the node (and if noRecurse is false, the whole subtree) at absPath into a series of SAX events by calling the methods of the supplied org.xml.sax.ContentHandler.
exportDocumentView(String, OutputStream, boolean, boolean) - Method in interface javax.jcr.Session
Serializes the node (and if noRecurse is false, the whole subtree) at absPath as an XML stream and outputs it to the supplied OutputStream.
exportSystemView(String, ContentHandler, boolean, boolean) - Method in interface javax.jcr.Session
Serializes the node (and if noRecurse is false, the whole subtree) at absPath into a series of SAX events by calling the methods of the supplied org.xml.sax.ContentHandler.
exportSystemView(String, OutputStream, boolean, boolean) - Method in interface javax.jcr.Session
Serializes the node (and if noRecurse is false, the whole subtree) at absPath as an XML stream and outputs it to the supplied OutputStream.

G

getAccessibleWorkspaceNames() - Method in interface javax.jcr.Workspace
Returns an string array containing the names of all workspaces in this repository that are accessible to this user, given the Credentials that were used to get the Session tied to this Workspace.
getAllNodeTypes() - Method in interface javax.jcr.nodetype.NodeTypeManager
Returns an iterator over all available node types (primary and mixin).
getAllVersions() - Method in interface javax.jcr.version.VersionHistory
Returns an iterator over all the versions within this version history The order of the returned objects will not necessarily correspond to the order of versions in terms of the successor relation.
getAncestor(int) - Method in interface javax.jcr.Item
Returns the ancestor of the specified depth.
getAttribute(String) - Method in interface javax.jcr.Session
Returns the value of the named attribute as an Object, or null if no attribute of the given name exists.
getAttribute(String) - Method in class javax.jcr.SimpleCredentials
Returns the value of the named attribute as an Object, or null if no attribute of the given name exists.
getAttributeNames() - Method in interface javax.jcr.Session
Returns the names of the attributes set in this session as a result of the Credentials that were used to acquire it.
getAttributeNames() - Method in class javax.jcr.SimpleCredentials
Returns the names of the attributes available to this credentials instance.
getBaseVersion() - Method in interface javax.jcr.Node
Returns the current base version of this versionable node.
getBoolean() - Method in interface javax.jcr.Property
Returns a boolean representation of the value of this property.
getBoolean() - Method in interface javax.jcr.Value
Returns a Boolean representation of this value.
getCause() - Method in class javax.jcr.RepositoryException
Returns the cause of this exception or null if the cause is nonexistent or unknown.
getChildNodeDefinitions() - Method in interface javax.jcr.nodetype.NodeType
Returns an array containing the child node definitions of this node type, including the child node definitions inherited from supertypes of this node type.
getColumnNames() - Method in interface javax.jcr.query.QueryResult
Returns an array of all the property names (column names) in this result set.
getContainingHistory() - Method in interface javax.jcr.version.Version
Returns the VersionHistory that contains this Version.
getCorrespondingNodePath(String) - Method in interface javax.jcr.Node
Returns the absolute path of the node in the specified workspace that corresponds to this node.
getCreated() - Method in interface javax.jcr.version.Version
Returns the date this version was created.
getDate() - Method in interface javax.jcr.Property
Returns a Calendar representation of the value of this property.
getDate() - Method in interface javax.jcr.Value
Returns a Calendar representation of this value.
getDeclaredChildNodeDefinitions() - Method in interface javax.jcr.nodetype.NodeType
Returns an array containing the child node definitions explicitly specified in the declaration of this node type.
getDeclaredPropertyDefinitions() - Method in interface javax.jcr.nodetype.NodeType
Returns an array containing the property definitions explicitly specified in the declaration of this node type.
getDeclaredSupertypes() - Method in interface javax.jcr.nodetype.NodeType
Returns the direct supertypes of this node type in the node type inheritance hierarchy, that is, those actually declared in this node type.
getDeclaringNodeType() - Method in interface javax.jcr.nodetype.ItemDefinition
Gets the node type that contains the declaration of this ItemDefinition.
getDefaultPrimaryType() - Method in interface javax.jcr.nodetype.NodeDefinition
Gets the default primary node type that will be assigned to the child node if it is created without an explicitly specified primary node type.
getDefaultValues() - Method in interface javax.jcr.nodetype.PropertyDefinition
Gets the default value(s) of the property.
getDefinition() - Method in interface javax.jcr.Node
Returns the node definition that applies to this node.
getDefinition() - Method in interface javax.jcr.Property
Returns the property definition that applies to this property.
getDepth() - Method in interface javax.jcr.Item
Returns the depth of this Item in the workspace tree.
getDescriptor(String) - Method in interface javax.jcr.Repository
Returns the descriptor for the specified key.
getDescriptorKeys() - Method in interface javax.jcr.Repository
Returns a string array holding all descriptor keys available for this implementation.
getDouble() - Method in interface javax.jcr.Property
Returns a double representation of the value of this property.
getDouble() - Method in interface javax.jcr.Value
Returns a double representation of this value.
getImportContentHandler(String, int) - Method in interface javax.jcr.Session
Returns an org.xml.sax.ContentHandler which can be used to push SAX events into the repository.
getImportContentHandler(String, int) - Method in interface javax.jcr.Workspace
Returns an org.xml.sax.ContentHandler which can be used to push SAX events into the repository.
getIndex() - Method in interface javax.jcr.Node
This method returns the index of this node within the ordered set of its same-name sibling nodes.
getItem(String) - Method in interface javax.jcr.Session
Returns the item at the specified absolute path in the workspace.
getLanguage() - Method in interface javax.jcr.query.Query
Returns the language set for this query.
getLength() - Method in interface javax.jcr.Property
Returns the length of the value of this property.
getLengths() - Method in interface javax.jcr.Property
Returns an array holding the lengths of the values of this (multi-value) property in bytes if the values are PropertyType.BINARY, otherwise it returns the number of characters needed to display the value in its string form.
getLocalizedMessage() - Method in class javax.jcr.RepositoryException
Returns the localized message, including the localized message from the nested exception if there is one.
getLock() - Method in interface javax.jcr.Node
Returns the Lock object that applies to this node.
getLockOwner() - Method in interface javax.jcr.lock.Lock
Returns the user ID of the user who owns this lock.
getLockToken() - Method in interface javax.jcr.lock.Lock
May return the lock token for this lock.
getLockTokens() - Method in interface javax.jcr.Session
Returns an array containing all lock tokens currently held by this session.
getLong() - Method in interface javax.jcr.Property
Returns a long representation of the value of this property.
getLong() - Method in interface javax.jcr.Value
Returns a long representation of this value.
getMessage() - Method in class javax.jcr.RepositoryException
Returns the detail message, including the message from the nested exception if there is one.
getMixinNodeTypes() - Method in interface javax.jcr.Node
Returns an array of NodeType objects representing the mixin node types assigned to this node.
getMixinNodeTypes() - Method in interface javax.jcr.nodetype.NodeTypeManager
Returns an iterator over all available mixin node types.
getName() - Method in interface javax.jcr.Item
Returns the name of this Item.
getName() - Method in interface javax.jcr.Workspace
Returns the name of the actual persistent workspace represented by this Workspace object.
getName() - Method in interface javax.jcr.nodetype.ItemDefinition
Gets the name of the child item.
getName() - Method in interface javax.jcr.nodetype.NodeType
Returns the name of the node type.
getNamespacePrefix(String) - Method in interface javax.jcr.Session
Returns the prefix to which the given URI is mapped
getNamespacePrefixes() - Method in interface javax.jcr.Session
Returns all prefixes currently set for this session.
getNamespaceRegistry() - Method in interface javax.jcr.Workspace
Returns the NamespaceRegistry object, which is used to access information and (in level 2) set the mapping between namespace prefixes and URIs.
getNamespaceURI(String) - Method in interface javax.jcr.Session
For a given prefix, returns the URI to which it is mapped as currently set in this Session.
getNode(String) - Method in interface javax.jcr.Node
Returns the node at relPath relative to this node.
getNode() - Method in interface javax.jcr.Property
If this property is of type REFERENCE this method returns the node to which this property refers.
getNode() - Method in interface javax.jcr.lock.Lock
Returns the lock holding node.
getNodeByUUID(String) - Method in interface javax.jcr.Session
Returns the node specifed by the given UUID.
getNodeType(String) - Method in interface javax.jcr.nodetype.NodeTypeManager
Returns the named node type.
getNodeTypeManager() - Method in interface javax.jcr.Workspace
Returns the NodeTypeManager through which node type information can be queried.
getNodes() - Method in interface javax.jcr.Node
Returns a NodeIterator over all child Nodes of this Node.
getNodes(String) - Method in interface javax.jcr.Node
Gets all child nodes of this node that match namePattern.
getNodes() - Method in interface javax.jcr.query.QueryResult
Returns an iterator over all nodes that match the query.
getObservationManager() - Method in interface javax.jcr.Workspace
If the the implementation supports observation this method returns the ObservationManager object; otherwise it throws an UnsupportedRepositoryOperationException.
getOnParentVersion() - Method in interface javax.jcr.nodetype.ItemDefinition
Gets the on-parent-version status of the child item.
getParent() - Method in interface javax.jcr.Item
Returns the parent of this Item.
getPassword() - Method in class javax.jcr.SimpleCredentials
Returns the user password.
getPath() - Method in interface javax.jcr.Item
Returns the absolute path to this item.
getPath() - Method in interface javax.jcr.observation.Event
Returns the absolute path of the parent node connected with this event.
getPosition() - Method in interface javax.jcr.RangeIterator
Returns the current position within the iterator.
getPredecessors() - Method in interface javax.jcr.version.Version
Returns the predecessor versions of this version.
getPrefix(String) - Method in interface javax.jcr.NamespaceRegistry
Returns the prefix to which the given URI is mapped
getPrefixes() - Method in interface javax.jcr.NamespaceRegistry
Returns an array holding all currently registered prefixes.
getPrimaryItem() - Method in interface javax.jcr.Node
Returns the primary child item of this node.
getPrimaryItemName() - Method in interface javax.jcr.nodetype.NodeType
Returns the name of the primary item (one of the child items of the nodes of this node type).
getPrimaryNodeType() - Method in interface javax.jcr.Node
Returns the primary node type of this node.
getPrimaryNodeTypes() - Method in interface javax.jcr.nodetype.NodeTypeManager
Returns an iterator over all available primary node types.
getProperties() - Method in interface javax.jcr.Node
Returns all properties of this node.
getProperties(String) - Method in interface javax.jcr.Node
Gets all properties of this node that match namePattern.
getProperty(String) - Method in interface javax.jcr.Node
Returns the property at relPath relative to this node.
getPropertyDefinitions() - Method in interface javax.jcr.nodetype.NodeType
Returns an array containing the property definitions of this node type, including the property definitions inherited from supertypes of this node type.
getQuery(Node) - Method in interface javax.jcr.query.QueryManager
Retrieves an existing persistent query.
getQueryManager() - Method in interface javax.jcr.Workspace
Gets the QueryManager.
getReferences() - Method in interface javax.jcr.Node
Returns all REFERENCE properties that refer to this node.
getRegisteredEventListeners() - Method in interface javax.jcr.observation.ObservationManager
Returns all event listeners that have been registered through this session.
getRepository() - Method in interface javax.jcr.Session
Returns the Repository object through which this session was acquired.
getRequiredPrimaryTypes() - Method in interface javax.jcr.nodetype.NodeDefinition
Gets the minimum set of primary node types that the child node must have.
getRequiredType() - Method in interface javax.jcr.nodetype.PropertyDefinition
Gets the required type of the property.
getRootNode() - Method in interface javax.jcr.Session
Returns the root node of the workspace.
getRootVersion() - Method in interface javax.jcr.version.VersionHistory
Returns the root version of this version history.
getRows() - Method in interface javax.jcr.query.QueryResult
Returns an iterator over the Rows of the query result table.
getSession() - Method in interface javax.jcr.Item
Returns the Session through which this Item was acquired.
getSession() - Method in interface javax.jcr.Workspace
Returns the Session object through which this Workspace object was acquired.
getSize() - Method in interface javax.jcr.RangeIterator
Returns the number of elements in the iterator.
getStatement() - Method in interface javax.jcr.query.Query
Returns the statement set for this query.
getStoredQueryPath() - Method in interface javax.jcr.query.Query
If this is a Query object that has been stored using Query.storeAsNode(java.lang.String) (regardless of whether it has been saved yet) or retrieved using QueryManager.getQuery(javax.jcr.Node)), then this method returns the path of the nt:query node that stores the query.
getStream() - Method in interface javax.jcr.Property
Returns an InputStream representation of the value of this property.
getStream() - Method in interface javax.jcr.Value
Returns an InputStream representation of this value.
getString() - Method in interface javax.jcr.Property
Returns a String representation of the value of this property.
getString() - Method in interface javax.jcr.Value
Returns a String representation of this value.
getSuccessors() - Method in interface javax.jcr.version.Version
Returns the successor versions of this version.
getSupertypes() - Method in interface javax.jcr.nodetype.NodeType
Returns all supertypes of this node type in the node type inheritance hierarchy.
getSupportedQueryLanguages() - Method in interface javax.jcr.query.QueryManager
Returns an array of strings representing all query languages supported by this repository.
getType() - Method in interface javax.jcr.Property
Returns the type of this Property.
getType() - Method in interface javax.jcr.Value
Returns the type of this Value.
getType() - Method in interface javax.jcr.observation.Event
Returns the type of this event: a constant defined by this interface.
getURI(String) - Method in interface javax.jcr.NamespaceRegistry
Returns the URI to which the given prefix is mapped.
getURIs() - Method in interface javax.jcr.NamespaceRegistry
Returns an array holding all currently registered URIs.
getUUID() - Method in interface javax.jcr.Node
Returns the UUID of this node as recorded in this node's jcr:uuid property.
getUserID() - Method in interface javax.jcr.Session
Gets the user ID that was used to acquire this session.
getUserID() - Method in class javax.jcr.SimpleCredentials
Returns the user ID.
getUserID() - Method in interface javax.jcr.observation.Event
Returns the user ID connected with this event.
getValue() - Method in interface javax.jcr.Property
Returns the value of this property as a generic Value object.
getValue(String) - Method in interface javax.jcr.query.Row
Returns the value of the indicated property in this Row.
getValueConstraints() - Method in interface javax.jcr.nodetype.PropertyDefinition
Gets the array of constraint strings.
getValueFactory() - Method in interface javax.jcr.Session
This method returns a ValueFactory that is used to create Value objects for use when setting repository properties.
getValues() - Method in interface javax.jcr.Property
Returns an array of all the values of this property.
getValues() - Method in interface javax.jcr.query.Row
Returns an array of all the values in the same order as the column names returned by QueryResult.getColumnNames().
getVersion(String) - Method in interface javax.jcr.version.VersionHistory
Retrieves a particular version from this version history by version name.
getVersionByLabel(String) - Method in interface javax.jcr.version.VersionHistory
Retrieves a particular version from this version history by version label.
getVersionHistory() - Method in interface javax.jcr.Node
Returns the VersionHistory object of this node.
getVersionLabels() - Method in interface javax.jcr.version.VersionHistory
Returns all version labels of the history or an empty array if there are none.
getVersionLabels(Version) - Method in interface javax.jcr.version.VersionHistory
Returns all version labels of the given version - empty array if none.
getVersionableUUID() - Method in interface javax.jcr.version.VersionHistory
Returns the UUID of the versionable node for which this is the version history.
getWorkspace() - Method in interface javax.jcr.Session
Returns the Workspace attached to this Session.

H

hasNode(String) - Method in interface javax.jcr.Node
Indicates whether a node exists at relPath Returns true if a node exists at relPath and false otherwise.
hasNodes() - Method in interface javax.jcr.Node
Indicates whether this node has child nodes.
hasOrderableChildNodes() - Method in interface javax.jcr.nodetype.NodeType
Returns true if nodes of this type must support orderable child nodes; returns false otherwise.
hasPendingChanges() - Method in interface javax.jcr.Session
Returns true if this session holds pending (that is, unsaved) changes; otherwise returns false.
hasProperties() - Method in interface javax.jcr.Node
Indicates whether this node has properties.
hasProperty(String) - Method in interface javax.jcr.Node
Indicates whether a property exists at relPath Returns true if a property exists at relPath and false otherwise.
hasVersionLabel(String) - Method in interface javax.jcr.version.VersionHistory
Returns true if any version in the history has the given label.
hasVersionLabel(Version, String) - Method in interface javax.jcr.version.VersionHistory
Returns true if the given version has the given label.
holdsLock() - Method in interface javax.jcr.Node
Returns true if this node holds a lock; otherwise returns false.

I

IGNORE - Static variable in class javax.jcr.version.OnParentVersionAction
 
IMPORT_UUID_COLLISION_REMOVE_EXISTING - Static variable in interface javax.jcr.ImportUUIDBehavior
 
IMPORT_UUID_COLLISION_REPLACE_EXISTING - Static variable in interface javax.jcr.ImportUUIDBehavior
 
IMPORT_UUID_COLLISION_THROW - Static variable in interface javax.jcr.ImportUUIDBehavior
 
IMPORT_UUID_CREATE_NEW - Static variable in interface javax.jcr.ImportUUIDBehavior
 
INITIALIZE - Static variable in class javax.jcr.version.OnParentVersionAction
 
ImportUUIDBehavior - interface javax.jcr.ImportUUIDBehavior.
The possible actions specified by the uuidBehavior parameter in Workspace.importXML(java.lang.String, java.io.InputStream, int), Session.importXML(java.lang.String, java.io.InputStream, int), Workspace.getImportContentHandler(java.lang.String, int) and Session.getImportContentHandler(java.lang.String, int).
InvalidItemStateException - exception javax.jcr.InvalidItemStateException.
Exception thrown by the write methods of Node and Property and by save and refresh if an attempted change would conflict with a change to the persistent workspace made through another Session.
InvalidItemStateException() - Constructor for class javax.jcr.InvalidItemStateException
Constructs a new instance of this class with null as its detail message.
InvalidItemStateException(String) - Constructor for class javax.jcr.InvalidItemStateException
Constructs a new instance of this class with the specified detail message.
InvalidItemStateException(String, Throwable) - Constructor for class javax.jcr.InvalidItemStateException
Constructs a new instance of this class with the specified detail message and root cause.
InvalidItemStateException(Throwable) - Constructor for class javax.jcr.InvalidItemStateException
Constructs a new instance of this class with the specified root cause.
InvalidQueryException - exception javax.jcr.query.InvalidQueryException.
Thrown by methods of Query.
InvalidQueryException() - Constructor for class javax.jcr.query.InvalidQueryException
Constructs a new instance of this class with null as its detail message.
InvalidQueryException(String) - Constructor for class javax.jcr.query.InvalidQueryException
Constructs a new instance of this class with the specified detail message.
InvalidQueryException(String, Throwable) - Constructor for class javax.jcr.query.InvalidQueryException
Constructs a new instance of this class with the specified detail message and root cause.
InvalidQueryException(Throwable) - Constructor for class javax.jcr.query.InvalidQueryException
Constructs a new instance of this class with the specified root cause.
InvalidSerializedDataException - exception javax.jcr.InvalidSerializedDataException.
Exception thrown by the deserialization methods of Session if the serialized data being input has an invalid format.
InvalidSerializedDataException() - Constructor for class javax.jcr.InvalidSerializedDataException
Constructs a new instance of this class with null as its detail message.
InvalidSerializedDataException(String) - Constructor for class javax.jcr.InvalidSerializedDataException
Constructs a new instance of this class with the specified detail message.
InvalidSerializedDataException(String, Throwable) - Constructor for class javax.jcr.InvalidSerializedDataException
Constructs a new instance of this class with the specified detail message and root cause.
InvalidSerializedDataException(Throwable) - Constructor for class javax.jcr.InvalidSerializedDataException
Constructs a new instance of this class with the specified root cause.
Item - interface javax.jcr.Item.
The Item is the base interface of Node and Property.
ItemDefinition - interface javax.jcr.nodetype.ItemDefinition.
Superinterface of NodeDefinition and PropertyDefinition.
ItemExistsException - exception javax.jcr.ItemExistsException.
An exception thrown when an attempt is made to place an item in a position where another item already exists.
ItemExistsException() - Constructor for class javax.jcr.ItemExistsException
Constructs a new instance of this class with null as its detail message.
ItemExistsException(String) - Constructor for class javax.jcr.ItemExistsException
Constructs a new instance of this class with the specified detail message.
ItemExistsException(String, Throwable) - Constructor for class javax.jcr.ItemExistsException
Constructs a new instance of this class with the specified detail message and root cause.
ItemExistsException(Throwable) - Constructor for class javax.jcr.ItemExistsException
Constructs a new instance of this class with the specified root cause.
ItemNotFoundException - exception javax.jcr.ItemNotFoundException.
Exception thrown by methods of Item, Node and Workspace when an item is not found.
ItemNotFoundException() - Constructor for class javax.jcr.ItemNotFoundException
Constructs a new instance of this class with null as its detail message.
ItemNotFoundException(String) - Constructor for class javax.jcr.ItemNotFoundException
Constructs a new instance of this class with the specified detail message.
ItemNotFoundException(String, Throwable) - Constructor for class javax.jcr.ItemNotFoundException
Constructs a new instance of this class with the specified detail message and root cause.
ItemNotFoundException(Throwable) - Constructor for class javax.jcr.ItemNotFoundException
Constructs a new instance of this class with the specified root cause.
ItemVisitor - interface javax.jcr.ItemVisitor.
This interface defines two signatures of the visit method; one taking a Node, the other a Property.
impersonate(Credentials) - Method in interface javax.jcr.Session
Returns a new session in accordance with the specified (new) Credentials.
importXML(String, InputStream, int) - Method in interface javax.jcr.Session
Deserializes an XML document and adds the resulting item subtree as a child of the node at parentAbsPath.
importXML(String, InputStream, int) - Method in interface javax.jcr.Workspace
Deserializes an XML document and adds the resulting item subtree as a child of the node at parentAbsPath.
isAutoCreated() - Method in interface javax.jcr.nodetype.ItemDefinition
Reports whether the item is to be automatically created when its parent node is created.
isCheckedOut() - Method in interface javax.jcr.Node
Returns true if this node is either
  • versionable and currently checked-out,
  • non-versionable and its nearest versionable ancestor is checked-out or
  • non-versionable and it has no versionable ancestor.
    isDeep() - Method in interface javax.jcr.lock.Lock
    Returns true if this is a deep lock; false otherwise.
    isLive() - Method in interface javax.jcr.Session
    Returns true if this Session object is usable by the client.
    isLive() - Method in interface javax.jcr.lock.Lock
    Returns true if this Lock object represents a lock that is currently in effect.
    isLocked() - Method in interface javax.jcr.Node
    Returns true if this node is locked either as a result of a lock held by this node or by a deep lock on a node above this node; otherwise returns false.
    isMandatory() - Method in interface javax.jcr.nodetype.ItemDefinition
    Reports whether the item is mandatory.
    isMixin() - Method in interface javax.jcr.nodetype.NodeType
    Returns true if this node type is a mixin node type.
    isModified() - Method in interface javax.jcr.Item
    Returns true if this Item has been saved but has subsequently been modified through the current session and therefore the state of this item as recorded in the session differs from the state of this item as saved.
    isMultiple() - Method in interface javax.jcr.nodetype.PropertyDefinition
    Reports whether this property can have multiple values.
    isNew() - Method in interface javax.jcr.Item
    Returns true if this is a new item, meaning that it exists only in transient storage on the Session and has not yet been saved.
    isNode() - Method in interface javax.jcr.Item
    Indicates whether this Item is a Node or a Property.
    isNodeType(String) - Method in interface javax.jcr.Node
    Indicates whether this node is of the specified node type.
    isNodeType(String) - Method in interface javax.jcr.nodetype.NodeType
    Returns true if this node type is nodeTypeName or a subtype of nodeTypeName, otherwise returns false.
    isProtected() - Method in interface javax.jcr.nodetype.ItemDefinition
    Reports whether the child item is protected.
    isSame(Item) - Method in interface javax.jcr.Item
    Returns true if this Item object (the Java object instance) represents the same actual repository item as the object otherItem.
    isSessionScoped() - Method in interface javax.jcr.lock.Lock
    Returns true if this is a session-scoped lock.
    itemExists(String) - Method in interface javax.jcr.Session
    Returns true if an item exists at absPath; otherwise returns false.

  • J

    javax.jcr - package javax.jcr
    Provides interfaces and classes for the Content Repository for Java Technology.
    javax.jcr.lock - package javax.jcr.lock
    Provides interfaces and classes for content repository locking functionality.
    javax.jcr.nodetype - package javax.jcr.nodetype
    Provides interfaces and classes for content repository node type functionality.
    javax.jcr.observation - package javax.jcr.observation
    Provides interfaces and classes for content repository event observation functionality.
    javax.jcr.query - package javax.jcr.query
    Provides interfaces and classes for content repository searching functionality.
    javax.jcr.util - package javax.jcr.util
    Provides utility classes for the content repository API.
    javax.jcr.version - package javax.jcr.version
    Provides interfaces and classes for content repository versioning functionality.

    L

    LEVEL_1_SUPPORTED - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that this implementation supports all level 1 features.
    LEVEL_2_SUPPORTED - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that this implementation supports all level 2 features.
    LONG - Static variable in class javax.jcr.PropertyType
     
    Lock - interface javax.jcr.lock.Lock.
    Represents a lock placed on an item.
    LockException - exception javax.jcr.lock.LockException.
    Exception thrown by Item.save() and Session.save() when persisting a change would conflict with a lock.
    LockException() - Constructor for class javax.jcr.lock.LockException
    Constructs a new instance of this class with null as its detail message.
    LockException(String) - Constructor for class javax.jcr.lock.LockException
    Constructs a new instance of this class with the specified detail message.
    LockException(String, Throwable) - Constructor for class javax.jcr.lock.LockException
    Constructs a new instance of this class with the specified detail message and root cause.
    LockException(Throwable) - Constructor for class javax.jcr.lock.LockException
    Constructs a new instance of this class with the specified root cause.
    LoginException - exception javax.jcr.LoginException.
    Exception thrown by Repository.login(Credentials, String) and Session.impersonate(Credentials) if the specified credentials are invalid.
    LoginException() - Constructor for class javax.jcr.LoginException
    Constructs a new instance of this class with null as its detail message.
    LoginException(String) - Constructor for class javax.jcr.LoginException
    Constructs a new instance of this class with the specified detail message.
    LoginException(String, Throwable) - Constructor for class javax.jcr.LoginException
    Constructs a new instance of this class with the specified detail message and root cause.
    LoginException(Throwable) - Constructor for class javax.jcr.LoginException
    Constructs a new instance of this class with the specified root cause.
    leaving(Node, int) - Method in class javax.jcr.util.TraversingItemVisitor.Default
     
    leaving(Property, int) - Method in class javax.jcr.util.TraversingItemVisitor.Default
     
    leaving(Property, int) - Method in class javax.jcr.util.TraversingItemVisitor
    Implement this method to add behaviour performed after a Property is visited.
    leaving(Node, int) - Method in class javax.jcr.util.TraversingItemVisitor
    Implement this method to add behaviour performed after a Node is visited.
    lock(boolean, boolean) - Method in interface javax.jcr.Node
    Places a lock on this node.
    login(Credentials, String) - Method in interface javax.jcr.Repository
    Authenticates the user using the supplied credentials.
    login(Credentials) - Method in interface javax.jcr.Repository
    Equivalent to login(credentials, null).
    login(String) - Method in interface javax.jcr.Repository
    Equivalent to login(null, workspaceName).
    login() - Method in interface javax.jcr.Repository
    Equivalent to login(null, null).
    logout() - Method in interface javax.jcr.Session
    Releases all resources associated with this Session.

    M

    MergeException - exception javax.jcr.MergeException.
    Exception thrown by Node.merge(String srcWorkspace, boolean isDeep).
    MergeException() - Constructor for class javax.jcr.MergeException
    Constructs a new instance of this class with null as its detail message.
    MergeException(String) - Constructor for class javax.jcr.MergeException
    Constructs a new instance of this class with the specified detail message.
    MergeException(String, Throwable) - Constructor for class javax.jcr.MergeException
    Constructs a new instance of this class with the specified detail message and root cause.
    MergeException(Throwable) - Constructor for class javax.jcr.MergeException
    Constructs a new instance of this class with the specified root cause.
    maxLevel - Variable in class javax.jcr.util.TraversingItemVisitor
    the 0-based level up to which the hierarchy should be traversed (if it's -1, the hierarchy will be traversed until there are no more children of the current item)
    merge(String, boolean) - Method in interface javax.jcr.Node
    This method can be thought of as a version-sensitive update (see 7.1.7 Updating and Cloning Nodes across Workspaces in the specification).
    move(String, String) - Method in interface javax.jcr.Session
    Moves the node at srcAbsPath (and its entire subtree) to the new location at destAbsPath.
    move(String, String) - Method in interface javax.jcr.Workspace
    Moves the node at srcAbsPath (and its entire subtree) to the new location at destAbsPath.

    N

    NAME - Static variable in class javax.jcr.PropertyType
     
    NODE_ADDED - Static variable in interface javax.jcr.observation.Event
    An event of this type is generated when a node is added.
    NODE_REMOVED - Static variable in interface javax.jcr.observation.Event
    An event of this type is generated when a node is removed.
    NamespaceException - exception javax.jcr.NamespaceException.
    Exception thrown by Session.setNamespacePrefix(String prefix, String uri) if the specified uri is not registered in the NamespaceRegistry
    NamespaceException() - Constructor for class javax.jcr.NamespaceException
    Constructs a new instance of this class with null as its detail message.
    NamespaceException(String) - Constructor for class javax.jcr.NamespaceException
    Constructs a new instance of this class with the specified detail message.
    NamespaceException(String, Throwable) - Constructor for class javax.jcr.NamespaceException
    Constructs a new instance of this class with the specified detail message and root cause.
    NamespaceException(Throwable) - Constructor for class javax.jcr.NamespaceException
    Constructs a new instance of this class with the specified root cause.
    NamespaceRegistry - interface javax.jcr.NamespaceRegistry.
    NamespaceRegistry represents the global persistent namespace registry of the JCR Repository.
    NoSuchNodeTypeException - exception javax.jcr.nodetype.NoSuchNodeTypeException.
    Exception thrown by node type-related methods.
    NoSuchNodeTypeException() - Constructor for class javax.jcr.nodetype.NoSuchNodeTypeException
    Constructs a new instance of this class with null as its detail message.
    NoSuchNodeTypeException(String) - Constructor for class javax.jcr.nodetype.NoSuchNodeTypeException
    Constructs a new instance of this class with the specified detail message.
    NoSuchNodeTypeException(String, Throwable) - Constructor for class javax.jcr.nodetype.NoSuchNodeTypeException
    Constructs a new instance of this class with the specified detail message and root cause.
    NoSuchNodeTypeException(Throwable) - Constructor for class javax.jcr.nodetype.NoSuchNodeTypeException
    Constructs a new instance of this class with the specified root cause.
    NoSuchWorkspaceException - exception javax.jcr.NoSuchWorkspaceException.
    Exception thrown by Repository.login(Credentials, String) when a specific workspace is not found.
    NoSuchWorkspaceException() - Constructor for class javax.jcr.NoSuchWorkspaceException
    Constructs a new instance of this class with null as its detail message.
    NoSuchWorkspaceException(String) - Constructor for class javax.jcr.NoSuchWorkspaceException
    Constructs a new instance of this class with the specified detail message.
    NoSuchWorkspaceException(String, Throwable) - Constructor for class javax.jcr.NoSuchWorkspaceException
    Constructs a new instance of this class with the specified detail message and root cause.
    NoSuchWorkspaceException(Throwable) - Constructor for class javax.jcr.NoSuchWorkspaceException
    Constructs a new instance of this class with the specified root cause.
    Node - interface javax.jcr.Node.
    The Node interface represents a node in the hierarchy that makes up the repository.
    NodeDefinition - interface javax.jcr.nodetype.NodeDefinition.
    A node definition.
    NodeIterator - interface javax.jcr.NodeIterator.
    Allows easy iteration through a list of Nodes with nextNode as well as a skip method inherited from RangeIterator.
    NodeType - interface javax.jcr.nodetype.NodeType.
    Represents a node type.
    NodeTypeIterator - interface javax.jcr.nodetype.NodeTypeIterator.
    An iterator for NodeType objects.
    NodeTypeManager - interface javax.jcr.nodetype.NodeTypeManager.
    Allows for the retrieval of node types.
    nameFromValue(int) - Static method in class javax.jcr.PropertyType
    Returns the name of the specified type, as used in serialization.
    nameFromValue(int) - Static method in class javax.jcr.version.OnParentVersionAction
    Returns the name of the specified action, as used in serialization.
    nextEvent() - Method in interface javax.jcr.observation.EventIterator
    Returns the next Event in the iteration.
    nextEventListener() - Method in interface javax.jcr.observation.EventListenerIterator
    Returns the next EventListener in the iteration.
    nextNode() - Method in interface javax.jcr.NodeIterator
    Returns the next Node in the iteration.
    nextNodeType() - Method in interface javax.jcr.nodetype.NodeTypeIterator
    Returns the next NodeType in the iteration.
    nextProperty() - Method in interface javax.jcr.PropertyIterator
    Returns the next Property in the iteration.
    nextRow() - Method in interface javax.jcr.query.RowIterator
    Returns the next Row in the iteration.
    nextVersion() - Method in interface javax.jcr.version.VersionIterator
    Returns the next Version in the iteration.

    O

    OPTION_LOCKING_SUPPORTED - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that this implementation supports locking.
    OPTION_OBSERVATION_SUPPORTED - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that this implementation supports observation.
    OPTION_QUERY_SQL_SUPPORTED - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that this implementation supports the SQL query language.
    OPTION_TRANSACTIONS_SUPPORTED - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that this implementation supports transactions.
    OPTION_VERSIONING_SUPPORTED - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that this implementation supports versioning.
    ObservationManager - interface javax.jcr.observation.ObservationManager.
    The ObservationManager object.
    OnParentVersionAction - class javax.jcr.version.OnParentVersionAction.
    The possible actions specified by the onParentVersion attribute in a property definition within a node type definition.
    onEvent(EventIterator) - Method in interface javax.jcr.observation.EventListener
    Gets called when an event occurs.
    orderBefore(String, String) - Method in interface javax.jcr.Node
    If this node supports child node ordering, this method inserts the child node at srcChildRelPath before its sibling, the child node at destChildRelPath, in the child node list.

    P

    PATH - Static variable in class javax.jcr.PropertyType
     
    PROPERTY_ADDED - Static variable in interface javax.jcr.observation.Event
    An event of this type is generated when a property is added.
    PROPERTY_CHANGED - Static variable in interface javax.jcr.observation.Event
    An event of this type is generated when a property is changed.
    PROPERTY_REMOVED - Static variable in interface javax.jcr.observation.Event
    An event of this type is generated when a property is removed.
    PathNotFoundException - exception javax.jcr.PathNotFoundException.
    Exception thrown when no Item exists at the specified path or when the specified path implies intermediary Nodes that do not exist.
    PathNotFoundException() - Constructor for class javax.jcr.PathNotFoundException
    Constructs a new instance of this class with null as its detail message.
    PathNotFoundException(String) - Constructor for class javax.jcr.PathNotFoundException
    Constructs a new instance of this class with the specified detail message.
    PathNotFoundException(String, Throwable) - Constructor for class javax.jcr.PathNotFoundException
    Constructs a new instance of this class with the specified detail message and root cause.
    PathNotFoundException(Throwable) - Constructor for class javax.jcr.PathNotFoundException
    Constructs a new instance of this class with the specified root cause.
    Property - interface javax.jcr.Property.
    A Property object represents the smallest granularity of content storage.
    PropertyDefinition - interface javax.jcr.nodetype.PropertyDefinition.
    A property definition.
    PropertyIterator - interface javax.jcr.PropertyIterator.
    Allows easy iteration through a list of Propertys with nextProperty as well as a skip method.
    PropertyType - class javax.jcr.PropertyType.
    The property types supported by the JCR standard.
    printStackTrace() - Method in class javax.jcr.RepositoryException
    Prints this RepositoryException and its backtrace to the standard error stream.
    printStackTrace(PrintStream) - Method in class javax.jcr.RepositoryException
    Prints this RepositoryException and its backtrace to the specified print stream.
    printStackTrace(PrintWriter) - Method in class javax.jcr.RepositoryException
    Prints this RepositoryException and its backtrace to the specified print writer.

    Q

    QUERY_XPATH_DOC_ORDER - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that XPath queries return results in document order.
    QUERY_XPATH_POS_INDEX - Static variable in interface javax.jcr.Repository
    The presence of this key indicates that the index position notation for same-name siblings is supported within XPath queries.
    Query - interface javax.jcr.query.Query.
    A Query object.
    QueryManager - interface javax.jcr.query.QueryManager.
    This interface encapsulates methods for the management of search queries.
    QueryResult - interface javax.jcr.query.QueryResult.
    A QueryResult object.

    R

    REFERENCE - Static variable in class javax.jcr.PropertyType
     
    REP_NAME_DESC - Static variable in interface javax.jcr.Repository
    The descriptor key for the name of this repository implementation.
    REP_VENDOR_DESC - Static variable in interface javax.jcr.Repository
    The descriptor key for the name of the repository vendor.
    REP_VENDOR_URL_DESC - Static variable in interface javax.jcr.Repository
    The descriptor key for the URL of the repository vendor.
    REP_VERSION_DESC - Static variable in interface javax.jcr.Repository
    The descriptor key for the version of this repository implementation.
    RangeIterator - interface javax.jcr.RangeIterator.
    Extends Iterator with the skip, getSize and getPosition methods.
    ReferentialIntegrityException - exception javax.jcr.ReferentialIntegrityException.
    Exception thrown on referential integrity violation.
    ReferentialIntegrityException() - Constructor for class javax.jcr.ReferentialIntegrityException
    Constructs a new instance of this class with null as its detail message.
    ReferentialIntegrityException(String) - Constructor for class javax.jcr.ReferentialIntegrityException
    Constructs a new instance of this class with the specified detail message.
    ReferentialIntegrityException(String, Throwable) - Constructor for class javax.jcr.ReferentialIntegrityException
    Constructs a new instance of this class with the specified detail message and root cause.
    ReferentialIntegrityException(Throwable) - Constructor for class javax.jcr.ReferentialIntegrityException
    Constructs a new instance of this class with the specified root cause.
    Repository - interface javax.jcr.Repository.
    The entry point into the content repository.
    RepositoryException - exception javax.jcr.RepositoryException.
    Main exception thrown by classes in this package.
    RepositoryException() - Constructor for class javax.jcr.RepositoryException
    Constructs a new instance of this class with null as its detail message.
    RepositoryException(String) - Constructor for class javax.jcr.RepositoryException
    Constructs a new instance of this class with the specified detail message.
    RepositoryException(String, Throwable) - Constructor for class javax.jcr.RepositoryException
    Constructs a new instance of this class with the specified detail message and root cause.
    RepositoryException(Throwable) - Constructor for class javax.jcr.RepositoryException
    Constructs a new instance of this class with the specified root cause.
    Row - interface javax.jcr.query.Row.
    A row in the query result table.
    RowIterator - interface javax.jcr.query.RowIterator.
     
    refresh(boolean) - Method in interface javax.jcr.Item
    If keepChanges is false, this method discards all pending changes currently recorded in this Session that apply to this Item or any of its descendants (that is, the subtree rooted at this Item)and returns all items to reflect the current saved state.
    refresh(boolean) - Method in interface javax.jcr.Session
    If keepChanges is false, this method discards all pending changes currently recorded in this Session and returns all items to reflect the current saved state.
    refresh() - Method in interface javax.jcr.lock.Lock
    If this lock's time-to-live is governed by a timer, this method resets that timer so that the lock does not timeout and expire.
    registerNamespace(String, String) - Method in interface javax.jcr.NamespaceRegistry
    Sets a one-to-one mapping between prefix and URI in the global namespace registry of this repository.
    remove() - Method in interface javax.jcr.Item
    Removes this item (and its subtree).
    removeAttribute(String) - Method in class javax.jcr.SimpleCredentials
    Removes an attribute from this credentials instance.
    removeEventListener(EventListener) - Method in interface javax.jcr.observation.ObservationManager
    Deregisters an event listener.
    removeLockToken(String) - Method in interface javax.jcr.Session
    Removes the specified lock token from this session.
    removeMixin(String) - Method in interface javax.jcr.Node
    Removes the specified mixin node type from this node.
    removeVersion(String) - Method in interface javax.jcr.version.VersionHistory
    Removes the named version from this version history and automatically repairs the version graph.
    removeVersionLabel(String) - Method in interface javax.jcr.version.VersionHistory
    Removes the specified label from among the labels of this version history.
    restore(String, boolean) - Method in interface javax.jcr.Node
    Restores this node to the state defined by the version with the specified versionName.
    restore(Version, boolean) - Method in interface javax.jcr.Node
    Restores this node to the state defined by the specified version.
    restore(Version, String, boolean) - Method in interface javax.jcr.Node
    Restores the specified version to relPath, relative to this node.
    restore(Version[], boolean) - Method in interface javax.jcr.Workspace
    Restores a set of versions at once.
    restoreByLabel(String, boolean) - Method in interface javax.jcr.Node
    Restores the version of this node with the specified version label.
    rootCause - Variable in class javax.jcr.RepositoryException
    Root failure cause

    S

    SPEC_NAME_DESC - Static variable in interface javax.jcr.Repository
    The descriptor key for the name of the specification that this repository implements.
    SPEC_VERSION_DESC - Static variable in interface javax.jcr.Repository
    The descriptor key for the version of the specification that this repository implements.
    SQL - Static variable in interface javax.jcr.query.Query
    A String constant representing the SQL query language applied to the database view of the workspace.
    STRING - Static variable in class javax.jcr.PropertyType
     
    Session - interface javax.jcr.Session.
    The Session object provides read and (in level 2) write access to the content of a particular workspace in the repository.
    SimpleCredentials - class javax.jcr.SimpleCredentials.
    SimpleCredentials implements the Credentials interface and represents simple user ID/password credentials.
    SimpleCredentials(String, char[]) - Constructor for class javax.jcr.SimpleCredentials
    Create a new SimpleCredentials object, given a user ID and password.
    save() - Method in interface javax.jcr.Item
    Validates all pending changes currently recorded in this Session that apply to this Item or any of its descendants (that is, the subtree rooted at this Item).
    save() - Method in interface javax.jcr.Session
    Validates all pending changes currently recorded in this Session.
    setAttribute(String, Object) - Method in class javax.jcr.SimpleCredentials
    Stores an attribute in this credentials instance.
    setNamespacePrefix(String, String) - Method in interface javax.jcr.Session
    Within the scope of this session, rename a persistently registered namespace URI to the new prefix.
    setProperty(String, Value) - Method in interface javax.jcr.Node
    Sets the specified (single-value) property of this node to the specified value.
    setProperty(String, Value, int) - Method in interface javax.jcr.Node
    Sets the specified (single-value) property to the specified value.
    setProperty(String, Value[]) - Method in interface javax.jcr.Node
    Sets the specified (multi-value) property to the specified array of values.
    setProperty(String, Value[], int) - Method in interface javax.jcr.Node
    Sets the specified (multi-value) property to the specified array of values.
    setProperty(String, String[]) - Method in interface javax.jcr.Node
    Sets the specified property to the specified array of values.
    setProperty(String, String[], int) - Method in interface javax.jcr.Node
    Sets the specified property to the specified array of values and to the specified type.
    setProperty(String, String) - Method in interface javax.jcr.Node
    Sets the specified property to the specified value.
    setProperty(String, String, int) - Method in interface javax.jcr.Node
    Sets the specified (single-value) property to the specified value.
    setProperty(String, InputStream) - Method in interface javax.jcr.Node
    Sets the specified property to the specified value.
    setProperty(String, boolean) - Method in interface javax.jcr.Node
    Sets the specified property to the specified value.
    setProperty(String, double) - Method in interface javax.jcr.Node
    Sets the specified property to the specified value.
    setProperty(String, long) - Method in interface javax.jcr.Node
    Sets the specified property to the specified value.
    setProperty(String, Calendar) - Method in interface javax.jcr.Node
    Sets the specified property to the specified value.
    setProperty(String, Node) - Method in interface javax.jcr.Node
    Sets the specified (REFERENCE)property to refer to the specified Node.
    setValue(Value) - Method in interface javax.jcr.Property
    Sets the value of this property to value.
    setValue(Value[]) - Method in interface javax.jcr.Property
    Sets the value of this property to the values array.
    setValue(String) - Method in interface javax.jcr.Property
    Sets the value of this property to value.
    setValue(String[]) - Method in interface javax.jcr.Property
    Sets the value of this property to the values array.
    setValue(InputStream) - Method in interface javax.jcr.Property
    Sets the value of this property to value.
    setValue(long) - Method in interface javax.jcr.Property
    Sets the value of this property to value.
    setValue(double) - Method in interface javax.jcr.Property
    Sets the value of this property to value.
    setValue(Calendar) - Method in interface javax.jcr.Property
    Sets the value of this property to value.
    setValue(boolean) - Method in interface javax.jcr.Property
    Sets the value of this property to value.
    setValue(Node) - Method in interface javax.jcr.Property
    Sets this REFERENCE property to refer to the specified node.
    skip(long) - Method in interface javax.jcr.RangeIterator
    Skip a number of elements in the iterator.
    storeAsNode(String) - Method in interface javax.jcr.query.Query
    Creates a node representing this Query in content.

    T

    TYPENAME_BINARY - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_BOOLEAN - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_DATE - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_DOUBLE - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_LONG - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_NAME - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_PATH - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_REFERENCE - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_STRING - Static variable in class javax.jcr.PropertyType
     
    TYPENAME_UNDEFINED - Static variable in class javax.jcr.PropertyType
     
    TraversingItemVisitor - class javax.jcr.util.TraversingItemVisitor.
    An implementation of ItemVisitor.
    TraversingItemVisitor() - Constructor for class javax.jcr.util.TraversingItemVisitor
    Constructs a new instance of this class.
    TraversingItemVisitor(boolean) - Constructor for class javax.jcr.util.TraversingItemVisitor
    Constructs a new instance of this class.
    TraversingItemVisitor(boolean, int) - Constructor for class javax.jcr.util.TraversingItemVisitor
    Constructs a new instance of this class.
    TraversingItemVisitor.Default - class javax.jcr.util.TraversingItemVisitor.Default.
    Convenience class providing default implementations of the abstract methods of TraversingItemVisitor.
    TraversingItemVisitor.Default() - Constructor for class javax.jcr.util.TraversingItemVisitor.Default
     
    TraversingItemVisitor.Default(boolean) - Constructor for class javax.jcr.util.TraversingItemVisitor.Default
     
    TraversingItemVisitor.Default(boolean, int) - Constructor for class javax.jcr.util.TraversingItemVisitor.Default
     

    U

    UNDEFINED - Static variable in class javax.jcr.PropertyType
     
    UnsupportedRepositoryOperationException - exception javax.jcr.UnsupportedRepositoryOperationException.
    Thrown by methods that are not supported by a particluar implementation
    UnsupportedRepositoryOperationException() - Constructor for class javax.jcr.UnsupportedRepositoryOperationException
    Constructs a new instance of this class with null as its detail message.
    UnsupportedRepositoryOperationException(String) - Constructor for class javax.jcr.UnsupportedRepositoryOperationException
    Constructs a new instance of this class with the specified detail message.
    UnsupportedRepositoryOperationException(String, Throwable) - Constructor for class javax.jcr.UnsupportedRepositoryOperationException
    Constructs a new instance of this class with the specified detail message and root cause.
    UnsupportedRepositoryOperationException(Throwable) - Constructor for class javax.jcr.UnsupportedRepositoryOperationException
    Constructs a new instance of this class with the specified root cause.
    unlock() - Method in interface javax.jcr.Node
    Removes the lock on this node.
    unregisterNamespace(String) - Method in interface javax.jcr.NamespaceRegistry
    Removes a namespace mapping from the registry.
    update(String) - Method in interface javax.jcr.Node
    If this node does have a corresponding node in the workspace srcWorkspaceName, then this replaces this node and its subtree with a clone of the corresponding node and its subtree.

    V

    VERSION - Static variable in class javax.jcr.version.OnParentVersionAction
     
    Value - interface javax.jcr.Value.
    A generic holder for the value of a property.
    ValueFactory - interface javax.jcr.ValueFactory.
    The ValueFactory object provides methods for the creation Value objects that can then be used to set properties.
    ValueFormatException - exception javax.jcr.ValueFormatException.
    Exception thrown when an attempt is made to assign a value to a property that has an invalid format, given the type of the property.
    ValueFormatException() - Constructor for class javax.jcr.ValueFormatException
    Constructs a new instance of this class with null as its detail message.
    ValueFormatException(String) - Constructor for class javax.jcr.ValueFormatException
    Constructs a new instance of this class with the specified detail message.
    ValueFormatException(String, Throwable) - Constructor for class javax.jcr.ValueFormatException
    Constructs a new instance of this class with the specified detail message and root cause.
    ValueFormatException(Throwable) - Constructor for class javax.jcr.ValueFormatException
    Constructs a new instance of this class with the specified root cause.
    Version - interface javax.jcr.version.Version.
    A Version object wraps an nt:version node.
    VersionException - exception javax.jcr.version.VersionException.
    Exception thrown by Version.addSuccessor if an invalid version graph operation is attempted.
    VersionException() - Constructor for class javax.jcr.version.VersionException
    Constructs a new instance of this class with null as its detail message.
    VersionException(String) - Constructor for class javax.jcr.version.VersionException
    Constructs a new instance of this class with the specified detail message.
    VersionException(String, Throwable) - Constructor for class javax.jcr.version.VersionException
    Constructs a new instance of this class with the specified detail message and root cause.
    VersionException(Throwable) - Constructor for class javax.jcr.version.VersionException
    Constructs a new instance of this class with the specified root cause.
    VersionHistory - interface javax.jcr.version.VersionHistory.
    A VersionHistory object wraps an nt:versionHistory node.
    VersionIterator - interface javax.jcr.version.VersionIterator.
    Allows easy iteration through a list of Versions objects with nextVersion as well as a skip method inherited from RangeIterator.
    valueFromName(String) - Static method in class javax.jcr.PropertyType
    Returns the numeric constant value of the type with the specified name.
    valueFromName(String) - Static method in class javax.jcr.version.OnParentVersionAction
    Returns the numeric constant value of the on-version action with the specified name.
    visit(Property) - Method in interface javax.jcr.ItemVisitor
    This method is called when the ItemVisitor is passed to the accept method of a Property.
    visit(Node) - Method in interface javax.jcr.ItemVisitor
    This method is called when the ItemVisitor is passed to the accept method of a Node.
    visit(Property) - Method in class javax.jcr.util.TraversingItemVisitor
    Called when the Visitor is passed to a Property.
    visit(Node) - Method in class javax.jcr.util.TraversingItemVisitor
    Called when the Visitor is passed to a Node.

    W

    Workspace - interface javax.jcr.Workspace.
    The Workspace object represents a "view" of an actual repository workspace entity as seen through the authorization settings of its associated Session.

    X

    XPATH - Static variable in interface javax.jcr.query.Query
    A String constant representing the XPath query language applied to the document view XML mapping of the workspace.

    A B C D E G H I J L M N O P Q R S T U V W X

    Copyright © 2004-2005 Day Software Management AG. All Rights Reserved.