Searched defs:followRedirects (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DHTTPInputSource.java148 public void setFollowHTTPRedirects(boolean followRedirects) { argument
149 fFollowRedirects = followRedirects;
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpURLConnection.java280 private static boolean followRedirects = true; field in class:HttpURLConnection
291 * Its default value is based on the value of the static followRedirects
298 protected boolean instanceFollowRedirects = followRedirects;
337 followRedirects = set;
350 return followRedirects;
358 * The default value comes from followRedirects, which defaults to
361 * @param followRedirects a <code>boolean</code> indicating
368 public void setInstanceFollowRedirects(boolean followRedirects) { argument
369 instanceFollowRedirects = followRedirects;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityManager.java617 boolean followRedirects = true;
632 followRedirects = httpInputSource.getFollowHTTPRedirects();
633 if (!followRedirects) {
634 setInstanceFollowRedirects(urlConnection, followRedirects);
644 if (followRedirects) {
2106 public static void setInstanceFollowRedirects(HttpURLConnection urlCon, boolean followRedirects) { argument
2109 method.invoke(urlCon, new Object[] {followRedirects ? Boolean.TRUE : Boolean.FALSE});

Completed in 54 milliseconds