1 20 package org.apache.cactus.internal.server; 21 22 import javax.servlet.ServletConfig ; 23 24 31 public class ServletImplicitObjects extends AbstractWebImplicitObjects 32 { 33 36 protected ServletConfig config; 37 38 41 public ServletConfig getServletConfig() 42 { 43 return this.config; 44 } 45 46 49 public void setServletConfig(ServletConfig theConfig) 50 { 51 this.config = theConfig; 52 } 53 } 54 | Popular Tags |