2020-12-20 03:06:43 +02:00
|
|
|
|
using IdentityServer.Domain.Models;
|
|
|
|
|
|
|
|
|
|
namespace IdentityServer.Application.Stores
|
|
|
|
|
{
|
2021-11-12 01:37:10 +02:00
|
|
|
|
internal interface ISecurityStore
|
2020-12-20 03:06:43 +02:00
|
|
|
|
{
|
2020-12-24 04:55:45 +02:00
|
|
|
|
void SetToken(Token token, int userId);
|
2021-11-12 01:37:10 +02:00
|
|
|
|
TokenCore ValidateAndGetTokenCore(string token);
|
2020-12-20 03:06:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|