Uses of Class
org.jboss.dna.graph.Graph

Packages that use Graph
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.io   
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.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.jcr The DNA implementation of the JCR API. 
org.jboss.dna.repository The components and services that make up the JBoss DNA repository engine. 
org.jboss.dna.repository.sequencer The classes that make up the sequencing service and its configuration. 
 

Uses of Graph in org.jboss.dna.graph
 

Methods in org.jboss.dna.graph that return Graph
static Graph Graph.create(RepositoryConnection connection, ExecutionContext context)
          Create a graph instance that uses the supplied RepositoryConnection and context.
static Graph Graph.create(RepositorySource source, ExecutionContext context)
          Create a graph instance that uses the supplied RepositoryConnection and context.
static Graph Graph.create(String sourceName, RepositoryConnectionFactory connectionFactory, ExecutionContext context)
          Create a graph instance that uses the supplied repository and context.
 Graph Results.getGraph()
          Get the graph containing the node.
 Graph Node.getGraph()
          Get the graph containing the node.
 Graph Graph.Batch.getGraph()
          Obtain the graph that this batch uses.
 Graph Graph.BaseResults.getGraph()
          Get the graph containing the node.
 

Methods in org.jboss.dna.graph that return types with arguments of type Graph
 Graph.AddValue<Graph> Graph.addValue(Object value)
           
 Graph.Clone<Graph> Graph.clone(Location from)
          Begin the request to clone a node at the specified location into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph> Graph.clone(Node from)
          Begin the request to clone the specified node into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph> Graph.clone(Path from)
          Begin the request to clone a node located at the supplied path into a parent node at a different location, which is specified via the into(...)
 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> 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(String fromPath)
          Begin the request to clone a node located at the supplied path into a parent node at a different location, which is specified via the into(...)
 Graph.Clone<Graph> Graph.clone(UUID from)
          Begin the request to clone a node with the specified unique identifier into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph> Graph.copy(Location from)
          Begin the request to copy a node at the specified location into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph> Graph.copy(Node from)
          Begin the request to copy the specified node into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph> Graph.copy(Path from)
          Begin the request to copy a node located at the supplied path 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> 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(String fromPath)
          Begin the request to copy a node located at the supplied path into a parent node at a different location, which is specified via the into(...)
 Graph.Copy<Graph> Graph.copy(UUID from)
          Begin the request to copy a node with the specified unique identifier into a parent node at a different location, which is specified via the into(...)
 Graph.Create<Graph> Graph.create(Path at)
          Begin the request to create a node located at the supplied path.
 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> Graph.create(Path at, Property property)
          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> Graph.create(String atPath)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.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.CreateAt<Graph> Graph.createAt(Path at)
          Begin the request to create a node located at the supplied path, and return an interface used to either add properties for the new node, or complete/submit the request and return the location, node, or graph.
 Graph.CreateAt<Graph> Graph.createAt(String atPath)
          Begin the request to create a node located at the supplied path, and return an interface used to either add properties for the new node, or complete/submit the request and return the location, node, or graph.
 Graph.CreateNode<Graph.Conjunction<Graph>> Graph.createUnder(Location parent)
          Begin the request to create a node under the existing parent node at the supplied location.
 Graph.Conjunction<Graph> Graph.delete(Location at)
          Request to delete the node at the given location.
 Graph.Conjunction<Graph> Graph.delete(Node at)
          Request to delete the specified node.
 Graph.Conjunction<Graph> Graph.delete(Path at)
          Request to delete the node at the given path.
 Graph.Conjunction<Graph> Graph.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(String atPath)
          Request to delete the node at the given path.
 Graph.Conjunction<Graph> Graph.delete(UUID at)
          Request to delete the node with the given UUID.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(File file)
          Import the content from the XML file at the supplied file, specifying via the returned object where the content is to be imported.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(InputStream stream)
          Import the content from the provided stream of XML data, specifying via the returned object where the content is to be imported.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(String pathToFile)
          Import the content from the XML file at the supplied file location, specifying via the returned object where the content is to be imported.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(URI uri)
          Import the content from the XML file at the supplied URI, specifying via the returned object where the content is to be imported.
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Location from)
          Begin the request to move a node at the specified location into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Node from)
          Begin the request to move the specified node into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Path from)
          Begin the request to move a node located at the supplied path into a parent node at a different location, which is specified via the into(...)
 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.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(String fromPath)
          Begin the request to move a node located at the supplied path into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(UUID from)
          Begin the request to move a node with the specified unique identifier into a parent node at a different location, which is specified via the into(...)
 Graph.On<Graph.Conjunction<Graph>> Graph.remove(Name... propertyNames)
          Remove properties from the node at the given location.
 Graph.On<Graph.Conjunction<Graph>> Graph.remove(String... propertyNames)
          Remove properties from the node at the given location.
 Graph.RemoveValue<Graph> Graph.removeValue(Object value)
           
 Graph.SetValues<Graph.Conjunction<Graph>> Graph.set(Name propertyName)
          Set a property on a node, starting with the name.
 Graph.On<Graph.Conjunction<Graph>> Graph.set(Property... properties)
          Set the properties on a node.
 Graph.SetValues<Graph.Conjunction<Graph>> Graph.set(String propertyName)
          Set a property on a node, starting with the name.
 

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

Methods in org.jboss.dna.graph.io that return Graph
 Graph GraphImporter.getGraph()
          The graph that this importer uses.
 

Constructors in org.jboss.dna.graph.io with parameters of type Graph
GraphImporter(Graph graph)
           
 

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

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

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

Constructors in org.jboss.dna.graph.session with parameters of type Graph
GraphSession(Graph graph, String workspaceName, GraphSession.Operations<Payload,PropertyPayload> nodeOperations)
          Create a session that uses the supplied graph and the supplied node operations.
GraphSession(Graph graph, String workspaceName, GraphSession.Operations<Payload,PropertyPayload> nodeOperations, GraphSession.Authorizer authorizer)
          Create a session that uses the supplied graph and the supplied node operations.
 

Uses of Graph in org.jboss.dna.jcr
 

Methods in org.jboss.dna.jcr that return Graph
 Graph JcrNodeTypeSource.getNodeTypes()
          Returns the node type information to be registered in graph form.
 Graph CndNodeTypeSource.getNodeTypes()
          Returns the node type information to be registered in graph form.
 

Uses of Graph in org.jboss.dna.repository
 

Methods in org.jboss.dna.repository that return Graph
 Graph DnaEngine.getGraph(ExecutionContext context, String sourceName)
          Get a graph to the underlying source, using the supplied context.
 Graph DnaEngine.getGraph(String sourceName)
          Get a graph to the underlying source.
 Graph DnaConfiguration.ConfigurationDefinition.graph()
          Obtain a graph to this configuration repository.
 

Uses of Graph in org.jboss.dna.repository.sequencer
 

Constructors in org.jboss.dna.repository.sequencer with parameters of type Graph
SequencerContext(ExecutionContext executionContext, Graph graph)
           
 



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