Skip to content

Commit

Permalink
#1 first successful test in metalnx
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-conway committed Aug 16, 2019
1 parent 4f441de commit 7e83c0a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ public interface JwtIssueService {
* @param subject {@code String} with the subject for the JWT claim
* @return {@code String} with the JWT token
*/
String issueJwtToken(String subject);
public String issueJwtToken(String subject);

/**
* Given a JWT token, return the decoded claims
*
* @param token {@code String} with the JWT token
* @return {@link Jws} with the associated claims
*/
Jws<Claims> decodeJwtToken(String token);
public Jws<Claims> decodeJwtToken(String token);

}

0 comments on commit 7e83c0a

Please sign in to comment.