parent
19900bdd29
commit
75d9ba198c
@ -0,0 +1,27 @@ |
||||
syntax = "proto3"; |
||||
option go_package = "whiteboxsystems.nl/okap"; |
||||
|
||||
enum OKAPErrorCode { |
||||
None = 0; |
||||
// Invalide configuratie voor de gekozen methode |
||||
InvalidXISAuthConfiguration = 1; |
||||
// Onbekende reference meegegeven |
||||
UnkownReference = 2; |
||||
// Invalide registratietoken voor deze reference |
||||
InvalidRegistrationToken = 3; |
||||
// Onbekende service |
||||
UnknownService = 4; |
||||
// Onbekende protocol |
||||
UnknownProtocol = 5; |
||||
// Invalide procotol configuratie voor het aangegeven protocol |
||||
InvalidProcotolConfig = 6; |
||||
// Authenticatie methode onbekend |
||||
UnknownAuthMethod = 7; |
||||
// Invalide authorizatie configuratie voor het aangegeven protocol |
||||
InvalidProcotolAuthConfig = 8; |
||||
} |
||||
|
||||
message OKAPError { |
||||
OKAPErrorCode code = 1; |
||||
string message = 2; |
||||
} |
Loading…
Reference in new issue