Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInstanceFollowRedirects (0.4 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        public void setInstanceFollowRedirects(boolean instanceFollowRedirects) {
            connection.setInstanceFollowRedirects(instanceFollowRedirects);
        }
    
        public boolean getInstanceFollowRedirects() {
            return connection.getInstanceFollowRedirects();
        }
    
        public void setRequestMethod(String requestMethod)
                throws ProtocolException {
            connection.setRequestMethod(requestMethod);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            this.connection.setInstanceFollowRedirects(instanceFollowRedirects);
        }
    
    
        @Override
        public boolean getInstanceFollowRedirects () {
            return this.connection.getInstanceFollowRedirects();
        }
    
    
        @Override
        public void setRequestMethod ( String requestMethod ) throws ProtocolException {
            this.connection.setRequestMethod(requestMethod);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
Back to top