Skip to content

Instantly share code, notes, and snippets.

@dougnoel
Created December 8, 2022 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dougnoel/06d5382b0de163dbdfff7d1cfc9f9f02 to your computer and use it in GitHub Desktop.
Save dougnoel/06d5382b0de163dbdfff7d1cfc9f9f02 to your computer and use it in GitHub Desktop.
com.dougnoel.sentinel.enums.AuthenticationType.java removed from Sentinel
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