Skip to content

Commit

Permalink
Change some of the methods name into camle case instead of snake case
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Liang <jiallian@amazon.com>
  • Loading branch information
RyanL1997 committed Aug 22, 2023
1 parent ee79b49 commit a2c6db1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class OnBehalfOfJwtAuthenticationTest {
)
)
.authc(AUTHC_HTTPBASIC_INTERNAL)
.onBehalfOf(new OnBehalfOfConfig().oboEnabled(oboEnabled).signing_key(signingKey).encryption_key(encryptionKey))
.onBehalfOf(new OnBehalfOfConfig().oboEnabled(oboEnabled).signingKey(signingKey).encryptionKey(encryptionKey))
.build();

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ public OnBehalfOfConfig oboEnabled(Boolean oboEnabled) {
return this;
}

public OnBehalfOfConfig signing_key(String signing_key) {
public OnBehalfOfConfig signingKey(String signing_key) {
this.signing_key = signing_key;
return this;
}

public OnBehalfOfConfig encryption_key(String encryption_key) {
public OnBehalfOfConfig encryptionKey(String encryption_key) {
this.encryption_key = encryption_key;
return this;
}
Expand Down

0 comments on commit a2c6db1

Please sign in to comment.