Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isAllowGuestFallback (0.22 sec)

  1. pom.xml

    						</difference>
    
    						<difference>
    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>boolean isAllowGuestFallback()</method>
    						</difference>
    						<difference>
    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>java.lang.String getGuestUsername()</method>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/SessionTest.java

            CIFSContext ctx = getContext();
            ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) {
    
                @Override
                public boolean isAllowGuestFallback () {
                    return true;
                }
    
            }).withCredentials(new NtlmPasswordAuthenticator("invalid", "invalid"));
    
            try ( SmbResource f = new SmbFile(getTestShareGuestURL(), ctx) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.guestUsername;
        }
    
    
        @Override
        public String getGuestPassword () {
            return this.guestPassword;
        }
    
    
        @Override
        public boolean isAllowGuestFallback () {
            return this.allowGuestFallback;
        }
    
    
        @Override
        public byte[] getMachineId () {
            return this.machineId;
        }
    
    
        /**
         * {@inheritDoc}
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * Property <tt>jcifs.smb.client.allowGuestFallback</tt>, defaults to false
         * 
         * @return whether to permit guest logins when user authentication is requested
         */
        boolean isAllowGuestFallback ();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top