Searched refs:responseCode (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DAuthenticator.java52 private int responseCode; field in class:Authenticator.Failure
54 public Failure (int responseCode) { argument
55 this.responseCode = responseCode;
62 return responseCode;
94 private int responseCode; field in class:Authenticator.Retry
96 public Retry (int responseCode) { argument
97 this.responseCode = responseCode;
104 return responseCode;
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpRetryException.java42 private int responseCode; field in class:HttpRetryException
54 responseCode = code;
59 * responseCode and the contents of the Location response header field.
67 responseCode = code;
76 public int responseCode() { method in class:HttpRetryException
77 return responseCode;
H A DHttpURLConnection.java270 protected int responseCode = -1; field in class:HttpURLConnection
457 if (responseCode != -1) {
458 return responseCode;
511 responseCode = Integer.parseInt
513 return responseCode;
/openjdk7/jdk/test/java/net/HttpURLConnection/
H A DgetResponseCode.java36 int responseCode = myCon.getResponseCode();
37 if (responseCode == -1) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java161 int responseCode = 0;
245 responseCode = httpConnection.getResponseCode();
248 if (responseCode == HttpURLConnection.HTTP_INTERNAL_ERROR) {
251 //else if (responseCode != HttpURLConnection.HTTP_OK)
252 //else if (!(responseCode >= HttpURLConnection.HTTP_OK && responseCode < 207))
253 else if ((responseCode / 100) != 2) {
259 + responseCode
265 responseCode = httpConnection.getResponseCode();
266 if (responseCode
[all...]
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/http/ChunkedOutputStream/
H A DTest.java239 if (e.responseCode() != 307) {
240 throw new Exception ("Wrong response code " + e.responseCode());
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java1036 responseCode = -1;
1040 responseCode = Integer.parseInt(sa[1]);
1044 if (responseCode != 100) {
1051 responseCode = -1;
1136 int i = responseCode;
1138 responseCode = i;
1690 if (connected && responseCode >= 400) {
2478 responseCode = -1;
2490 responseCode = -1;
2503 responseCode
[all...]
/openjdk7/jdk/test/sun/net/www/http/ChunkedOutputStream/
H A DTest.java355 if (e.responseCode() != 307) {
356 throw new Exception ("Wrong response code " + e.responseCode());

Completed in 1723 milliseconds