Skip to content

Commit

Permalink
fix: changing method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
tamassoltesz committed Oct 28, 2024
1 parent d825985 commit 06debd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void addOAuthLogoutChallenge(AppIdentifier appIdentifier, String challeng

public void deleteOAuthLogoutChallengesBefore(long time) throws StorageQueryException;

public void createOrUpdateOAuthSession(AppIdentifier appIdentifier, String gid, String clientId, String externalRefreshToken, String internalRefreshToken, String sessionHandle, List<String> jtis, long exp) throws StorageQueryException, OAuthClientNotFoundException;
public void createOrUpdateOAuthSession(AppIdentifier appIdentifier, String gid, String clientId, String externalRefreshToken, String internalRefreshToken, String sessionHandle, String jti, long exp) throws StorageQueryException, OAuthClientNotFoundException;

public String getRefreshTokenMapping(AppIdentifier appIdentifier, String externalRefreshToken) throws StorageQueryException;

Expand Down

0 comments on commit 06debd1

Please sign in to comment.