blob: 30f36fa2c1f4da293e9f794ee04ede4d7ddbde64 [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001// Copyright 2015 go-swagger maintainers
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package runtime
16
17const (
18 // HeaderContentType represents a http content-type header, it's value is supposed to be a mime type
19 HeaderContentType = "Content-Type"
20
21 // HeaderTransferEncoding represents a http transfer-encoding header.
22 HeaderTransferEncoding = "Transfer-Encoding"
23
24 // HeaderAccept the Accept header
25 HeaderAccept = "Accept"
26
27 charsetKey = "charset"
28
29 // DefaultMime the default fallback mime type
30 DefaultMime = "application/octet-stream"
31 // JSONMime the json mime type
32 JSONMime = "application/json"
33 // YAMLMime the yaml mime type
34 YAMLMime = "application/x-yaml"
35 // XMLMime the xml mime type
36 XMLMime = "application/xml"
37 // TextMime the text mime type
38 TextMime = "text/plain"
39 // HTMLMime the html mime type
40 HTMLMime = "text/html"
41 // MultipartFormMime the multipart form mime type
42 MultipartFormMime = "multipart/form-data"
43 // URLencodedFormMime the url encoded form mime type
44 URLencodedFormMime = "application/x-www-form-urlencoded"
45)