Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAllowUserInteraction (0.2 sec)

  1. 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;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. 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;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  3. 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);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top