Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Java Driver: added jwt authentication #856

Merged
merged 1 commit into from
Jan 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions drivers/java-reference-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ ArangoDB arangoDB = new ArangoDB.Builder().build();
The driver is configured with some default values:

| property-key | description | default value |
| ------------------------ | --------------------------------------- | -------------- |
|--------------------------|-----------------------------------------| -------------- |
| arangodb.hosts | ArangoDB hosts | 127.0.0.1:8529 |
| arangodb.timeout | connect & request timeout (millisecond) | 0 |
| arangodb.user | Basic Authentication User |
| arangodb.password | Basic Authentication Password |
| arangodb.user | Basic Authentication User | root |
| arangodb.password | Basic Authentication Password | |
| arangodb.jwt | Authentication JWT | |
| arangodb.useSsl | use SSL connection | false |
| arangodb.chunksize | VelocyStream Chunk content-size (bytes) | 30000 |
| arangodb.connections.max | max number of connections | 1 VST, 20 HTTP |
Expand Down