001 package railo.commons.io.res; 002 003 004 public interface ContentType { 005 006 public String getMimeType(); 007 008 /** 009 * @return the charset 010 */ 011 public String getCharset(); 012 }