- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getRequestMethod (0.27 sec)
-
src/main/java/jcifs/http/NtlmHttpURLConnection.java
this.connection.setRequestMethod(requestMethod); this.method = requestMethod; } @Override public String getRequestMethod() { return this.connection.getRequestMethod(); } @Override public int getResponseCode() throws IOException { handshake(); return this.connection.getResponseCode(); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
* @throws ProtocolException */ @Test void testConstructorCopiesSettings() throws ProtocolException { // Arrange when(mockConnection.getRequestMethod()).thenReturn("GET"); when(mockConnection.getAllowUserInteraction()).thenReturn(true); when(mockConnection.getDoInput()).thenReturn(true); when(mockConnection.getDoOutput()).thenReturn(true);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
connection.setRequestMethod(requestMethod); this.method = requestMethod; } @Override public String getRequestMethod() { return connection.getRequestMethod(); } @Override public int getResponseCode() throws IOException { try { handshake(); } catch (final IOException ex) {}
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
} else { return con.getInputStream(); } } else if (Method.HEAD.toString().equalsIgnoreCase(con.getRequestMethod())) { return new ByteArrayInputStream(new byte[0]); } else { if (GZIP.equals(con.getContentEncoding())) {Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 18.6K bytes - Viewed (0)