File tree Expand file tree Collapse file tree 9 files changed +6
-13
lines changed
src/main/java/org/neo4j/driver Expand file tree Collapse file tree 9 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.neo4j.driver</groupId >
8
8
<artifactId >neo4j-java-driver-parent</artifactId >
9
- <version >5.7 -SNAPSHOT</version >
9
+ <version >5.8 -SNAPSHOT</version >
10
10
<relativePath >..</relativePath >
11
11
</parent >
12
12
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.neo4j.driver</groupId >
8
8
<artifactId >neo4j-java-driver-parent</artifactId >
9
- <version >5.7 -SNAPSHOT</version >
9
+ <version >5.8 -SNAPSHOT</version >
10
10
</parent >
11
11
12
12
<artifactId >neo4j-java-driver</artifactId >
Original file line number Diff line number Diff line change 20
20
21
21
import java .io .Serializable ;
22
22
import java .util .Set ;
23
- import org .neo4j .driver .util .Preview ;
24
23
25
24
/**
26
25
* Keeps track of bookmarks and is used by the driver to ensure causal consistency between sessions and query executions.
31
30
*
32
31
* @see org.neo4j.driver.SessionConfig.Builder#withBookmarkManager(BookmarkManager)
33
32
*/
34
- @ Preview (name = "Bookmark Manager" )
35
33
public interface BookmarkManager extends Serializable {
36
34
/**
37
35
* Updates bookmarks by deleting the given previous bookmarks and adding the new bookmarks.
Original file line number Diff line number Diff line change 19
19
package org .neo4j .driver ;
20
20
21
21
import org .neo4j .driver .internal .Neo4jBookmarkManager ;
22
- import org .neo4j .driver .util .Preview ;
23
22
24
23
/**
25
24
* Setups new instances of {@link BookmarkManager}.
26
25
*/
27
- @ Preview (name = "Bookmark Manager" )
28
26
public final class BookmarkManagers {
29
27
private BookmarkManagers () {}
30
28
/**
Original file line number Diff line number Diff line change 30
30
import org .neo4j .driver .exceptions .UnsupportedFeatureException ;
31
31
import org .neo4j .driver .reactive .ReactiveSession ;
32
32
import org .neo4j .driver .reactive .RxSession ;
33
- import org .neo4j .driver .util .Preview ;
34
33
import org .reactivestreams .Subscription ;
35
34
36
35
/**
@@ -162,7 +161,6 @@ public Optional<String> impersonatedUser() {
162
161
*
163
162
* @return bookmark implementation
164
163
*/
165
- @ Preview (name = "Bookmark Manager" )
166
164
public Optional <BookmarkManager > bookmarkManager () {
167
165
return Optional .ofNullable (bookmarkManager );
168
166
}
@@ -377,7 +375,6 @@ public Builder withImpersonatedUser(String impersonatedUser) {
377
375
* @param bookmarkManager bookmark manager implementation. Providing {@code null} effectively disables bookmark manager.
378
376
* @return this builder.
379
377
*/
380
- @ Preview (name = "Bookmark Manager" )
381
378
public Builder withBookmarkManager (BookmarkManager bookmarkManager ) {
382
379
this .bookmarkManager = bookmarkManager ;
383
380
return this ;
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.neo4j.driver</groupId >
8
8
<artifactId >neo4j-java-driver-parent</artifactId >
9
- <version >5.7 -SNAPSHOT</version >
9
+ <version >5.8 -SNAPSHOT</version >
10
10
</parent >
11
11
12
12
<groupId >org.neo4j.doc.driver</groupId >
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >org.neo4j.driver</groupId >
7
7
<artifactId >neo4j-java-driver-parent</artifactId >
8
- <version >5.7 -SNAPSHOT</version >
8
+ <version >5.8 -SNAPSHOT</version >
9
9
10
10
<packaging >pom</packaging >
11
11
<name >Neo4j Java Driver Project</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<artifactId >neo4j-java-driver-parent</artifactId >
9
9
<groupId >org.neo4j.driver</groupId >
10
- <version >5.7 -SNAPSHOT</version >
10
+ <version >5.8 -SNAPSHOT</version >
11
11
</parent >
12
12
13
13
<artifactId >testkit-backend</artifactId >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.neo4j.driver</groupId >
8
8
<artifactId >neo4j-java-driver-parent</artifactId >
9
- <version >5.7 -SNAPSHOT</version >
9
+ <version >5.8 -SNAPSHOT</version >
10
10
<relativePath >..</relativePath >
11
11
</parent >
12
12
You can’t perform that action at this time.
0 commit comments