Documentation ¶
Index ¶
- type Store
- func (s *Store) CreateAccessTokenSession(signature string, req fosite.Requester) error
- func (s *Store) CreateAuthorizeCodeSession(code string, req fosite.Requester) error
- func (s *Store) CreateImplicitAccessTokenSession(code string, req fosite.Requester) error
- func (s *Store) CreateRefreshTokenSession(signature string, req fosite.Requester) error
- func (s *Store) DeleteAccessTokenSession(signature string) error
- func (s *Store) DeleteAuthorizeCodeSession(code string) error
- func (s *Store) DeleteRefreshTokenSession(signature string) error
- func (s *Store) DoCredentialsAuthenticate(name string, secret string) error
- func (s *Store) GetAccessTokenSession(signature string, _ interface{}) (fosite.Requester, error)
- func (s *Store) GetAuthorizeCodeSession(code string, _ interface{}) (fosite.Requester, error)
- func (s *Store) GetClient(id string) (client.Client, error)
- func (s *Store) GetRefreshTokenSession(signature string, _ interface{}) (fosite.Requester, error)
- type UserRelation
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store struct { Clients map[string]client.Client AuthorizeCodes map[string]fosite.Requester AccessTokens map[string]fosite.Requester Implicit map[string]fosite.Requester RefreshTokens map[string]fosite.Requester Users map[string]UserRelation }
func (*Store) CreateAccessTokenSession ¶
func (*Store) CreateAuthorizeCodeSession ¶
func (*Store) CreateImplicitAccessTokenSession ¶
func (*Store) CreateRefreshTokenSession ¶
func (*Store) DeleteAccessTokenSession ¶
func (*Store) DeleteAuthorizeCodeSession ¶
func (*Store) DeleteRefreshTokenSession ¶
func (*Store) DoCredentialsAuthenticate ¶
func (*Store) GetAccessTokenSession ¶
func (*Store) GetAuthorizeCodeSession ¶
type UserRelation ¶
Click to show internal directories.
Click to hide internal directories.