1 // 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 15 package runtime 16 17 const ( 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 // HeaderAuthorization the Authorization header 27 HeaderAuthorization = "Authorization" 28 29 charsetKey = "charset" 30 31 // DefaultMime the default fallback mime type 32 DefaultMime = "application/octet-stream" 33 // JSONMime the json mime type 34 JSONMime = "application/json" 35 // YAMLMime the yaml mime type 36 YAMLMime = "application/x-yaml" 37 // XMLMime the xml mime type 38 XMLMime = "application/xml" 39 // TextMime the text mime type 40 TextMime = "text/plain" 41 // HTMLMime the html mime type 42 HTMLMime = "text/html" 43 // CSVMime the csv mime type 44 CSVMime = "text/csv" 45 // MultipartFormMime the multipart form mime type 46 MultipartFormMime = "multipart/form-data" 47 // URLencodedFormMime the url encoded form mime type 48 URLencodedFormMime = "application/x-www-form-urlencoded" 49 ) 50