1 17 18 19 20 package org.apache.fop.apps; 21 22 25 public interface MimeConstants { 26 27 28 String MIME_PDF = "application/pdf"; 29 30 31 String MIME_POSTSCRIPT = "application/postscript"; 32 33 String MIME_EPS = MIME_POSTSCRIPT; 34 35 36 String MIME_PCL = "application/x-pcl"; 37 38 String MIME_PCL_ALT = "application/vnd.hp-PCL"; 39 40 41 String MIME_AFP = "application/x-afp"; 42 43 String MIME_AFP_ALT = "application/vnd.ibm.modcap"; 44 45 46 String MIME_PLAIN_TEXT = "text/plain"; 47 48 49 String MIME_RTF = "application/rtf"; 50 51 String MIME_RTF_ALT1 = "text/richtext"; 52 53 String MIME_RTF_ALT2 = "text/rtf"; 54 55 56 String MIME_MIF = "application/mif"; 57 58 59 String MIME_SVG = "image/svg+xml"; 60 61 62 String MIME_GIF = "image/gif"; 63 64 String MIME_PNG = "image/png"; 65 66 String MIME_JPEG = "image/jpeg"; 67 68 String MIME_TIFF = "image/tiff"; 69 70 71 String MIME_FOP_AWT_PREVIEW = "application/X-fop-awt-preview"; 72 73 String MIME_FOP_PRINT = "application/X-fop-print"; 74 75 String MIME_FOP_AREA_TREE = "application/X-fop-areatree"; 76 77 78 String MIME_XSL_FO = "text/xsl"; 79 80 } 81 | Popular Tags |