- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getInstanceFollowRedirects (0.34 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
connection.setInstanceFollowRedirects(instanceFollowRedirects); } @Override public boolean getInstanceFollowRedirects() { return connection.getInstanceFollowRedirects(); } @Override public void setRequestMethod(final String requestMethod) throws ProtocolException { connection.setRequestMethod(requestMethod);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
this.connection.setInstanceFollowRedirects(instanceFollowRedirects); } @Override public boolean getInstanceFollowRedirects() { return this.connection.getInstanceFollowRedirects(); } @Override public void setRequestMethod(final String requestMethod) throws ProtocolException { this.connection.setRequestMethod(requestMethod);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
when(mockConnection.getUseCaches()).thenReturn(false); when(mockConnection.getReadTimeout()).thenReturn(1000); when(mockConnection.getConnectTimeout()).thenReturn(2000); when(mockConnection.getInstanceFollowRedirects()).thenReturn(true); Map<String, List<String>> properties = new HashMap<>(); properties.put("Accept", Collections.singletonList("application/json"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0)