Uses of Interface
org.jboss.dna.graph.property.Property

Packages that use Property
org.jboss.dna.connector.store.jpa.util The classes that define the utility JPA entities that are not part of any storage model. 
org.jboss.dna.graph The JBoss DNA Graph API defines the types that allow you to work with content organized as a graph. 
org.jboss.dna.graph.connector.map The MapRepository class and its supporting classes provide a default implementation of the connector classes for connectors that support the transient or persistent mapping of a UUID to a standard representation of a node
org.jboss.dna.graph.io   
org.jboss.dna.graph.observe The Observation API provides several mechanisms for asynchronously observing changes to content. 
org.jboss.dna.graph.property Nodes in a graph contain properties, and this package defines the interfaces, classes and exceptions for representing and working with properties and their values. 
org.jboss.dna.graph.property.basic A set of basic implementations of the various interfaces defined in org.jboss.dna.graph.property
org.jboss.dna.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
org.jboss.dna.graph.sequencer A sequencer in JBoss DNA is a component that is able to process information (usually the content of a file, or a property value on a node) and recreate that information as a graph of structured content. 
org.jboss.dna.graph.session A graph session provides a stateful environment in which graph operations can be enqueued and the state and structure of the graph are cached. 
org.jboss.dna.repository The components and services that make up the JBoss DNA repository engine. 
 

Uses of Property in org.jboss.dna.connector.store.jpa.util
 

Methods in org.jboss.dna.connector.store.jpa.util that return Property
 Property Serializer.deserializeProperty(ObjectInputStream stream, Serializer.LargeValues largeValues)
          Deserialize the serialized property on the supplied object stream.
 

Methods in org.jboss.dna.connector.store.jpa.util with parameters of type Property
 boolean Serializer.serializeProperty(ObjectOutputStream stream, Property property, Serializer.LargeValues largeValues, Serializer.ReferenceValues references)
          Serialize the property's values to the object stream.
 

Method parameters in org.jboss.dna.connector.store.jpa.util with type arguments of type Property
 void Serializer.deserializeAllProperties(ObjectInputStream stream, Collection<Property> properties, Serializer.LargeValues largeValues)
          Deserialize the serialized properties on the supplied object stream.
 void Serializer.deserializeSomeProperties(ObjectInputStream stream, Collection<Property> properties, Serializer.LargeValues largeValues, Serializer.LargeValues skippedLargeValues, Name... names)
          Deserialize the serialized properties on the supplied object stream.
 int Serializer.reserializeProperties(ObjectInputStream input, ObjectOutputStream output, Map<Name,Property> updatedProperties, Serializer.LargeValues largeValues, Serializer.LargeValues removedLargeValues, Serializer.ReferenceValues references)
          Deserialize the existing properties from the supplied input stream, update the properties, and then serialize the updated properties to the output stream.
 void Serializer.serializeProperties(ObjectOutputStream stream, int number, Iterable<Property> properties, Serializer.LargeValues largeValues, Serializer.ReferenceValues references)
          Serialize the properties' values to the object stream.
 

Uses of Property in org.jboss.dna.graph
 

Methods in org.jboss.dna.graph that return Property
 Property Location.getIdProperty(Name name)
          Get the identification property with the supplied name, if there is such a property.
 Property Node.getProperty(Name name)
          Get the property with the supplied name.
 Property Node.getProperty(String name)
          Get the property with the supplied name.
 

Methods in org.jboss.dna.graph that return types with arguments of type Property
abstract  List<Property> Location.getIdProperties()
          Get the identification properties that (at least in part) define this location.
 Collection<Property> Node.getProperties()
          Get the properties on the node.
 Graph.On<Collection<Property>> Graph.getProperties()
          Request that the properties be read on the node defined via the on(...)
 Map<Name,Property> Node.getPropertiesByName()
          Get the map of properties keyed by the property names.
 Graph.On<Map<Name,Property>> Graph.getPropertiesByName()
          Request that the properties be read on the node defined via the on(...)
 Graph.On<Property> Graph.getProperty(Name name)
          Request that the property with the given name be read on the node defined via the on(...)
 Graph.On<Property> Graph.getProperty(String name)
          Request that the property with the given name be read on the node defined via the on(...)
 Iterator<Property> Location.iterator()
          
 

