DefaultClient is a simple default implementation of the Client interface.
| 79 | |
| 80 | // DefaultClient is a simple default implementation of the Client interface. |
| 81 | type DefaultClient struct { |
| 82 | ID string `json:"id"` |
| 83 | Secret []byte `json:"client_secret,omitempty"` |
| 84 | RotatedSecrets [][]byte `json:"rotated_secrets,omitempty"` |
| 85 | RedirectURIs []string `json:"redirect_uris"` |
| 86 | GrantTypes []string `json:"grant_types"` |
| 87 | ResponseTypes []string `json:"response_types"` |
| 88 | Scopes []string `json:"scopes"` |
| 89 | Audience []string `json:"audience"` |
| 90 | Public bool `json:"public"` |
| 91 | } |
| 92 | |
| 93 | type DefaultOpenIDConnectClient struct { |
| 94 | *DefaultClient |
nothing calls this directly
no outgoing calls
no test coverage detected