/* * Constellation - An open source and standard compliant SDI * http://www.constellation-sdi.org * * Copyright 2014 Geomatys. * * Licensed 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.constellation.ws; /** * * @version $Id$ * @author Guilhem Legal (Geomatys) */ public final class MimeType { private MimeType() {} public static final String TEXT_XML = "text/xml"; public static final String APPLICATION_XML = "application/xml"; public static final String TEXT_PLAIN = "text/plain"; public static final String TEXT_HTML = "text/html"; public static final String IMAGE_PNG = "image/png"; public static final String IMAGE_GIF = "image/gif"; public static final String IMAGE_JPEG = "image/jpeg"; public static final String IMAGE_BMP = "image/bmp"; public static final String IMAGE_TIFF = "image/tiff"; public static final String NETCDF = "application/x-netcdf"; public static final String MATRIX = "text/x-matrix"; public static final String ASCII_GRID = "text/x-ascii-grid"; public static final String APP_WMS_XML = "application/vnd.ogc.wms_xml"; public static final String APP_INIMAGE = "application/vnd.ogc.se_inimage"; public static final String APP_XML = "application/vnd.ogc.xml"; public static final String APP_GML_XML = "application/gml+xml"; public static final String APP_GML = "application/vnd.ogc.gml"; public static final String APP_GML3 = "application/vnd.ogc.gml3"; public static final String APP_SE_XML = "application/vnd.ogc.se_xml"; public static final String APP_JSON = "application/json"; }