Methods in org.jboss.dna.graph with parameters of type Property
 Next Graph.And.and(Property idProperty)
          Specify that another node should also be copied or moved.
 Graph.Create<Next> Graph.Create.and(Property property)
          Specify a property that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.and(Property property)
          Specify a property that should the new node should have.
 Next Graph.And.and(Property firstIdProperty, Property... additionalIdProperties)
          Specify that another node should also be copied or moved.
 Next Graph.And.and(Property firstIdProperty, Property... additionalIdProperties)
          Specify that another node should also be copied or moved.
 Graph.Create<Next> Graph.Create.and(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.Create<Next> Graph.Create.and(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.and(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.and(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Next Graph.At.at(Property idProperty)
          Specify the unique identification property that identifies the node upon which the request is to operate.
 Next Graph.At.at(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Next Graph.At.at(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Next Graph.Before.before(Property parentIdProperty)
          Finish the request by specifying the location of the node before which the node should be copied/moved.
 Next Graph.Before.before(Property firstParentIdProperty, Property... additionalParentIdProperties)
          Finish the request by specifying the location of the node before which the node should be copied/moved.
 Next Graph.Before.before(Property firstParentIdProperty, Property... additionalParentIdProperties)
          Finish the request by specifying the location of the node before which the node should be copied/moved.
 Graph.Clone<Graph> Graph.clone(Property idProperty)
          Begin the request to clone a node with the specified unique identification property into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph.BatchConjunction> Graph.Batch.clone(Property idProperty)
          Begin the request to clone a node with the specified unique identification property into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph> Graph.clone(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to clone a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph> Graph.clone(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to clone a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph.BatchConjunction> Graph.Batch.clone(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to clone a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph.BatchConjunction> Graph.Batch.clone(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to clone a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph> Graph.copy(Property idProperty)
          Begin the request to copy a node with the specified unique identification property into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph.BatchConjunction> Graph.Batch.copy(Property idProperty)
          Begin the request to copy a node with the specified unique identification property into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph> Graph.copy(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to copy a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph> Graph.copy(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to copy a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph.BatchConjunction> Graph.Batch.copy(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to copy a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph.BatchConjunction> Graph.Batch.copy(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to copy a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
static Location Location.create(Path path, Property idProperty)
          Create a location defined by a path and a single identification property.
 Graph.Create<Graph> Graph.create(Path at, Property property)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at, Property property)
          Begin the request to create a node located at the supplied path.
static Location Location.create(Path path, Property firstIdProperty, Property... remainingIdProperties)
          Create a location defined by a path and multiple identification properties.
static Location Location.create(Path path, Property firstIdProperty, Property... remainingIdProperties)
          Create a location defined by a path and multiple identification properties.
 Graph.Create<Graph> Graph.create(Path at, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(Path at, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
static Location Location.create(Property idProperty)
          Create a location defined by a single identification property.
static Location Location.create(Property firstIdProperty, Property... remainingIdProperties)
          Create a location defined by multiple identification properties.
static Location Location.create(Property firstIdProperty, Property... remainingIdProperties)
          Create a location defined by multiple identification properties.
 Graph.Create<Graph> Graph.create(String atPath, Property property)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(String atPath, Property property)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(String atPath, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(String atPath, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(String atPath, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(String atPath, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Conjunction<Graph> Graph.delete(Property idProperty)
          Request to delete the node with the given unique identification property.
 Graph.BatchConjunction Graph.Batch.delete(Property idProperty)
          Request to delete the node with the given unique identification property.
 Graph.Conjunction<Graph> Graph.delete(Property firstIdProperty, Property... additionalIdProperties)
          Request to delete the node with the given identification properties.
 Graph.Conjunction<Graph> Graph.delete(Property firstIdProperty, Property... additionalIdProperties)
          Request to delete the node with the given identification properties.
 Graph.BatchConjunction Graph.Batch.delete(Property firstIdProperty, Property... additionalIdProperties)
          Request to delete the node with the given identification properties.
 Graph.BatchConjunction Graph.Batch.delete(Property firstIdProperty, Property... additionalIdProperties)
          Request to delete the node with the given identification properties.
 Node Graph.getNodeAt(Property idProperty)
          Request to read the node with the supplied unique identifier property.
 Node Graph.getNodeAt(Property firstIdProperty, Property... additionalIdProperties)
          Request to read the node with the supplied unique identifier properties.
 Node Graph.getNodeAt(Property firstIdProperty, Property... additionalIdProperties)
          Request to read the node with the supplied unique identifier properties.
 Next Graph.Into.into(Property parentIdProperty)
          Finish the request by specifying the location of the parent into which the node should be copied/moved.
 Next Graph.ImportInto.into(Property idProperty)
          Finish the import by specifying the Location.create into which the node should be copied/moved.
 Graph.WithUuids<T> Graph.CloneTargetAction.into(Property into)
           
 Next Graph.Into.into(Property firstParentIdProperty, Property... additionalParentIdProperties)
          Finish the request by specifying the location of the parent into which the node should be copied/moved.
 Next Graph.Into.into(Property firstParentIdProperty, Property... additionalParentIdProperties)
          Finish the request by specifying the location of the parent into which the node should be copied/moved.
 Next Graph.ImportInto.into(Property firstIdProperty, Property... additionalIdProperties)
          Finish the import by specifying the Location.create into which the node should be copied/moved.
 Next Graph.ImportInto.into(Property firstIdProperty, Property... additionalIdProperties)
          Finish the import by specifying the Location.create into which the node should be copied/moved.
 Graph.WithUuids<T> Graph.CloneTargetAction.into(Property firstIdProperty, Property... additionalIdProperties)
           
 Graph.WithUuids<T> Graph.CloneTargetAction.into(Property firstIdProperty, Property... additionalIdProperties)
           
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Property idProperty)
          Begin the request to move a node with the specified unique identification property into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.BatchConjunction> Graph.Batch.move(Property idProperty)
          Begin the request to move a node with the specified unique identification property into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to move a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to move a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.BatchConjunction> Graph.Batch.move(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to move a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.BatchConjunction> Graph.Batch.move(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to move a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Next Graph.CreateNode.node(String nodeName, Property... properties)
          Specify the name of the node that is to be created.
 Next Graph.Of.of(Property idProperty)
          Specify the unique identification property that identifies the node upon which the request is to operate.
 Next Graph.Of.of(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Next Graph.Of.of(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Next Graph.On.on(Property idProperty)
          Specify the unique identification property that identifies the node upon which the request is to operate.
 Next Graph.On.on(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Next Graph.On.on(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Graph.BatchConjunction Graph.Batch.read(Property idProperty)
          Request to read the node with the supplied unique identifier property.
 Graph.BatchConjunction Graph.Batch.read(Property firstIdProperty, Property... additionalIdProperties)
          Request to read the node with the supplied unique identifier properties.
 Graph.BatchConjunction Graph.Batch.read(Property firstIdProperty, Property... additionalIdProperties)
          Request to read the node with the supplied unique identifier properties.
 Graph.On<Graph.Conjunction<Graph>> Graph.set(Property... properties)
          Set the properties on a node.
 Graph.On<Graph.BatchConjunction> Graph.Batch.set(Property... properties)
          Set the properties on a node.
 Next Graph.BlockOfChildren.startingAfter(Property idPropertyOfPreviousSibling)
          Specify the block of children is to start with the child immediately following the supplied node.
 Next Graph.BlockOfChildren.startingAfter(Property firstIdPropertyOfPreviousSibling, Property... additionalIdPropertiesOfPreviousSibling)
          Specify the block of children is to start with the child immediately following the supplied node.
 Next Graph.BlockOfChildren.startingAfter(Property firstIdPropertyOfPreviousSibling, Property... additionalIdPropertiesOfPreviousSibling)
          Specify the block of children is to start with the child immediately following the supplied node.
 Next Graph.Under.under(Property idProperty)
          Specify the unique identification property that identifies the node under which the request is to operate.
 Next Graph.Under.under(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node under which the request is to operate.
 Next Graph.Under.under(Property firstIdProperty, Property... additionalIdProperties)
          Specify the unique identification properties that identify the node under which the request is to operate.
abstract  Location Location.with(Property newIdProperty)
          Create a copy of this location that adds the supplied identification property.
 Graph.Create<Next> Graph.Create.with(Property property)
          Specify a property that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.with(Property property)
          Specify a property that should the new node should have.
 Graph.Create<Next> Graph.Create.with(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.Create<Next> Graph.Create.with(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.with(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.with(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 

Method parameters in org.jboss.dna.graph with type arguments of type Property
 Next Graph.And.and(Iterable<Property> idProperties)
          Specify that another node should also be copied or moved.
 Graph.Create<Next> Graph.Create.and(Iterable<Property> properties)
          Specify property that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.and(Iterable<Property> properties)
          Specify property that should the new node should have.
 Next Graph.At.at(Iterable<Property> idProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Graph.Clone<Graph.BatchConjunction> Graph.Batch.clone(Iterable<Property> idProperties)
          Begin the request to clone a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph.BatchConjunction> Graph.Batch.copy(Iterable<Property> idProperties)
          Begin the request to copy a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
static Location Location.create(Iterable<Property> idProperties)
          Create a location defined by a path and an iterator over identification properties.
static Location Location.create(List<Property> idProperties)
          Create a location defined by multiple identification properties.
static Location Location.create(Path path, Iterable<Property> idProperties)
          Create a location defined by a path and an iterator over identification properties.
 Graph.Create<Graph> Graph.create(Path at, Iterable<Property> properties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at, Iterable<Property> properties)
          Begin the request to create a node located at the supplied path.
 Graph.BatchConjunction Graph.Batch.delete(Iterable<Property> idProperties)
          Request to delete the node with the given identification properties.
 Node Graph.getNodeAt(Iterable<Property> idProperties)
          Request to read the node with the supplied unique identifier properties.
 Next Graph.ImportInto.into(Iterable<Property> idProperties)
          Finish the import by specifying the Location.create into which the node should be copied/moved.
 Graph.Move<Graph.BatchConjunction> Graph.Batch.move(Iterable<Property> idProperties)
          Begin the request to move a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Next Graph.CreateNode.node(String nodeName, Iterable<Property> properties)
          Specify the name of the node that is to be created.
 Next Graph.CreateNode.node(String nodeName, Iterator<Property> properties)
          Specify the name of the node that is to be created.
 Next Graph.Of.of(Iterable<Property> idProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Next Graph.On.on(Iterable<Property> idProperties)
          Specify the unique identification properties that identify the node upon which the request is to operate.
 Graph.BatchConjunction Graph.Batch.read(Iterable<Property> idProperties)
          Request to read the node with the supplied unique identifier properties.
 Graph.Create<Next> Graph.Create.with(Iterable<Property> properties)
          Specify property that should the new node should have.
 Graph.CreateAt<Next> Graph.CreateAt.with(Iterable<Property> properties)
          Specify property that should the new node should have.
 

Uses of Property in org.jboss.dna.graph.connector.map
 

Methods in org.jboss.dna.graph.connector.map that return Property
 Property MapNode.getProperty(ExecutionContext context, String name)
          Returns the named property
 Property MapNode.getProperty(Name name)
          Returns the named property
 

Methods in org.jboss.dna.graph.connector.map with parameters of type Property
 MapNode MapNode.setProperty(Property property)
          Sets the property with the given name, overwriting any previous property for the given name
 

Uses of Property in org.jboss.dna.graph.io
 

Methods in org.jboss.dna.graph.io with parameters of type Property
 void GraphBatchDestination.create(Path path, Property firstProperty, Property... additionalProperties)
          Create a node at the supplied path and with the supplied attributes.
 void GraphBatchDestination.create(Path path, Property firstProperty, Property... additionalProperties)
          Create a node at the supplied path and with the supplied attributes.
 void Destination.create(Path path, Property firstProperty, Property... additionalProperties)
          Create a node at the supplied path and with the supplied attributes.
 void Destination.create(Path path, Property firstProperty, Property... additionalProperties)
          Create a node at the supplied path and with the supplied attributes.
 void GraphBatchDestination.setProperties(Path path, Property... properties)
          Sets the given properties on the node at the supplied path.
 void Destination.setProperties(Path path, Property... properties)
          Sets the given properties on the node at the supplied path.
 

Method parameters in org.jboss.dna.graph.io with type arguments of type Property
 void GraphBatchDestination.create(Path path, List<Property> properties)
          Create a node at the supplied path and with the supplied attributes.
 void Destination.create(Path path, List<Property> properties)
          Create a node at the supplied path and with the supplied attributes.
 

Uses of Property in org.jboss.dna.graph.observe
 

Methods in org.jboss.dna.graph.observe that return types with arguments of type Property
 Set<Property> NetChangeObserver.NetChange.getModifiedProperties()
           
 

Constructor parameters in org.jboss.dna.graph.observe with type arguments of type Property
NetChangeObserver.NetChange(String sourceName, String workspaceName, Location location, EnumSet<NetChangeObserver.ChangeType> eventTypes, Set<Property> modifiedProperties, Set<Name> removedProperties)
           
 

Uses of Property in org.jboss.dna.graph.property
 

Methods in org.jboss.dna.graph.property that return Property
 Property PropertyFactory.create(Name name, Iterable<?> values)
          Create a property with the supplied name and values
 Property PropertyFactory.create(Name name, Iterator<?> values)
          Create a property with the supplied name and values
 Property PropertyFactory.create(Name name, Object... values)
          Create a property with the supplied name and values
 Property PropertyFactory.create(Name name, PropertyType desiredType, Iterable<?> values)
          Create a property with the supplied name and values
 Property PropertyFactory.create(Name name, PropertyType desiredType, Iterator<?> values)
          Create a property with the supplied name and values
 Property PropertyFactory.create(Name name, PropertyType desiredType, Object... values)
          Create a property with the supplied name and values
 

Uses of Property in org.jboss.dna.graph.property.basic
 

Classes in org.jboss.dna.graph.property.basic that implement Property
 class BasicEmptyProperty
          An immutable version of a property that has no values.
 class BasicMultiValueProperty
          An immutable version of a property that has 2 or more values.
 class BasicProperty
          An abstract Property implementation.
 class BasicSingleValueProperty
          An immutable version of a property that has exactly 1 value.
 

Methods in org.jboss.dna.graph.property.basic that return Property
 Property BasicPropertyFactory.create(Name name, Iterable<?> values)
          Create a property with the supplied name and values
 Property BasicPropertyFactory.create(Name name, Iterator<?> values)
          Create a property with the supplied name and values
 Property BasicPropertyFactory.create(Name name, Object... values)
          Create a property with the supplied name and values
 Property BasicPropertyFactory.create(Name name, PropertyType desiredType, Iterable<?> values)
          Create a property with the supplied name and values
 Property BasicPropertyFactory.create(Name name, PropertyType desiredType, Iterator<?> values)
          Create a property with the supplied name and values
 Property BasicPropertyFactory.create(Name name, PropertyType desiredType, Object... values)
          Create a property with the supplied name and values
 

Methods in org.jboss.dna.graph.property.basic with parameters of type Property
 int BasicProperty.compareTo(Property that)
          
 

Constructors in org.jboss.dna.graph.property.basic with parameters of type Property
GraphNamespaceRegistry(Graph store, Path parentOfNamespaceNodes, Name uriPropertyName, Property... additionalProperties)
           
 

Uses of Property in org.jboss.dna.graph.request
 

Methods in org.jboss.dna.graph.request that return Property
 Property ReadNodeRequest.addProperty(Property property)
          Add a property that was read from the RepositoryConnection
 Property ReadAllPropertiesRequest.addProperty(Property property)
          Add a property that was read from the RepositoryConnection
 Property ReadPropertyRequest.getProperty()
          Get the property that was read.
 Property SetPropertyRequest.property()
          Get the property that is being set.
 

Methods in org.jboss.dna.graph.request that return types with arguments of type Property
 Collection<Property> ReadNodeRequest.getProperties()
          Get the properties that were read from the RepositoryConnection.
 Collection<Property> ReadAllPropertiesRequest.getProperties()
          Get the properties that were read from the RepositoryConnection.
 Map<Name,Property> ReadNodeRequest.getPropertiesByName()
          Get the properties that were read from the RepositoryConnection.
 Map<Name,Property> ReadAllPropertiesRequest.getPropertiesByName()
          Get the properties that were read from the RepositoryConnection.
 Map<Name,Property> ReadBranchRequest.getPropertiesFor(Location location)
          Get the nodes that make up this branch.
 Iterator<Property> ReadAllPropertiesRequest.iterator()
          
 Iterator<Property> CreateNodeRequest.iterator()
          
 Map<Name,Property> UpdatePropertiesRequest.properties()
          Get the map of properties for the node, keyed by property name.
 Collection<Property> CreateNodeRequest.properties()
          Get the properties for the node.
 

Methods in org.jboss.dna.graph.request with parameters of type Property
 void ReadNodeRequest.addChild(Path pathToChild, Property idProperty)
          Add to the list of children that has been read the child with the given path and identification property.
 void ReadNextBlockOfChildrenRequest.addChild(Path pathToChild, Property idProperty)
          Add to the list of children that has been read the child with the given path and identification property.
 void ReadBlockOfChildrenRequest.addChild(Path pathToChild, Property idProperty)
          Add to the list of children that has been read the child with the given path and identification property.
 void ReadAllChildrenRequest.addChild(Path pathToChild, Property idProperty)
          Add to the list of children that has been read the child with the given path and identification property.
 void ReadNodeRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadNodeRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadNextBlockOfChildrenRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadNextBlockOfChildrenRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadBlockOfChildrenRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadBlockOfChildrenRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadAllChildrenRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadAllChildrenRequest.addChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void DeleteChildrenRequest.addDeletedChild(Path pathToChild, Property idProperty)
          Add to the list of children that has been read the child with the given path and identification property.
 void DeleteChildrenRequest.addDeletedChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void DeleteChildrenRequest.addDeletedChild(Path pathToChild, Property firstIdProperty, Property... remainingIdProperties)
          Add to the list of children that has been read the child with the given path and identification properties.
 void ReadNodeRequest.addProperties(Property... properties)
          Add a property that was read from the RepositoryConnection
 void ReadAllPropertiesRequest.addProperties(Property... properties)
          Add a property that was read from the RepositoryConnection
 Property ReadNodeRequest.addProperty(Property property)
          Add a property that was read from the RepositoryConnection
 Property ReadAllPropertiesRequest.addProperty(Property property)
          Add a property that was read from the RepositoryConnection
 CreateNodeRequest RequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Property[] properties)
          Add a request to create a node with the given properties under the supplied location.
 BatchRequestBuilder BatchRequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Property[] properties)
          Add a request to create a node with the given properties under the supplied location.
 CreateNodeRequest RequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Property[] properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 BatchRequestBuilder BatchRequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Property[] properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 void ReadBranchRequest.setProperties(Location node, Property... properties)
          Add a node that was read from the RepositoryConnection.
 Request RequestBuilder.setProperties(Location on, String workspaceName, Property... properties)
          Add a request to update the properties on the node at the supplied location.
 BatchRequestBuilder BatchRequestBuilder.setProperties(Location on, String workspaceName, Property... properties)
          Add a request to update the properties on the node at the supplied location.
 SetPropertyRequest RequestBuilder.setProperty(Location on, String workspaceName, Property property)
          Add a request to update the property on the node at the supplied location.
 BatchRequestBuilder BatchRequestBuilder.setProperty(Location on, String workspaceName, Property property)
          Add a request to update the property on the node at the supplied location.
 void ReadPropertyRequest.setProperty(Property property)
          Set the property on the node as read from the RepositoryConnection
 

Method parameters in org.jboss.dna.graph.request with type arguments of type Property
 void ReadNodeRequest.addProperties(Iterable<Property> properties)
          Add a property that was read from the RepositoryConnection
 void ReadAllPropertiesRequest.addProperties(Iterable<Property> properties)
          Add a property that was read from the RepositoryConnection
 CreateNodeRequest RequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Iterator<Property> properties)
          Add a request to create a node with the given properties under the supplied location.
 BatchRequestBuilder BatchRequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Iterator<Property> properties)
          Add a request to create a node with the given properties under the supplied location.
 CreateNodeRequest RequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Iterator<Property> properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 BatchRequestBuilder BatchRequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Iterator<Property> properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 void ReadBranchRequest.setProperties(Location node, Iterable<Property> properties)
          Add a node that was read from the RepositoryConnection.
 

Constructors in org.jboss.dna.graph.request with parameters of type Property
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, NodeConflictBehavior conflictBehavior, Property... properties)
          Create a request to create a node with the given properties under the supplied location.
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, Property... properties)
          Create a request to create a node with the given properties under the supplied location.
SetPropertyRequest(Location on, String workspaceName, Property property)
          Create a request to set the property on the node at the supplied location.
 

Constructor parameters in org.jboss.dna.graph.request with type arguments of type Property
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, Iterable<Property> properties)
          Create a request to create a node with the given properties under the supplied location.
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, Iterator<Property> properties)
          Create a request to create a node with the given properties under the supplied location.
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, NodeConflictBehavior conflictBehavior, Iterable<Property> properties)
          Create a request to create a node with the given properties under the supplied location.
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, NodeConflictBehavior conflictBehavior, Iterator<Property> properties)
          Create a request to create a node with the given properties under the supplied location.
UpdatePropertiesRequest(Location on, String workspaceName, Map<Name,Property> properties)
          Create a request to update the properties on the node at the supplied location.
 

Uses of Property in org.jboss.dna.graph.sequencer
 

Methods in org.jboss.dna.graph.sequencer that return Property
 Property StreamSequencerContext.getInputProperty(Name name)
          Return the property with the supplied name from the input node containing the content being sequenced.
 

Methods in org.jboss.dna.graph.sequencer that return types with arguments of type Property
 Set<Property> StreamSequencerContext.getInputProperties()
          Return the set of properties from the input node containing the content being sequenced.
 

Constructor parameters in org.jboss.dna.graph.sequencer with type arguments of type Property
StreamSequencerContext(ExecutionContext context, Path inputPath, Set<Property> inputProperties, String mimeType, Problems problems)
           
 

Uses of Property in org.jboss.dna.graph.session
 

Methods in org.jboss.dna.graph.session that return Property
 Property GraphSession.PropertyInfo.getProperty()
          Get the Graph API property object containing the values.
 

Methods in org.jboss.dna.graph.session with parameters of type Property
 GraphSession.Node<Payload,PropertyPayload> GraphSession.Node.createChild(Name name, Collection<Property> idProperties, Property... remainingProperties)
          Create a new child node with the supplied name and multiple initial properties.
 GraphSession.Node<Payload,PropertyPayload> GraphSession.Node.createChild(Name name, Property... properties)
          Create a new child node with the supplied name and multiple initial properties.
 GraphSession.PropertyInfo<PropertyPayload> GraphSession.Node.setProperty(Property property, boolean isMultiValued, PropertyPayload payload)
          Set the supplied property information on this node.
 

Method parameters in org.jboss.dna.graph.session with type arguments of type Property
 GraphSession.Node<Payload,PropertyPayload> GraphSession.Node.createChild(Name name, Collection<Property> idProperties)
          Create a new child node with the supplied name and multiple initial identification properties.
 GraphSession.Node<Payload,PropertyPayload> GraphSession.Node.createChild(Name name, Collection<Property> idProperties, Property... remainingProperties)
          Create a new child node with the supplied name and multiple initial properties.
 

Constructors in org.jboss.dna.graph.session with parameters of type Property
GraphSession.PropertyInfo(Property property, boolean multiValued, GraphSession.Status status, PropertyPayload payload)
           
 

Uses of Property in org.jboss.dna.repository
 

Methods in org.jboss.dna.repository that return Property
 Property DnaConfiguration.SetProperties.getProperty(String beanPropertyName)
          Get the property.
 



Copyright © 2008-2009 JBoss, a division of Red Hat. All Rights Reserved.