blob: c8bb76c276b082764b6372036882c37e5bc28498 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.freemarker.generator.base.mime;
public class Mimetypes {
public static final String MIME_APPLICATION_JSON = "application/json";
public static final String MIME_APPLICATION_OCTET_STREAM = "application/octet-stream";
public static final String MIME_APPLICATION_XML = "application/xml";
public static final String MIME_APPLICATION_XHTML = "application/xhtml+xml";
public static final String MIME_TEXT_CSV = "text/csv";
public static final String MIME_TEXT_HTML = "text/html";
public static final String MIME_TEXT_MARKDOWM = "text/markdown";
public static final String MIME_TEXT_PLAIN = "text/plain";
public static final String MIME_TEXT_RTF = "text/rtf";
public static final String MIME_TEXT_TSV = "text/tab-separated-values";
public static final String MIME_TEXT_YAML = "text/yaml";
public static final String MIME_VENDOR_MS_EXCEL = "application/vnd.ms-excel xls XLS";
public static final String MIME_VENDOR_OPEN_XML_SPREADSHEET = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx XLSX\"";
}