1 20 package org.apache.cactus.internal.server; 21 22 import javax.servlet.FilterChain ; 23 import javax.servlet.FilterConfig ; 24 25 32 public class FilterImplicitObjects extends AbstractWebImplicitObjects 33 { 34 37 protected FilterConfig config; 38 39 42 protected FilterChain filterChain; 43 44 47 public FilterConfig getFilterConfig() 48 { 49 return this.config; 50 } 51 52 55 public void setFilterConfig(FilterConfig theConfig) 56 { 57 this.config = theConfig; 58 } 59 60 63 public FilterChain getFilterChain() 64 { 65 return this.filterChain; 66 } 67 68 71 public void setFilterChain(FilterChain theFilterChain) 72 { 73 this.filterChain = theFilterChain; 74 } 75 } 76 | Popular Tags |