summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/net/URLConnection.java
blob: f5eff256aa0309b8a35289d29d76fc5704644caa (plain)
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package java.net;

public abstract class URLConnection {
  protected URLConnection(java.net.URL url) {
    throw new RuntimeException("Stub!");
  }

  public abstract void connect() throws java.io.IOException;

  public boolean getAllowUserInteraction() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.Object getContent() throws java.io.IOException {
    throw new RuntimeException("Stub!");
  }

  @java.lang.SuppressWarnings(value = {"unchecked"})
  public java.lang.Object getContent(java.lang.Class[] types) throws java.io.IOException {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String getContentEncoding() {
    throw new RuntimeException("Stub!");
  }

  public int getContentLength() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String getContentType() {
    throw new RuntimeException("Stub!");
  }

  public long getDate() {
    throw new RuntimeException("Stub!");
  }

  public static boolean getDefaultAllowUserInteraction() {
    throw new RuntimeException("Stub!");
  }

  @java.lang.Deprecated()
  public static java.lang.String getDefaultRequestProperty(java.lang.String field) {
    throw new RuntimeException("Stub!");
  }

  public boolean getDefaultUseCaches() {
    throw new RuntimeException("Stub!");
  }

  public boolean getDoInput() {
    throw new RuntimeException("Stub!");
  }

  public boolean getDoOutput() {
    throw new RuntimeException("Stub!");
  }

  public long getExpiration() {
    throw new RuntimeException("Stub!");
  }

  public static java.net.FileNameMap getFileNameMap() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String getHeaderField(int pos) {
    throw new RuntimeException("Stub!");
  }

  public java.util.Map<java.lang.String, java.util.List<java.lang.String>> getHeaderFields() {
    throw new RuntimeException("Stub!");
  }

  public java.util.Map<java.lang.String, java.util.List<java.lang.String>> getRequestProperties() {
    throw new RuntimeException("Stub!");
  }

  public void addRequestProperty(java.lang.String field, java.lang.String newValue) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String getHeaderField(java.lang.String key) {
    throw new RuntimeException("Stub!");
  }

  @java.lang.SuppressWarnings(value = {"deprecation"})
  public long getHeaderFieldDate(java.lang.String field, long defaultValue) {
    throw new RuntimeException("Stub!");
  }

  public int getHeaderFieldInt(java.lang.String field, int defaultValue) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String getHeaderFieldKey(int posn) {
    throw new RuntimeException("Stub!");
  }

  public long getIfModifiedSince() {
    throw new RuntimeException("Stub!");
  }

  public java.io.InputStream getInputStream() throws java.io.IOException {
    throw new RuntimeException("Stub!");
  }

  public long getLastModified() {
    throw new RuntimeException("Stub!");
  }

  public java.io.OutputStream getOutputStream() throws java.io.IOException {
    throw new RuntimeException("Stub!");
  }

  public java.security.Permission getPermission() throws java.io.IOException {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String getRequestProperty(java.lang.String field) {
    throw new RuntimeException("Stub!");
  }

  public java.net.URL getURL() {
    throw new RuntimeException("Stub!");
  }

  public boolean getUseCaches() {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String guessContentTypeFromName(java.lang.String url) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String guessContentTypeFromStream(java.io.InputStream is)
      throws java.io.IOException {
    throw new RuntimeException("Stub!");
  }

  public void setAllowUserInteraction(boolean newValue) {
    throw new RuntimeException("Stub!");
  }

  public static synchronized void setContentHandlerFactory(
      java.net.ContentHandlerFactory contentFactory) {
    throw new RuntimeException("Stub!");
  }

  public static void setDefaultAllowUserInteraction(boolean allows) {
    throw new RuntimeException("Stub!");
  }

  @java.lang.Deprecated()
  public static void setDefaultRequestProperty(java.lang.String field, java.lang.String value) {
    throw new RuntimeException("Stub!");
  }

  public void setDefaultUseCaches(boolean newValue) {
    throw new RuntimeException("Stub!");
  }

  public void setDoInput(boolean newValue) {
    throw new RuntimeException("Stub!");
  }

  public void setDoOutput(boolean newValue) {
    throw new RuntimeException("Stub!");
  }

  public static void setFileNameMap(java.net.FileNameMap map) {
    throw new RuntimeException("Stub!");
  }

  public void setIfModifiedSince(long newValue) {
    throw new RuntimeException("Stub!");
  }

  public void setRequestProperty(java.lang.String field, java.lang.String newValue) {
    throw new RuntimeException("Stub!");
  }

  public void setUseCaches(boolean newValue) {
    throw new RuntimeException("Stub!");
  }

  public void setConnectTimeout(int timeoutMillis) {
    throw new RuntimeException("Stub!");
  }

  public int getConnectTimeout() {
    throw new RuntimeException("Stub!");
  }

  public void setReadTimeout(int timeoutMillis) {
    throw new RuntimeException("Stub!");
  }

  public int getReadTimeout() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String toString() {
    throw new RuntimeException("Stub!");
  }

  protected java.net.URL url;
  protected long ifModifiedSince;
  protected boolean useCaches;
  protected boolean connected;
  protected boolean doOutput;
  protected boolean doInput;
  protected boolean allowUserInteraction;
}