Open Kilda Java Documentation
IAuthConstants.java
Go to the documentation of this file.
1
package
org.openkilda.constants;
2
6
public
abstract
class
IAuthConstants
{
7
8
private
IAuthConstants
() {}
9
10
public
interface
Header
{
11
String
AUTHORIZATION
=
"Authorization"
;
12
String
CORRELATION_ID
=
"correlationid"
;
13
String
BASIC_AUTH
=
"BasicAuth"
;
14
}
15
16
public
interface
ContentType
{
17
String
JSON
=
"application/json"
;
18
}
19
20
public
interface
Code
{
21
int
SUCCESS_CODE
= 20000;
22
String
SUCCESS_AUXILIARY
=
"Success"
;
23
String
ERROR_AUXILIARY
=
"Error"
;
24
25
String
RESPONSE_PARSING_FAIL_ERROR
=
"response.parsing.fail.error"
;
26
}
27
}
org.openkilda.constants.IAuthConstants.Header
Definition:
IAuthConstants.java:10
org.openkilda.constants.IAuthConstants.ContentType.JSON
String JSON
Definition:
IAuthConstants.java:17
org.openkilda.constants.IAuthConstants
Definition:
IAuthConstants.java:6
org.openkilda.constants.IAuthConstants.Code.ERROR_AUXILIARY
String ERROR_AUXILIARY
Definition:
IAuthConstants.java:23
org.openkilda.constants.IAuthConstants.Code.RESPONSE_PARSING_FAIL_ERROR
String RESPONSE_PARSING_FAIL_ERROR
Definition:
IAuthConstants.java:25
org.openkilda.constants.IAuthConstants.Header.AUTHORIZATION
String AUTHORIZATION
Definition:
IAuthConstants.java:11
org.openkilda.constants.IAuthConstants.Code.SUCCESS_CODE
int SUCCESS_CODE
Definition:
IAuthConstants.java:21
org.openkilda.constants.IAuthConstants.Header.CORRELATION_ID
String CORRELATION_ID
Definition:
IAuthConstants.java:12
org.openkilda.constants.IAuthConstants.ContentType
Definition:
IAuthConstants.java:16
org.openkilda.constants.IAuthConstants.Code.SUCCESS_AUXILIARY
String SUCCESS_AUXILIARY
Definition:
IAuthConstants.java:22
org.openkilda.constants.IAuthConstants.Code
Definition:
IAuthConstants.java:20
org.openkilda.constants.IAuthConstants.Header.BASIC_AUTH
String BASIC_AUTH
Definition:
IAuthConstants.java:13
open-kilda-develop
services
src
openkilda-gui
src
main
java
org
openkilda
constants
IAuthConstants.java
Generated by
1.8.14