1 package weblogic.servlet.internal; 2 3 import java.io.IOException ; 4 import java.io.PrintWriter ; 5 import java.util.Locale ; 6 7 import javax.servlet.ServletOutputStream ; 8 import javax.servlet.http.Cookie ; 9 import javax.servlet.http.HttpServletResponse ; 10 11 public class ServletResponseImpl implements HttpServletResponse { 13 14 protected ServletResponseImpl() { 15 } 18 19 public void addCookie(Cookie arg0) { 21 throw new AssertionError (); 22 } 23 24 public void addDateHeader(String arg0, long arg1) { 25 throw new AssertionError (); 26 } 27 28 public void addHeader(String arg0, String arg1) { 29 throw new AssertionError (); 30 } 31 32 public void addIntHeader(String arg0, int arg1) { 33 throw new AssertionError (); 34 } 35 36 public boolean containsHeader(String arg0) { 37 throw new AssertionError (); 38 } 39 40 public String encodeRedirectURL(String arg0) { 41 throw new AssertionError (); 42 } 43 44 public String encodeRedirectUrl(String arg0) { 45 throw new AssertionError (); 46 } 47 48 public String encodeURL(String arg0) { 49 throw new AssertionError (); 50 } 51 52 public String encodeUrl(String arg0) { 53 throw new AssertionError (); 54 } 55 56 public void sendError(int arg0) throws IOException { 57 throw new AssertionError (); 58 59 } 60 61 public void sendError(int arg0, String arg1) throws IOException { 62 throw new AssertionError (); 63 } 64 65 public void sendRedirect(String arg0) throws IOException { 66 throw new AssertionError (); 67 } 68 69 public void setDateHeader(String arg0, long arg1) { 70 throw new AssertionError (); 71 } 72 73 public void setHeader(String arg0, String arg1) { 74 throw new AssertionError (); 75 } 76 77 public void setIntHeader(String arg0, int arg1) { 78 throw new AssertionError (); 79 } 80 81 public void setStatus(int arg0) { 82 throw new AssertionError (); 83 } 84 85 public void setStatus(int arg0, String arg1) { 86 throw new AssertionError (); 87 } 88 89 public void flushBuffer() throws IOException { 90 throw new AssertionError (); 91 } 92 93 public int getBufferSize() { 94 throw new AssertionError (); 95 } 96 97 public String getCharacterEncoding() { 98 throw new AssertionError (); 99 } 100 101 public String getContentType() { 102 throw new AssertionError (); 103 } 104 105 public Locale getLocale() { 106 throw new AssertionError (); 107 } 108 109 public ServletOutputStream getOutputStream() throws IOException { 110 throw new AssertionError (); 111 } 112 113 public PrintWriter getWriter() throws IOException { 114 throw new AssertionError (); 115 } 116 117 public boolean isCommitted() { 118 throw new AssertionError (); 119 } 120 121 public void reset() { 122 throw new AssertionError (); 123 } 124 125 public void resetBuffer() { 126 throw new AssertionError (); 127 } 128 129 public void setBufferSize(int arg0) { 130 throw new AssertionError (); 131 } 132 133 public void setCharacterEncoding(String arg0) { 134 throw new AssertionError (); 135 } 136 137 public void setContentLength(int arg0) { 138 throw new AssertionError (); 139 } 140 141 public void setContentType(String arg0) { 142 throw new AssertionError (); 143 } 144 145 public void setLocale(Locale arg0) { 146 throw new AssertionError (); 147 } 148 149 } 150 | Popular Tags |