1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package net.jot.web.server; import java.io.InputStream; import java.net.MalformedURLException; import java.net.URL; import java.util.Enumeration; import java.util.Set; import javax.servlet.RequestDispatcher; import javax.servlet.Servlet; import javax.servlet.ServletContext; import javax.servlet.ServletException; /** * TBD --- maybe * @author thibautc */ public class JOTServletContext implements ServletContext { public ServletContext getContext(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public String getContextPath() { throw new UnsupportedOperationException("Not supported yet."); } public int getMajorVersion() { throw new UnsupportedOperationException("Not supported yet."); } public int getMinorVersion() { throw new UnsupportedOperationException("Not supported yet."); } public String getMimeType(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public Set getResourcePaths(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public URL getResource(String arg0) throws MalformedURLException { throw new UnsupportedOperationException("Not supported yet."); } public InputStream getResourceAsStream(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public RequestDispatcher getRequestDispatcher(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public RequestDispatcher getNamedDispatcher(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public Servlet getServlet(String arg0) throws ServletException { throw new UnsupportedOperationException("Not supported yet."); } public Enumeration getServlets() { throw new UnsupportedOperationException("Not supported yet."); } public Enumeration getServletNames() { throw new UnsupportedOperationException("Not supported yet."); } public void log(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public void log(Exception arg0, String arg1) { throw new UnsupportedOperationException("Not supported yet."); } public void log(String arg0, Throwable arg1) { throw new UnsupportedOperationException("Not supported yet."); } public String getRealPath(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public String getServerInfo() { throw new UnsupportedOperationException("Not supported yet."); } public String getInitParameter(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public Enumeration getInitParameterNames() { throw new UnsupportedOperationException("Not supported yet."); } public Object getAttribute(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public Enumeration getAttributeNames() { throw new UnsupportedOperationException("Not supported yet."); } public void setAttribute(String arg0, Object arg1) { throw new UnsupportedOperationException("Not supported yet."); } public void removeAttribute(String arg0) { throw new UnsupportedOperationException("Not supported yet."); } public String getServletContextName() { throw new UnsupportedOperationException("Not supported yet."); } }