View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.transformer.types;
8   
9   /**
10   * Common mime types used in Mule
11   *
12   * @since 3.0
13   */
14  public interface MimeTypes
15  {
16      public static final String ANY = "*/*";
17  
18      public static final String JSON = "application/json";
19      public static final String ATOM = "application/atom+xml";
20      public static final String RSS = "application/rss+xml";
21      public static final String APPLICATION_XML = "application/xml";
22      public static final String XML = "text/xml";
23      public static final String TEXT = "text/plain";
24      public static final String HTML = "text/html";
25  
26      public static final String BINARY = "application/octet-stream";
27      public static final String UNKNOWN = "content/unknown";
28      public static final String MULTIPART_MIXED="multipart/mixed";
29      public static final String MULTIPART_RELATED="multipart/related";
30      public static final String MULTIPART_X_MIXED_REPLACE="multipart/x-mixed-replace";
31  
32  }