Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for resolver (0.21 sec)

  1. src/main/java/jcifs/smb/SIDCacheImpl.java

                if ( list.size() > 0 ) {
                    SID[] resolved = list.toArray(new SID[list.size()]);
                    resolveSids0(authorityServerName, tc, resolved);
                    for ( si = 0; si < resolved.length; si++ ) {
                        this.sidCache.put(resolved[ si ], resolved[ si ]);
                    }
                }
            }
        }
    
    
        /**
         * Resolve an array of SIDs using a cache and at most one MSRPC request.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

            // ensure that the domain name gets resolved through WINS so that
            // it gets the workgroup type.
            CIFSContext ctx = withConfig(bctx, new DelegatingConfiguration(bctx.getConfig()) {
    
                @Override
                public List<ResolverType> getResolveOrder () {
                    return Arrays.asList(ResolverType.RESOLVER_WINS);
                }
            });
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                logger.debug("SamlCredential: {}", samlCredential);
            }
            return samlCredential;
        }
    
        @Override
        public void resolveCredential(final LoginCredentialResolver resolver) {
            resolver.resolve(SamlCredential.class, credential -> OptionalEntity.of(credential.getUser()));
        }
    
        @Override
        public String logout(final FessUserBean user) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        }
    
        @Override
        public void resolveCredential(final LoginCredentialResolver resolver) {
            resolver.resolve(OpenIdConnectCredential.class, credential -> OptionalEntity.of(credential.getUser()));
        }
    
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/CIFSContext.java

         */
        SmbTransportPool getTransportPool ();
    
    
        /**
         * @return the DFS instance for this context
         */
        DfsResolver getDfs ();
    
    
        /**
         * @return the SID resolver for this context
         */
        SidResolver getSIDResolver ();
    
    
        /**
         * 
         * @return the used credentials
         */
        Credentials getCredentials ();
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                return value;
            }
            return request.getRequestURL().toString();
        }
    
        @Override
        public void resolveCredential(final LoginCredentialResolver resolver) {
            resolver.resolve(AzureAdCredential.class, credential -> OptionalEntity.of(credential.getUser()));
        }
    
        public void setAcquisitionTimeout(final long acquisitionTimeout) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/SessionTest.java

                "smb31");
        }
    
    
        @Test
        public void logonUser () throws IOException {
            try ( SmbResource f = getDefaultShareRoot() ) {
                checkConnection(f);
                f.resolve("test").exists();
            }
        }
    
    
        @Test
        public void logonUserHash () throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Address.java

         * @return instance for type, null if the type cannot be unwrapped
         */
        <T extends Address> T unwrap ( Class<T> type );
    
    
        /**
         * 
         * @return the resolved host name, or the host address if it could not be resolved
         */
        String getHostName ();
    
    
        /**
         * Return the IP address as text such as "192.168.1.15".
         * 
         * @return the ip address
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 03 13:22:30 GMT 2018
    - 2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Dfs.java

                if (strictView && ioe instanceof SmbAuthException) {
                    throw (SmbAuthException)ioe;
                }
            }
            return null;
        }
        public synchronized DfsReferral resolve(String domain,
                    String root,
                    String path,
                    NtlmPasswordAuthentication auth) throws SmbAuthException {
            DfsReferral dr = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

         * Not exactly sure what that is all about, certainly legacy stuff
         * 
         * @return resolveHashes
         */
        boolean isResolveHashes ();
    
    
        /**
         * @return whether this refrral needs to be resolved further
         */
        boolean isIntermediate ();
    
    
        /**
         * @param next
         * @return new referral, combining a chain of referrals
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
Back to top