Uses of Class
org.apache.jackrabbit.uuid.UUID

Packages that use UUID
org.apache.jackrabbit.core Contains the core classes that provide the implementation of the JCR API. 
org.apache.jackrabbit.core.persistence.bundle   
org.apache.jackrabbit.core.persistence.bundle.util   
org.apache.jackrabbit.core.query.lucene   
org.apache.jackrabbit.core.state   
org.apache.jackrabbit.core.util   
org.apache.jackrabbit.core.value   
org.apache.jackrabbit.core.version The versioning framework in jackrabbit consists of 3 layers. 
org.apache.jackrabbit.uuid This package contains a UUID (Universally Unique Identifier) version 4 generator implementation copied from from the Jakarta Commons-Id project. 
 

Uses of UUID in org.apache.jackrabbit.core
 

Methods in org.apache.jackrabbit.core that return UUID
 UUID NodeId.getUUID()
          Returns the UUID of the identified node.
 UUID NodeImpl.internalGetUUID()
          Returns the (internal) uuid of this node.
 

Methods in org.apache.jackrabbit.core with parameters of type UUID
 NodeImpl NodeImpl.addNode(Name nodeName, Name nodeTypeName, UUID uuid)
          Same as Node.addNode(String, String) except that this method takes Name arguments instead of Strings and has an additional uuid argument.
 Node SessionImpl.getNodeByUUID(UUID uuid)
          Retrieves the referenceable node with the given UUID.
 

Constructors in org.apache.jackrabbit.core with parameters of type UUID
NodeId(UUID uuid)
          Creates a node identifier instance for the identified node.
 

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

Methods in org.apache.jackrabbit.core.persistence.bundle that return UUID
protected  UUID BundleFsPersistenceManager.getUUIDFromFileName(String fileName)
          
 

Methods in org.apache.jackrabbit.core.persistence.bundle with parameters of type UUID
protected  Object[] BundleDbPersistenceManager.createParams(UUID uuid, Object p, boolean before)
          Creates a parameter array for an SQL statement that needs (i) a UUID, and (2) another parameter.
protected  Object[] BundleDbPersistenceManager.getKey(UUID uuid)
          Constructs a parameter list for a PreparedStatement for the given UUID.
protected  int BundleDbPersistenceManager.setKey(PreparedStatement stmt, UUID uuid, int pos)
          Sets the key parameters to the prepared statement, starting at pos and returns the number of key parameters + pos.
 

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

Methods in org.apache.jackrabbit.core.persistence.bundle.util that return UUID
 UUID ItemStateBinding.readUUID(DataInputStream in)
          Deserializes a UUID
 

Methods in org.apache.jackrabbit.core.persistence.bundle.util with parameters of type UUID
 void ItemStateBinding.writeUUID(DataOutputStream out, UUID uuid)
          Serializes a UUID
 

Uses of UUID in org.apache.jackrabbit.core.query.lucene
 

Methods in org.apache.jackrabbit.core.query.lucene with parameters of type UUID
 org.apache.jackrabbit.core.query.lucene.ForeignSegmentDocId SearchIndex.CombinedIndexReader.createDocId(UUID uuid)
          Creates a document id for the given uuid.
 org.apache.jackrabbit.core.query.lucene.ForeignSegmentDocId MultiIndexReader.createDocId(UUID uuid)
          Creates a document id for the given uuid.
 org.apache.jackrabbit.core.query.lucene.ForeignSegmentDocId JackrabbitIndexReader.createDocId(UUID uuid)
          Creates a document id for the given uuid.
 org.apache.jackrabbit.core.query.lucene.ForeignSegmentDocId CachingMultiIndexReader.createDocId(UUID uuid)
          Creates a document id for the given uuid.
 

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

Constructors in org.apache.jackrabbit.core.state with parameters of type UUID
NodeReferencesId(UUID uuid)
          Creates a new instance of this class.
 

Uses of UUID in org.apache.jackrabbit.core.util
 

Methods in org.apache.jackrabbit.core.util that return UUID
 UUID ReferenceChangeTracker.getMappedUUID(UUID oldUUID)
          Returns the new UUID to which oldUUID has been mapped or null if no such mapping exists.
 

Methods in org.apache.jackrabbit.core.util with parameters of type UUID
 UUID ReferenceChangeTracker.getMappedUUID(UUID oldUUID)
          Returns the new UUID to which oldUUID has been mapped or null if no such mapping exists.
 void ReferenceChangeTracker.mappedUUID(UUID oldUUID, UUID newUUID)
          Store the given uuid mapping for later lookup using ReferenceChangeTracker.getMappedUUID(UUID).
 

Uses of UUID in org.apache.jackrabbit.core.value
 

Methods in org.apache.jackrabbit.core.value that return UUID
 UUID InternalValue.getUUID()
           
 

Methods in org.apache.jackrabbit.core.value with parameters of type UUID
static InternalValue InternalValue.create(UUID value)
           
 

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

Methods in org.apache.jackrabbit.core.version that return UUID
 UUID InternalFrozenNode.getFrozenUUID()
          Returns the frozen UUID.
 UUID InternalVersionHistory.getVersionableUUID()
          Returns the UUID of the versionable node that this history belongs to.
 

Methods in org.apache.jackrabbit.core.version with parameters of type UUID
 boolean InternalFrozenNode.hasFrozenHistory(UUID uuid)
          Checks if this frozen node has the frozen version history
 

Uses of UUID in org.apache.jackrabbit.uuid
 

Methods in org.apache.jackrabbit.uuid that return UUID
static UUID UUID.fromString(String uuidString)
          Deprecated. Parses a string for a UUID.
 UUID VersionFourGenerator.nextIdentifier()
          Deprecated. Returns a new version four UUID.
 UUID VersionFourGenerator.nextIdentifier(boolean secure)
          Deprecated. Returns a new version four UUID.
static UUID UUID.randomUUID()
          Deprecated. Returns a new version 4 UUID, based upon Random bits.
 



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