Skip to content

Commit a2c6db1

Browse files
committed
Change some of the methods name into camle case instead of snake case
Signed-off-by: Ryan Liang <jiallian@amazon.com>
1 parent ee79b49 commit a2c6db1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/integrationTest/java/org/opensearch/security/http/OnBehalfOfJwtAuthenticationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class OnBehalfOfJwtAuthenticationTest {
7979
)
8080
)
8181
.authc(AUTHC_HTTPBASIC_INTERNAL)
82-
.onBehalfOf(new OnBehalfOfConfig().oboEnabled(oboEnabled).signing_key(signingKey).encryption_key(encryptionKey))
82+
.onBehalfOf(new OnBehalfOfConfig().oboEnabled(oboEnabled).signingKey(signingKey).encryptionKey(encryptionKey))
8383
.build();
8484

8585
@Test

src/integrationTest/java/org/opensearch/test/framework/OnBehalfOfConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ public OnBehalfOfConfig oboEnabled(Boolean oboEnabled) {
2727
return this;
2828
}
2929

30-
public OnBehalfOfConfig signing_key(String signing_key) {
30+
public OnBehalfOfConfig signingKey(String signing_key) {
3131
this.signing_key = signing_key;
3232
return this;
3333
}
3434

35-
public OnBehalfOfConfig encryption_key(String encryption_key) {
35+
public OnBehalfOfConfig encryptionKey(String encryption_key) {
3636
this.encryption_key = encryption_key;
3737
return this;
3838
}

0 commit comments

Comments
 (0)