| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.seasar.teeda.core.mock; |
| 17 | |
|
| 18 | |
import java.util.List; |
| 19 | |
|
| 20 | |
import org.seasar.teeda.core.config.webapp.element.ContextParamElement; |
| 21 | |
import org.seasar.teeda.core.config.webapp.element.FilterElement; |
| 22 | |
import org.seasar.teeda.core.config.webapp.element.ServletElement; |
| 23 | |
import org.seasar.teeda.core.config.webapp.element.ServletMappingElement; |
| 24 | |
import org.seasar.teeda.core.config.webapp.element.TaglibElement; |
| 25 | |
import org.seasar.teeda.core.config.webapp.element.WebappConfig; |
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | 0 | public class NullWebappConfig implements WebappConfig { |
| 31 | |
|
| 32 | |
public void addContextParamElement( |
| 33 | |
final ContextParamElement contextParamElement) { |
| 34 | 0 | } |
| 35 | |
|
| 36 | |
public void addFilterElement(final FilterElement filterElement) { |
| 37 | 0 | } |
| 38 | |
|
| 39 | |
public void addServletElement(final ServletElement servletElement) { |
| 40 | 0 | } |
| 41 | |
|
| 42 | |
public void addServletMappingElement( |
| 43 | |
final ServletMappingElement servletMappingElement) { |
| 44 | 0 | } |
| 45 | |
|
| 46 | |
public void addTaglibElement(final TaglibElement taglibElement) { |
| 47 | 0 | } |
| 48 | |
|
| 49 | |
public ContextParamElement getContextParamElementByParamName( |
| 50 | |
final String paramName) { |
| 51 | 0 | return null; |
| 52 | |
} |
| 53 | |
|
| 54 | |
public List getContextParamElements() { |
| 55 | 0 | return null; |
| 56 | |
} |
| 57 | |
|
| 58 | |
public FilterElement getFilterElementByFilterName(final String filterName) { |
| 59 | 0 | return null; |
| 60 | |
} |
| 61 | |
|
| 62 | |
public List getFilterElements() { |
| 63 | 0 | return null; |
| 64 | |
} |
| 65 | |
|
| 66 | |
public ServletMappingElement getServletMappingElementByServletName( |
| 67 | |
final String servletName) { |
| 68 | 0 | return null; |
| 69 | |
} |
| 70 | |
|
| 71 | |
public ServletElement getServletElementByServletClass( |
| 72 | |
final String servletClass) { |
| 73 | 0 | return null; |
| 74 | |
} |
| 75 | |
|
| 76 | |
public ServletElement getServletElementByServletName( |
| 77 | |
final String servletName) { |
| 78 | 0 | return null; |
| 79 | |
} |
| 80 | |
|
| 81 | |
public List getServletElements() { |
| 82 | 0 | return null; |
| 83 | |
} |
| 84 | |
|
| 85 | |
public List getServletMappingElements() { |
| 86 | 0 | return null; |
| 87 | |
} |
| 88 | |
|
| 89 | |
public List getTaglibElements() { |
| 90 | 0 | return null; |
| 91 | |
} |
| 92 | |
|
| 93 | |
public ServletMappingElement getServletMappingElementByServletClass( |
| 94 | |
final String servletClass) { |
| 95 | 0 | return null; |
| 96 | |
} |
| 97 | |
|
| 98 | |
} |