Skip to content

Commit fa933c8

Browse files
committed
Rename EventStoreDB in comments and otel tags
1 parent 6aeff7d commit fa933c8

16 files changed

+25
-25
lines changed

CODE-OF-CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributor Covenant Code of Conduct
22

3-
`EventStoreDB-Client-Java` follows the widely-adopted Contributor Covenant Code of Conduct.
3+
`Kurrent-Client-Java` follows the widely-adopted Contributor Covenant Code of Conduct.
44

55
## Our Pledge
66

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to `EventStoreDB-Client-Java`
1+
# Contributing to `Kurrent-Client-Java`
22

33
Welcome to the Event Store community, and thank you for contributing! The following guide outlines the basics of how to get involved. Pull requests to update and expand this guide are very welcome!
44

@@ -10,7 +10,7 @@ We want the Event Store community to be as welcoming and inclusive as possible,
1010

1111
### Licensing
1212

13-
`EventStoreDB-Client-Java` is licensed under the [Apache-2.0][apache2] license. By submitting a pull request, you represent that you have right to license your contribution to Event Store Ltd and the community, and that by submitting a patch your contributions are licensed under the Apache-2.0 license.
13+
`Kurrent-Client-Java` is licensed under the [Apache-2.0][apache2] license. By submitting a pull request, you represent that you have right to license your contribution to Event Store Ltd and the community, and that by submitting a patch your contributions are licensed under the Apache-2.0 license.
1414

1515
## Contributing
1616

@@ -22,7 +22,7 @@ Please disclose issues which you believe to be a security threat _by e-mail_ to
2222

2323
Issues may be reported via the [GitHub Repository][github-repo]. When reporting issues, please ensure that you include relevant information which can help diagnose the problem. This includes:
2424

25-
- The version of `EventStoreDB-Client-Java` - including a commit SHA if using a local build
25+
- The version of `Kurrent-Client-Java` - including a commit SHA if using a local build
2626

2727
- The operating system on which the issue is exhibited (on Unix, the output of `uname -a`)
2828

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ allprojects {
1212
}
1313

1414
if (!JavaVersion.current().isJava8Compatible()) {
15-
throw new Exception("Java 8 is required to build EventStoreDB-Client-Java")
15+
throw new Exception("Java 8 is required to build Kurrent-Client-Java")
1616
}

db-client-java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,10 @@ publishing {
201201

202202
from components.java
203203
pom {
204-
name = 'EventStoreDB Client Java'
204+
name = 'Kurrent Client Java'
205205
// packaging 'jar'
206206
// optionally artifactId can be defined here
207-
description = 'EventStoreDB gRPC Java client'
207+
description = 'Kurrent gRPC Java client'
208208
url = 'https://kurrent.io'
209209

210210
scm {

db-client-java/src/main/java/com/eventstore/dbclient/ClientTelemetryAttributes.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ public static class Exceptions {
2424
}
2525

2626
public static class EventStore {
27-
public static final String STREAM = "db.eventstoredb.stream";
28-
public static final String SUBSCRIPTION_ID = "db.eventstoredb.subscription.id";
29-
public static final String EVENT_ID = "db.eventstoredb.event.id";
30-
public static final String EVENT_TYPE = "db.eventstoredb.event.type";
27+
public static final String STREAM = "db.kurrent.stream";
28+
public static final String SUBSCRIPTION_ID = "db.kurrent.subscription.id";
29+
public static final String EVENT_ID = "db.kurrent.event.id";
30+
public static final String EVENT_TYPE = "db.kurrent.event.type";
3131
}
3232
}

db-client-java/src/main/java/com/eventstore/dbclient/EventData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.UUID;
44

55
/**
6-
* Represents an event that will be sent to EventStoreDB.
6+
* Represents an event that will be sent to KurrentDB.
77
*/
88
public final class EventData {
99
private final UUID eventId;

db-client-java/src/main/java/com/eventstore/dbclient/ExpectedRevision.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Constants used for expected revision control.
1010
* <p>
1111
*
12-
* The EventStoreDB server will assure idempotency for all requests using any value in <i>ExpectedRevision</i> except
12+
* The KurrentDB server will assure idempotency for all requests using any value in <i>ExpectedRevision</i> except
1313
* <i>ANY</i>. When using <i>ANY</i>, the EventStoreDB server will do its best to assure idempotency but will not
1414
* guarantee it. Any other <i>ExpectedRevision</i> instances are meant for optimistic concurrency checks.
1515
* </p>

db-client-java/src/main/java/com/eventstore/dbclient/KurrentDBClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ private KurrentDBClient(KurrentDBClientSettings settings) {
2020
}
2121

2222
/**
23-
* Creates a gRPC client to EventStoreDB database.
23+
* Creates a gRPC client to KurrentDB database.
2424
*/
2525
public static KurrentDBClient create(KurrentDBClientSettings settings) {
2626
return new KurrentDBClient(settings);

db-client-java/src/main/java/com/eventstore/dbclient/KurrentDBClientSettings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
import java.util.Set;
88

99
/**
10-
* Gathers all the settings related to a gRPC client with an EventStoreDB database.
10+
* Gathers all the settings related to a gRPC client with an KurrentDB database.
1111
* <i>EventStoreDBClientSettings}</i> can only be created when parsing a connection string.
1212
*
13-
* <i>EventStoreDBClientSettings</i> supports a wide range of settings. If a setting is not mentioned in the connection
13+
* <i>KurrentDBClientSettings</i> supports a wide range of settings. If a setting is not mentioned in the connection
1414
* string, that setting default value is used.
1515
*
1616
* <ul>

db-client-java/src/main/java/com/eventstore/dbclient/KurrentDBPersistentSubscriptionsClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
/**
1010
* Represents EventStoreDB client for persistent subscriptions management. A client instance maintains a two-way communication to EventStoreDB.
11-
* Many threads can use the EventStoreDB client simultaneously, or a single thread can make many asynchronous requests.
11+
* Many threads can use the KurrentDB client simultaneously, or a single thread can make many asynchronous requests.
1212
*/
1313
public class KurrentDBPersistentSubscriptionsClient {
1414
private final KurrentDBClientBase inner;

0 commit comments

Comments
 (0)