1 package de.webman.template.jsp; 2 3 import java.util.*; 4 import javax.servlet.*; 5 6 7 23 24 public class WebManServletConfig implements ServletConfig 25 { 26 private WebManServletContext context = new WebManServletContext(); 27 28 42 43 public ServletContext getServletContext() 44 { 45 return context; 46 } 47 48 public String getServletName() 49 { 50 return "Gurke"; 51 } 52 53 69 70 public String getInitParameter(String name) 71 { 72 return null; 73 } 74 75 76 89 90 public Enumeration getInitParameterNames() 91 { 92 return new Hashtable().keys(); 93 } 94 95 } 96 97 98 99 100 101 102 103 104 | Popular Tags |