1 16 17 package org.apache.struts.chain.servlet; 18 19 20 import javax.servlet.http.HttpServletResponse ; 21 import org.apache.commons.chain.Context; 22 import org.apache.commons.chain.web.servlet.ServletWebContext; 23 import org.apache.struts.chain.AbstractSetContentType; 24 25 26 33 34 public class SetContentType extends AbstractSetContentType { 35 36 37 39 40 protected void setContentType(Context context, String contentType) { 41 42 ServletWebContext swcontext = (ServletWebContext) context; 43 HttpServletResponse response = swcontext.getResponse(); 44 45 response.setContentType(contentType); 46 47 } 48 49 50 } 51 | Popular Tags |