Searched refs:getRequestProperty (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/java/net/URLConnection/
H A DRequestProperties.java92 if (urlc0.getRequestProperty (null) != null) {
93 System.out.println ("http: getRequestProperty (null,) did not return null");
97 if (urlc1.getRequestProperty (null) != null) {
98 System.out.println ("file: getRequestProperty (null,) did not return null");
102 if (urlc2.getRequestProperty (null) != null) {
103 System.out.println ("ftp: getRequestProperty (null,) did not return null");
107 if (urlc2.getRequestProperty (null) != null) {
108 System.out.println ("jar: getRequestProperty (null,) did not return null");
H A DRequestPropertyValues.java90 String value = conn.getRequestProperty(goodKeys[i]);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DJarURLConnection.java249 public String getRequestProperty(String key) { method in class:JarURLConnection
250 return jarFileURLConnection.getRequestProperty(key);
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DHttpsURLConnectionOldImpl.java311 public String getRequestProperty(String key) { method in class:HttpsURLConnectionOldImpl
312 return delegate.getRequestProperty(key);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DHttpsURLConnectionImpl.java341 public String getRequestProperty(String key) { method in class:HttpsURLConnectionImpl
342 return delegate.getRequestProperty(key);
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DURLConnection.java82 * The following three methods addRequestProperty, getRequestProperty,
93 public String getRequestProperty(String key) { method in class:URLConnection
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DHttpOnly.java99 // TEST 1: check getRequestProperty doesn't return the HttpOnly cookie
101 String cookie = uc.getRequestProperty("Cookie");
103 "Cookie header returned from getRequestProperty, value " + cookie);
165 // TEST 5: check getRequestProperty doesn't return the HttpOnly cookie
166 cookie = uc.getRequestProperty("Cookie");
168 "HttpOnly cookie returned from getRequestProperty, value " + cookie);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java574 * @see #getRequestProperty(java.lang.String)
606 public String getRequestProperty(String key) { method in class:FtpURLConnection
607 String value = super.getRequestProperty(key);
/openjdk7/jdk/src/share/classes/java/net/
H A DURLConnection.java1079 * @see #getRequestProperty(java.lang.String)
1129 public String getRequestProperty(String key) { method in class:URLConnection
1190 * @see java.net.URLConnection#getRequestProperty(java.lang.String)
1192 * @deprecated The instance specific getRequestProperty method
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java2791 public synchronized String getRequestProperty (String key) { method in class:HttpURLConnection

Completed in 117 milliseconds