KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > weblogic > servlet > internal > ServletResponseImpl


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