-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ACC-1512 Cleanup Exception handling, handling sonar remarks
- Loading branch information
1 parent
4261ac7
commit 6bbba56
Showing
5 changed files
with
18 additions
and
31 deletions.
There are no files selected for viewing
3 changes: 1 addition & 2 deletions
3
src/main/java/com/contentgrid/gateway/security/jwt/issuer/JwtClaimsSigner.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 |
---|---|---|
@@ -1,11 +1,10 @@ | ||
package com.contentgrid.gateway.security.jwt.issuer; | ||
|
||
import com.nimbusds.jose.JOSEException; | ||
import com.nimbusds.jose.jwk.JWKSet; | ||
import com.nimbusds.jwt.JWTClaimsSet; | ||
import com.nimbusds.jwt.SignedJWT; | ||
|
||
public interface JwtClaimsSigner { | ||
JWKSet getSigningKeys(); | ||
SignedJWT sign(JWTClaimsSet jwtClaimsSet) throws JOSEException; | ||
SignedJWT sign(JWTClaimsSet jwtClaimsSet); | ||
} |
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
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