mirror of
https://github.com/esiur/esiur-dart.git
synced 2025-06-27 14:53:11 +00:00
1.2.4
This commit is contained in:
@ -22,12 +22,17 @@ SOFTWARE.
|
||||
|
||||
*/
|
||||
|
||||
import 'AuthenticationMethod.dart';
|
||||
|
||||
import 'AuthenticationType.dart';
|
||||
import 'Source.dart';
|
||||
|
||||
class Authentication
|
||||
{
|
||||
|
||||
int tokenIndex;
|
||||
AuthenticationMethod method;
|
||||
|
||||
String username;
|
||||
//Certificate certificate;
|
||||
String domain;
|
||||
|
16
lib/src/Security/Authority/AuthenticationMethod.dart
Normal file
16
lib/src/Security/Authority/AuthenticationMethod.dart
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
// class AuthenticationMethod
|
||||
// {
|
||||
// static const int None = 0;
|
||||
// static const int Certificate = 1;
|
||||
// static const int Credentials = 2;
|
||||
// static const int Token = 3;
|
||||
// }
|
||||
|
||||
enum AuthenticationMethod
|
||||
{
|
||||
None,
|
||||
Certificate,
|
||||
Credentials,
|
||||
Token,
|
||||
}
|
Reference in New Issue
Block a user