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

Commit b7db50c

Browse files
Make inner property-classes public.
They are part of an public API.
1 parent 8c5349c commit b7db50c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Components to be plugged into Spring Boot's actuator infrastructure.
3+
*/
4+
package org.neo4j.driver.springframework.boot.actuate;

neo4j-java-driver-spring-boot-autoconfigure/src/main/java/org/neo4j/driver/springframework/boot/autoconfigure/Neo4jDriverProperties.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ List<URI> computeFinalListOfUris() {
134134
}
135135
}
136136

137-
static class Authentication {
137+
public static class Authentication {
138138

139139
/**
140140
* The login of the user connecting to the database.
@@ -210,7 +210,7 @@ AuthToken toInternalRepresentation() {
210210
}
211211
}
212212

213-
static class ConfigProperties {
213+
public static class ConfigProperties {
214214

215215
public enum LoadBalancingStrategy {
216216
ROUND_ROBIN,
@@ -451,7 +451,7 @@ Config toInternalRepresentation() {
451451
}
452452
}
453453

454-
static class TrustSettings {
454+
public static class TrustSettings {
455455

456456
public enum Strategy {
457457

0 commit comments

Comments
 (0)