1 20 package org.apache.cactus.internal.configuration; 21 22 28 public class DefaultJspConfiguration 29 extends AbstractWebConfiguration implements JspConfiguration 30 { 31 35 public static final String CACTUS_JSP_REDIRECTOR_NAME_PROPERTY = 36 "cactus.jspRedirectorName"; 37 38 41 public String getDefaultRedirectorName() 42 { 43 String redirectorName = 44 System.getProperty(CACTUS_JSP_REDIRECTOR_NAME_PROPERTY); 45 46 if (redirectorName == null) 47 { 48 redirectorName = "JspRedirector"; 49 } 50 51 return redirectorName; 52 } 53 54 } 55 | Popular Tags |