- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getAllowUserInteraction (0.11 seconds)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
connection.setAllowUserInteraction(allowUserInteraction); this.allowUserInteraction = allowUserInteraction; } @Override public boolean getAllowUserInteraction() { return connection.getAllowUserInteraction(); } @Override public void setUseCaches(final boolean useCaches) { connection.setUseCaches(useCaches); this.useCaches = useCaches; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 22.1K bytes - Click Count (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
this.connection.setAllowUserInteraction(allowUserInteraction); this.allowUserInteraction = allowUserInteraction; } @Override public boolean getAllowUserInteraction() { return this.connection.getAllowUserInteraction(); } @Override public void setUseCaches(final boolean useCaches) { this.connection.setUseCaches(useCaches); this.useCaches = useCaches; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 25.6K bytes - Click Count (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
*/ @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); when(mockConnection.getIfModifiedSince()).thenReturn(12345L);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 12.6K bytes - Click Count (0)