|
17 | 17 |
|
18 | 18 | package com.vaticle.typedb.console.command; |
19 | 19 |
|
20 | | -import com.vaticle.typedb.client.api.TypeDBClient; |
21 | | -import com.vaticle.typedb.client.api.TypeDBOptions; |
22 | | -import com.vaticle.typedb.client.api.TypeDBSession; |
23 | | -import com.vaticle.typedb.client.api.TypeDBTransaction; |
| 20 | +import com.vaticle.typedb.client.api.connection.TypeDBClient; |
| 21 | +import com.vaticle.typedb.client.api.connection.TypeDBOptions; |
| 22 | +import com.vaticle.typedb.client.api.connection.TypeDBSession; |
| 23 | +import com.vaticle.typedb.client.api.connection.TypeDBTransaction; |
24 | 24 | import com.vaticle.typedb.common.collection.Pair; |
25 | 25 | import com.vaticle.typedb.console.common.Printer; |
26 | 26 | import com.vaticle.typedb.console.common.Utils; |
@@ -401,9 +401,9 @@ public User.Delete asUserDelete() { |
401 | 401 |
|
402 | 402 | class Transaction implements REPLCommand { |
403 | 403 |
|
404 | | - private static String token = "transaction"; |
405 | | - private static String helpCommand = token + " <db> schema|data read|write [" + Options.token + "]"; |
406 | | - private static String description = "Start a transaction to database <db> with schema or data session, with read or write transaction"; |
| 404 | + private static final String token = "transaction"; |
| 405 | + private static final String helpCommand = token + " <db> schema|data read|write [" + Options.token + "]"; |
| 406 | + private static final String description = "Start a transaction to database <db> with schema or data session, with read or write transaction"; |
407 | 407 |
|
408 | 408 | private final String database; |
409 | 409 | private final TypeDBSession.Type sessionType; |
|
0 commit comments