-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.go
81 lines (73 loc) · 1.65 KB
/
constants.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package oasm
type HTTPVerb string
const (
HttpGet = "get"
HttpPut = "put"
HttpPost = "post"
HttpDelete = "delete"
HttpOptions = "options"
HttpHead = "head"
HttpPatch = "patch"
HttpTrace = "trace"
)
const (
DataTypeInteger = "integer"
DataTypeLong = "long"
DataTypeFloat = "float"
DataTypeDouble = "double"
DataTypeString = "string"
DataTypeByte = "byte"
DataTypeBinary = "binary"
DataTypeBoolean = "boolean"
DataTypeDate = "date"
DataTypeDatetime = "dateTime"
DataTypePassword = "password"
)
const (
MimeJson = "application/json"
)
const (
InPath = "path"
InQuery = "query"
InHeader = "header"
InCookie = "cookie"
)
const (
StyleDefault = ""
StyleMatrix = "matrix"
StyleLabel = "label"
StyleForm = "form"
StyleSimple = "simple"
StyleSpaceDelimited = "spaceDelimited"
StylePipeDelimited = "pipeDelimited"
StyleDeepObject = "deepObject"
)
const (
SecurityApiKey = "apiKey"
SecurityHttp = "http"
SecurityOauth2 = "oauth2"
SecurityOpenIdConnect = "openIdConnect"
)
const (
SecurityInQuery = "query"
SecurityInHeader = "header"
SecurityInCookie = "cookie"
)
const (
AuthBasic = "basic"
AuthBearer = "bearer"
AuthDigest = "digest"
AuthHoba = "hoba"
AuthMutual = "mutual"
AuthNegotiate = "negotiate"
AuthOauth = "oauth"
AuthScramSha1 = "scram-sha-1"
AuthScramSha256 = "scram-sha-256"
AuthVapid = "vapid"
)
const (
OAuthImplicit = "implicit"
OAuthPassword = "password"
OAuthClientCredentials = "clientCredentials"
OAuthAuthorizationCode = "authorizationCode"
)