Skip to content

Commit df12ccd

Browse files
committed
better build next time before push
1 parent a06f76c commit df12ccd

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

camunda-sdk-java/java-common/src/main/java/io/camunda/common/auth/JwtAuthentication.java

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ public abstract class JwtAuthentication implements Authentication {
2020

2121
protected JwtAuthentication(JwtConfig jwtConfig) {this.jwtConfig = jwtConfig;}
2222

23+
public JwtConfig getJwtConfig() {
24+
return jwtConfig;
25+
}
26+
2327
@Override
2428
public final void resetToken(Product product) {
2529
tokens.remove(product);

camunda-sdk-java/java-common/src/main/java/io/camunda/common/auth/SimpleAuthentication.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ public SimpleAuthentication(String simpleUrl, SimpleConfig simpleConfig) {
2929

3030
public static SimpleAuthenticationBuilder builder() { return new SimpleAuthenticationBuilder(); }
3131

32-
32+
public SimpleConfig getSimpleConfig() {
33+
return simpleConfig;
34+
}
3335

3436
private String retrieveToken(Product product, SimpleCredential simpleCredential) {
3537
try(CloseableHttpClient client = HttpClients.createDefault()) {

0 commit comments

Comments
 (0)