Uses of Class
org.apache.jackrabbit.core.state.NodeReferencesId

Packages that use NodeReferencesId
org.apache.jackrabbit.core.persistence   
org.apache.jackrabbit.core.persistence.bundle   
org.apache.jackrabbit.core.persistence.bundle.util   
org.apache.jackrabbit.core.persistence.db This package contains the class SimpleDbPersistenceManager, a simple generic JDBC-based PersistenceManager for Jackrabbit. 
org.apache.jackrabbit.core.persistence.mem   
org.apache.jackrabbit.core.persistence.obj   
org.apache.jackrabbit.core.persistence.xml   
org.apache.jackrabbit.core.state   
org.apache.jackrabbit.core.version The versioning framework in jackrabbit consists of 3 layers. 
org.apache.jackrabbit.core.virtual   
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.persistence
 

Methods in org.apache.jackrabbit.core.persistence with parameters of type NodeReferencesId
 boolean PersistenceManager.exists(NodeReferencesId targetId)
          Checks whether references of the identified target node exist.
 NodeReferences PersistenceManager.load(NodeReferencesId id)
          Load the persistent members of a node references object.
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.persistence.bundle
 

Methods in org.apache.jackrabbit.core.persistence.bundle with parameters of type NodeReferencesId
protected  StringBuffer BundleFsPersistenceManager.buildNodeReferencesFilePath(StringBuffer buf, NodeReferencesId id)
          Creates the file path for the given references id that is suitable for storing reference states in a filesystem.
protected  StringBuffer AbstractBundlePersistenceManager.buildNodeReferencesFilePath(StringBuffer buf, NodeReferencesId id)
          Creates the file path for the given references id that is suitable for storing reference states in a filesystem.
 boolean BundleFsPersistenceManager.exists(NodeReferencesId targetId)
          Checks whether references of the identified target node exist.
 boolean BundleDbPersistenceManager.exists(NodeReferencesId targetId)
          Checks whether references of the identified target node exist.
 NodeReferences BundleFsPersistenceManager.load(NodeReferencesId targetId)
          Load the persistent members of a node references object.
 NodeReferences BundleDbPersistenceManager.load(NodeReferencesId targetId)
          Load the persistent members of a node references object.
abstract  NodeReferences AbstractBundlePersistenceManager.load(NodeReferencesId targetId)
          Load the persistent members of a node references object.
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.persistence.bundle.util
 

Methods in org.apache.jackrabbit.core.persistence.bundle.util with parameters of type NodeReferencesId
 NodeReferences ItemStateBinding.readState(DataInputStream in, NodeReferencesId id, PersistenceManager pMgr)
          Deserializes a NodeReferences from the data input stream.
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.persistence.db
 

Methods in org.apache.jackrabbit.core.persistence.db with parameters of type NodeReferencesId
 boolean DatabasePersistenceManager.exists(NodeReferencesId targetId)
          Checks whether references of the identified target node exist.
 NodeReferences DatabasePersistenceManager.load(NodeReferencesId targetId)
          Load the persistent members of a node references object.
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.persistence.mem
 

Methods in org.apache.jackrabbit.core.persistence.mem with parameters of type NodeReferencesId
 boolean InMemPersistenceManager.exists(NodeReferencesId id)
          Checks whether references of the identified target node exist.
 NodeReferences InMemPersistenceManager.load(NodeReferencesId id)
          Load the persistent members of a node references object.
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.persistence.obj
 

Methods in org.apache.jackrabbit.core.persistence.obj with parameters of type NodeReferencesId
 boolean ObjectPersistenceManager.exists(NodeReferencesId id)
          Checks whether references of the identified target node exist.
 NodeReferences ObjectPersistenceManager.load(NodeReferencesId id)
          Load the persistent members of a node references object.
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.persistence.xml
 

Methods in org.apache.jackrabbit.core.persistence.xml with parameters of type NodeReferencesId
 boolean XMLPersistenceManager.exists(NodeReferencesId id)
          Checks whether references of the identified target node exist.
 NodeReferences XMLPersistenceManager.load(NodeReferencesId id)
          Load the persistent members of a node references object.
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.state
 

Fields in org.apache.jackrabbit.core.state declared as NodeReferencesId
protected  NodeReferencesId NodeReferences.id
          identifier of this NodeReferences instance.
 

Methods in org.apache.jackrabbit.core.state that return NodeReferencesId
 NodeReferencesId NodeReferences.getId()
          Returns the identifier of this node references object.
static NodeReferencesId NodeReferencesId.valueOf(String s)
          Returns a NodeReferencesId holding the value of the specified string.
 

Methods in org.apache.jackrabbit.core.state with parameters of type NodeReferencesId
 NodeReferences ChangeLog.get(NodeReferencesId id)
          Return a node references object given its id.
 NodeReferences XAItemStateManager.getNodeReferences(NodeReferencesId id)
          Return a node references object, given its target id
 NodeReferences SharedItemStateManager.getNodeReferences(NodeReferencesId id)
          Return a node references object, given its target id
 NodeReferences SessionItemStateManager.getNodeReferences(NodeReferencesId id)
          Return a node references object, given its target id
 NodeReferences LocalItemStateManager.getNodeReferences(NodeReferencesId id)
          Return a node references object, given its target id
 NodeReferences ItemStateManager.getNodeReferences(NodeReferencesId id)
          Return a node references object, given its target id
 boolean XAItemStateManager.hasNodeReferences(NodeReferencesId id)
          Return a flag indicating whether a node references object for a given target id exists.
 boolean SharedItemStateManager.hasNodeReferences(NodeReferencesId id)
          Return a flag indicating whether a node references object for a given target id exists.
 boolean SessionItemStateManager.hasNodeReferences(NodeReferencesId id)
          Return a flag indicating whether a node references object for a given target id exists.
 boolean LocalItemStateManager.hasNodeReferences(NodeReferencesId id)
          Return a flag indicating whether a node references object for a given target id exists.
 boolean ItemStateManager.hasNodeReferences(NodeReferencesId id)
          Return a flag indicating whether a node references object for a given target id exists.
 

Constructors in org.apache.jackrabbit.core.state with parameters of type NodeReferencesId
NodeReferences(NodeReferencesId id)
          Package private constructor
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.version
 

Methods in org.apache.jackrabbit.core.version with parameters of type NodeReferencesId
 NodeReferences XAVersionManager.getNodeReferences(NodeReferencesId id)
          Return a node references object, given its target id
 NodeReferences VersionItemStateManager.getNodeReferences(NodeReferencesId id)
           
 boolean XAVersionManager.hasNodeReferences(NodeReferencesId id)
          Return a flag indicating whether a node references object for a given target id exists.
 boolean VersionItemStateManager.hasNodeReferences(NodeReferencesId id)
           
 

Uses of NodeReferencesId in org.apache.jackrabbit.core.virtual
 

Methods in org.apache.jackrabbit.core.virtual with parameters of type NodeReferencesId
 NodeReferences AbstractVISProvider.getNodeReferences(NodeReferencesId id)
          Return a node references object, given its target id
 boolean AbstractVISProvider.hasNodeReferences(NodeReferencesId id)
          Return a flag indicating whether a node references object for a given target id exists.
 



Copyright © 2004-2009 The Apache Software Foundation. All Rights Reserved.