Searched defs:getRequestMethod (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpExchange.java44 * <ol><li>{@link #getRequestMethod()} to determine the command
110 public abstract String getRequestMethod (); method in class:HttpExchange
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpTransaction.java162 public String getRequestMethod (){ method in class:HttpTransaction
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpTransaction.java162 public String getRequestMethod (){ method in class:HttpTransaction
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpExchangeImpl.java58 public String getRequestMethod (){ method in class:HttpExchangeImpl
59 return impl.getRequestMethod();
H A DHttpsExchangeImpl.java58 public String getRequestMethod (){ method in class:HttpsExchangeImpl
59 return impl.getRequestMethod();
H A DExchangeImpl.java112 public String getRequestMethod (){ method in class:ExchangeImpl
121 return HEAD.equals(getRequestMethod());
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java168 public abstract String getRequestMethod(); method in class:HttpExchange
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DWSHTTPConnection.java175 public abstract @NotNull String getRequestMethod(); method in class:WSHTTPConnection
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableConnectionImpl.java177 public @NotNull String getRequestMethod() { method in class:PortableConnectionImpl
178 return httpExchange.getRequestMethod();
H A DServerConnectionImpl.java236 public @NotNull String getRequestMethod() { method in class:ServerConnectionImpl
237 return httpExchange.getRequestMethod();
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpURLConnection.java405 * @see #getRequestMethod()
436 public String getRequestMethod() { method in class:HttpURLConnection
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpClient.java275 httpuc.getRequestMethod() == "POST") {
646 if (getRequestMethod().equals("CONNECT") ||
647 (httpuc.getRequestMethod().equals("POST") &&
756 if (getRequestMethod().equals("CONNECT") ||
757 (httpuc.getRequestMethod().equals("POST") &&
940 String getRequestMethod() { method in class:HttpClient
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DHttpsURLConnectionOldImpl.java347 public String getRequestMethod() { method in class:HttpsURLConnectionOldImpl
348 return delegate.getRequestMethod();
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DHttpsURLConnectionImpl.java377 public String getRequestMethod() { method in class:HttpsURLConnectionImpl
378 return delegate.getRequestMethod();

Completed in 64 milliseconds