2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-06-27 14:53:11 +00:00
This commit is contained in:
2020-11-15 04:41:30 +03:00
parent 7eae6b47ce
commit 4c36f591da
14 changed files with 177 additions and 204 deletions

View File

@ -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;

View 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,
}