1 /* 2 * Copyright 2005 Joe Walker 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.directwebremoting.util; 17 18 /** 19 * Various constants from generating output. 20 * @author Joe Walker [joe at getahead dot ltd dot uk] 21 */ 22 public class MimeConstants 23 { 24 /** 25 * MIME constant for plain text. 26 * If we need to do more advanced char processing then we should consider 27 * adding "; charset=utf-8" to the end of these 3 strings and altering the 28 * marshalling to assume utf-8, which it currently does not. 29 */ 30 public static final String MIME_PLAIN = "text/plain"; 31 32 /** 33 * MIME constant for HTML 34 */ 35 public static final String MIME_HTML = "text/html"; 36 37 /** 38 * MIME constant for Javascript 39 */ 40 public static final String MIME_JS = "text/javascript"; 41 } 42