| 12 | ) |
| 13 | |
| 14 | type OpenIDConnectExplicitHandler struct { |
| 15 | // OpenIDConnectRequestStorage is the storage for open id connect sessions. |
| 16 | OpenIDConnectRequestStorage OpenIDConnectRequestStorage |
| 17 | OpenIDConnectRequestValidator *OpenIDConnectRequestValidator |
| 18 | |
| 19 | Config interface { |
| 20 | fosite.IDTokenLifespanProvider |
| 21 | } |
| 22 | |
| 23 | *IDTokenHandleHelper |
| 24 | } |
| 25 | |
| 26 | var _ fosite.AuthorizeEndpointHandler = (*OpenIDConnectExplicitHandler)(nil) |
| 27 | var _ fosite.TokenEndpointHandler = (*OpenIDConnectExplicitHandler)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected