-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ZhangJian He <shoothzj@gmail.com>
- Loading branch information
ZhangJian He
committed
Aug 30, 2024
1 parent
2adbe6a
commit e7b7eb0
Showing
8 changed files
with
116 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.github.protocol-laboratory</groupId> | ||
<artifactId>bookkeeper-admin-parent</artifactId> | ||
<version>0.0.2</version> | ||
</parent> | ||
|
||
<artifactId>bookkeeper-admin-api</artifactId> | ||
|
||
</project> |
29 changes: 29 additions & 0 deletions
29
bookkeeper-admin-api/src/main/java/io/github/protocol/bookkeeper/admin/api/TlsConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package io.github.protocol.bookkeeper.admin.api; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
import lombok.ToString; | ||
|
||
@Setter | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class TlsConfig { | ||
public String keyStorePath; | ||
|
||
@ToString.Exclude | ||
public char[] keyStorePassword; | ||
|
||
public String trustStorePath; | ||
|
||
@ToString.Exclude | ||
public char[] trustStorePassword; | ||
|
||
public boolean verifyDisabled; | ||
|
||
public boolean hostnameVerifyDisabled; | ||
|
||
public String[] versions; | ||
|
||
public String[] cipherSuites; | ||
} |
1 change: 1 addition & 0 deletions
1
bookkeeper-admin-api/src/main/java/io/github/protocol/bookkeeper/admin/api/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package io.github.protocol.bookkeeper.admin.api; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.github.protocol-laboratory</groupId> | ||
<artifactId>bookkeeper-admin-parent</artifactId> | ||
<version>0.0.2</version> | ||
</parent> | ||
|
||
<artifactId>bookkeeper-admin-reactor</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.protocol-laboratory</groupId> | ||
<artifactId>bookkeeper-admin-api</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.projectreactor.netty</groupId> | ||
<artifactId>reactor-netty-http</artifactId> | ||
<version>${reactor-netty.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
4 changes: 4 additions & 0 deletions
4
...reactor/src/main/java/io/github/protocol/bookkeeper/admin/reactor/InnerReactorClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.github.protocol.bookkeeper.admin.reactor; | ||
|
||
public class InnerReactorClient { | ||
} |
1 change: 1 addition & 0 deletions
1
...admin-reactor/src/main/java/io/github/protocol/bookkeeper/admin/reactor/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package io.github.protocol.bookkeeper.admin.reactor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters