Created
December 8, 2022 20:18
-
-
Save dougnoel/06d5382b0de163dbdfff7d1cfc9f9f02 to your computer and use it in GitHub Desktop.
com.dougnoel.sentinel.enums.AuthenticationType.java removed from Sentinel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.dougnoel.sentinel.enums; | |
/** | |
* Possible methods for an API to authenticate. | |
* | |
* @author Doug Noël | |
* | |
*/ | |
public enum AuthenticationType { | |
NONE, | |
JWT, | |
AUTH_KEY; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment