@@ -622,7 +622,9 @@ GraphEntity createGraph(String name, Collection<EdgeDefinition> edgeDefinitions,
622622 * @throws ArangoDBException
623623 * @see <a href= "https://www.arangodb.com/docs/stable/http/traversal.html#executes-a-traversal">API
624624 * Documentation</a>
625+ * @deprecated use {@link this#query(String, Map, AqlQueryOptions, Class)}
625626 */
627+ @ Deprecated
626628 <V , E > TraversalEntity <V , E > executeTraversal (Class <V > vertexClass , Class <E > edgeClass , TraversalOptions options )
627629 throws ArangoDBException ;
628630
@@ -732,6 +734,7 @@ <V, E> TraversalEntity<V, E> executeTraversal(Class<V> vertexClass, Class<E> edg
732734 * @since ArangoDB 3.5.0
733735 * @deprecated use {@link this#createSearchAnalyzer(SearchAnalyzer)}}
734736 */
737+ @ Deprecated
735738 AnalyzerEntity createAnalyzer (AnalyzerEntity options ) throws ArangoDBException ;
736739
737740 /**
@@ -755,6 +758,7 @@ <V, E> TraversalEntity<V, E> executeTraversal(Class<V> vertexClass, Class<E> edg
755758 * @since ArangoDB 3.5.0
756759 * @deprecated use {@link this#getSearchAnalyzer(String)}}
757760 */
761+ @ Deprecated
758762 AnalyzerEntity getAnalyzer (String name ) throws ArangoDBException ;
759763
760764 /**
@@ -777,6 +781,7 @@ <V, E> TraversalEntity<V, E> executeTraversal(Class<V> vertexClass, Class<E> edg
777781 * @since ArangoDB 3.5.0
778782 * @deprecated use {@link this#getSearchAnalyzers()}
779783 */
784+ @ Deprecated
780785 Collection <AnalyzerEntity > getAnalyzers () throws ArangoDBException ;
781786
782787 /**
@@ -798,6 +803,7 @@ <V, E> TraversalEntity<V, E> executeTraversal(Class<V> vertexClass, Class<E> edg
798803 * @since ArangoDB 3.5.0
799804 * @deprecated use {@link this#deleteSearchAnalyzer(String)}}}
800805 */
806+ @ Deprecated
801807 void deleteAnalyzer (String name ) throws ArangoDBException ;
802808
803809 /**
@@ -810,6 +816,7 @@ <V, E> TraversalEntity<V, E> executeTraversal(Class<V> vertexClass, Class<E> edg
810816 * @since ArangoDB 3.5.0
811817 * @deprecated use {@link this#deleteSearchAnalyzer(String, AnalyzerDeleteOptions)}}}
812818 */
819+ @ Deprecated
813820 void deleteAnalyzer (String name , AnalyzerDeleteOptions options ) throws ArangoDBException ;
814821
815822 /**
0 commit comments