1
2
3
4
5
6
7 package org.astrogrid.slinger.mime ;
8
9 /***
10 * Defines some 'standard' mime types used by astrogrid/the IVO.
11 * @see http://www.iana.org/assignments/media-types/
12 *
13 */
14 public interface MimeTypes {
15
16 public static final String PLAINTEXT = "text/plain" ;
17 public static final String XML = "text/xml" ;
18 public static final String HTML = "text/html" ;
19 public static final String TSV = "text/tab-separated-values" ;
20 public static final String CSV = "text/comma-separated-values" ;
21
22
23 public static final String FITS = "application/fits" ;
24
25
26 public static final String VOTABLE = "application/x-votable+xml";
27
28 public static final String JOB = "text/xml +org.astrogrid.job" ;
29 public static final String WORKFLOW = "text/xml +org.astrogrid.workflow" ;
30
31 public static final String ADQL = "text/xml +org.astrogrid.adql" ;
32 public static final String VOLIST = "text/xml +org.astrogrid.volist" ;
33
34 }
35
36
37
38
39
40
41
42
43
44
45
46