Uses of Class
org.apache.jackrabbit.core.PropertyId

Packages that use PropertyId
org.apache.jackrabbit.core Contains the core classes that provide the implementation of the JCR API. 
org.apache.jackrabbit.core.journal   
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.util   
org.apache.jackrabbit.core.persistence.xml   
org.apache.jackrabbit.core.state   
org.apache.jackrabbit.core.virtual   
 

Uses of PropertyId in org.apache.jackrabbit.core
 

Methods in org.apache.jackrabbit.core that return PropertyId
 PropertyId HierarchyManagerImpl.resolvePropertyPath(Path path)
          Resolves a path into a property id.
 PropertyId HierarchyManager.resolvePropertyPath(Path path)
          Resolves a path into a property id.
protected  PropertyId NodeImpl.resolveRelativePropertyPath(String relPath)
          Returns the id of the property at relPath or null if no property exists at relPath.
static PropertyId PropertyId.valueOf(String s)
          Returns a property identifier instance holding the value of the specified string.
 

Methods in org.apache.jackrabbit.core with parameters of type PropertyId
 PropertyState BatchedItemOperations.getPropertyState(PropertyId id)
          Retrieves the state of the property with the given id.
 

Uses of PropertyId in org.apache.jackrabbit.core.journal
 

Methods in org.apache.jackrabbit.core.journal that return PropertyId
 PropertyId Record.readPropertyId()
          Read a PropertyId from the underlying stream.
 PropertyId AbstractRecord.readPropertyId()
          Read a PropertyId from the underlying stream.
 

Methods in org.apache.jackrabbit.core.journal with parameters of type PropertyId
 void Record.writePropertyId(PropertyId propertyId)
          Write a PropertyId to the underlying stream.
 void AbstractRecord.writePropertyId(PropertyId propertyId)
          Write a PropertyId to the underlying stream.
 

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

Methods in org.apache.jackrabbit.core.persistence with parameters of type PropertyId
 PropertyState PersistenceManager.createNew(PropertyId id)
          Creates a new property state instance with the given id.
 PropertyState AbstractPersistenceManager.createNew(PropertyId id)
          Creates a new property state instance with the given id.
 boolean PersistenceManager.exists(PropertyId id)
          Checks whether the identified property exists.
 PropertyState PersistenceManager.load(PropertyId id)
          Load the persistent members of a property state.
 

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

Methods in org.apache.jackrabbit.core.persistence.bundle with parameters of type PropertyId
protected  StringBuffer AbstractBundlePersistenceManager.buildBlobFilePath(StringBuffer buf, PropertyId id, int i)
          Creates the file path for the given property id and value index that is suitable for storing property values in a filesystem.
protected  StringBuffer AbstractBundlePersistenceManager.buildPropFilePath(StringBuffer buf, PropertyId id)
          Creates the folder path for the given property id that is suitable for storing states in a filesystem.
 String BundleDbPersistenceManager.FSBlobStore.createId(PropertyId id, int index)
           
 String BundleDbPersistenceManager.DbBlobStore.createId(PropertyId id, int index)
          Creates a unique identifier for the BLOB data associated with the given property id and value subscript.
 PropertyState AbstractBundlePersistenceManager.createNew(PropertyId id)
          Creates a new property state instance with the given id.
 boolean AbstractBundlePersistenceManager.exists(PropertyId id)
          Checks whether the identified property exists.
 PropertyState AbstractBundlePersistenceManager.load(PropertyId id)
          Load the persistent members of a property state.
 

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

Methods in org.apache.jackrabbit.core.persistence.bundle.util that return PropertyId
 PropertyId NodePropBundle.PropertyEntry.getId()
          Returns the property id.
 PropertyId ItemStateBinding.readPropertyId(DataInputStream in)
          Deserializes a PropertyId
 

Methods in org.apache.jackrabbit.core.persistence.bundle.util with parameters of type PropertyId
 NodePropBundle.PropertyEntry BundleBinding.readPropertyEntry(DataInputStream in, PropertyId id)
          Deserializes a PropertyState from the data input stream.
 void ItemStateBinding.writePropertyId(DataOutputStream out, PropertyId id)
          Serializes a PropertyId
 

Constructors in org.apache.jackrabbit.core.persistence.bundle.util with parameters of type PropertyId
NodePropBundle.PropertyEntry(PropertyId id)
          Creates a new property entry with the given id.
 

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

Methods in org.apache.jackrabbit.core.persistence.db with parameters of type PropertyId
 boolean DatabasePersistenceManager.exists(PropertyId id)
          Checks whether the identified property exists.
 PropertyState DatabasePersistenceManager.load(PropertyId id)
          Load the persistent members of a property state.
 

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

Methods in org.apache.jackrabbit.core.persistence.mem with parameters of type PropertyId
 boolean InMemPersistenceManager.exists(PropertyId id)
          Checks whether the identified property exists.
 PropertyState InMemPersistenceManager.load(PropertyId id)
          Load the persistent members of a property state.
 

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

Methods in org.apache.jackrabbit.core.persistence.obj with parameters of type PropertyId
 boolean ObjectPersistenceManager.exists(PropertyId id)
          Checks whether the identified property exists.
 PropertyState ObjectPersistenceManager.load(PropertyId id)
          Load the persistent members of a property state.
 

Uses of PropertyId in org.apache.jackrabbit.core.persistence.util
 

Methods in org.apache.jackrabbit.core.persistence.util with parameters of type PropertyId
 String FileSystemBLOBStore.createId(PropertyId id, int index)
          Creates a unique identifier for the BLOB data associated with the given property id and value subscript.
 String BLOBStore.createId(PropertyId id, int index)
          Creates a unique identifier for the BLOB data associated with the given property id and value subscript.
 

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

Methods in org.apache.jackrabbit.core.persistence.xml with parameters of type PropertyId
 boolean XMLPersistenceManager.exists(PropertyId id)
          Checks whether the identified property exists.
 PropertyState XMLPersistenceManager.load(PropertyId id)
          Load the persistent members of a property state.
 

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

Methods in org.apache.jackrabbit.core.state that return PropertyId
 PropertyId PropertyState.getPropertyId()
          Returns the identifier of this property.
 

Methods in org.apache.jackrabbit.core.state with parameters of type PropertyId
 void NodeReferences.addReference(PropertyId refId)
           
protected  PropertyState LocalItemStateManager.getPropertyState(PropertyId id)
          Retrieve a property state from the parent shared state manager and wraps it into a intermediate object that helps us handle local modifications.
 boolean NodeReferences.removeReference(PropertyId refId)
           
 

Constructors in org.apache.jackrabbit.core.state with parameters of type PropertyId
PropertyState(PropertyId id, int initialStatus, boolean isTransient)
          Create a new PropertyState
 

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

Methods in org.apache.jackrabbit.core.virtual with parameters of type PropertyId
protected  VirtualPropertyState AbstractVISProvider.internalGetPropertyState(PropertyId id)
          Retrieces the property state for the given id
protected  boolean AbstractVISProvider.internalHasPropertyState(PropertyId id)
          Checks if this provider has the property state of the given id.
 

Constructors in org.apache.jackrabbit.core.virtual with parameters of type PropertyId
VirtualPropertyState(PropertyId id)
          Creates a new virtual property state
 



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