Deprecated API


Contents
Deprecated Interfaces
org.neo4j.index.Index
          Not used anymore. Replaced by f.ex IndexService. 
org.neo4j.graphdb.traversal.PruneEvaluator
          becuase of the introduction of Evaluator which combines PruneEvaluator and filtering (Predicate of Paths). 
 

Deprecated Methods
org.neo4j.graphdb.GraphDatabaseService.enableRemoteShell()
          in favor of a configuration parameter 'enable_remote_shell' Simply put:
 enable_remote_shell = true
 
In your configuration and it will be started with default port and RMI name. If you'd like to control the port and RMI name of the shell instead put:
 enable_remote_shell = port=1337,name=shell
 
 
org.neo4j.graphdb.GraphDatabaseService.enableRemoteShell(Map)
          in favor of a configuration parameter 'enable_remote_shell' Put:
 enable_remote_shell = port=1337,name=shell
 
In your configuration and it will be started with the supplied port and RMI name. If you instead would like to use default parameters, put:
 enable_remote_shell = true
 
 
org.neo4j.graphdb.traversal.TraversalDescription.filter(Predicate)
          because of the introduction of Evaluator. Use TraversalDescription.evaluator(Evaluator) instead which combines TraversalDescription.filter(Predicate) and TraversalDescription.prune(PruneEvaluator). The supplied Predicate will be wrapped by an Evaluator internally. 
org.neo4j.graphdb.PropertyContainer.getPropertyValues()
          in favor of using PropertyContainer.getPropertyKeys() in combination with PropertyContainer.getProperty(String). 
org.neo4j.graphdb.traversal.TraversalDescription.prune(PruneEvaluator)
          because of the introduction of Evaluator. Use TraversalDescription.evaluator(Evaluator) instead which combines TraversalDescription.filter(Predicate) and TraversalDescription.prune(PruneEvaluator). The supplied PruneEvaluator will be wrapped by an Evaluator internally. 
org.neo4j.kernel.Traversal.pruneAfterDepth(int)
          because of the introduction of Evaluator. The equivalent is Evaluators.toDepth(int). 
org.neo4j.kernel.Traversal.returnAll()
          because of the introduction of Evaluator. The equivalent is Evaluators.all(). 
org.neo4j.kernel.Traversal.returnAllButStartNode()
          because of the introduction of Evaluator. The equivalent is Evaluators.excludeStartPosition(). 
 



Copyright © 2010 The Neo4j Graph Database Project. All Rights Reserved.