Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for authentication (0.27 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsWebAuthenticationCB.java

        @Override
        public WebAuthenticationDbm asDBMeta() {
            return WebAuthenticationDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "web_authentication";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                    basicAuthList.add(new AuthenticationImpl(authScope, credentials, authScheme));
                }
                factoryParamMap.put(HcHttpClient.BASIC_AUTHENTICATIONS_PROPERTY,
                        basicAuthList.toArray(new Authentication[basicAuthList.size()]));
            }
    
            // request header
            final List<org.codelibs.fess.crawler.client.http.RequestHeader> rhList = new ArrayList<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * @param proxies The available proxies, may be {@code null}.
         */
        void injectProxy(List<ArtifactRepository> repositories, List<org.apache.maven.settings.Proxy> proxies);
    
        /**
         * Injects the authentication information into the specified repositories. For each repository that is matched by a
         * server, its credentials will be updated to match the values from the server specification. Repositories without a
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type1Message.java

        }
    
    
        /**
         * Returns the supplied authentication domain.
         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain () {
            return this.suppliedDomain;
        }
    
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 02 12:55:08 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpURLConnection.java

    import jcifs.ntlmssp.Type3Message;
    import jcifs.smb.NtlmPasswordAuthentication;
    
    
    /**
     * Wraps an <code>HttpURLConnection</code> to provide NTLM authentication
     * services.
     *
     * Please read <a href="../../../httpclient.html">Using jCIFS NTLM Authentication for HTTP Connections</a>.
     * 
     * Warning: Do not use this if there is a chance that you might have multiple connections (even plain
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy;
    import org.apache.maven.artifact.repository.Authentication;
    import org.apache.maven.artifact.repository.metadata.RepositoryMetadata;
    import org.apache.maven.repository.Proxy;
    import org.codehaus.plexus.logging.AbstractLogEnabled;
    import org.codehaus.plexus.logging.Logger;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileAuthenticationDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "file_authentication";
        protected final String _tableDispName = "file_authentication";
        protected final String _tablePropertyName = "FileAuthentication";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/repository/legacy/StringWagon.java

    import org.apache.maven.wagon.OutputData;
    import org.apache.maven.wagon.ResourceDoesNotExistException;
    import org.apache.maven.wagon.StreamWagon;
    import org.apache.maven.wagon.TransferFailedException;
    import org.apache.maven.wagon.authentication.AuthenticationException;
    import org.apache.maven.wagon.authorization.AuthorizationException;
    import org.apache.maven.wagon.resource.Resource;
    
    @Named("string")
    @Singleton
    public class StringWagon extends StreamWagon {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/Configuration.java

         * 
         * @return password used when guest authentication is requested
         */
        String getGuestPassword ();
    
    
        /**
         * Property <tt>jcifs.smb.client.guestUsername</tt>, defaults to GUEST
         * 
         * @return username used when guest authentication is requested
         */
        String getGuestUsername ();
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

                throw new NdrException("Data representation not supported");
            length = buf.dec_ndr_short();
            if (buf.dec_ndr_short() != 0)
                throw new NdrException("DCERPC authentication not supported");
            call_id = buf.dec_ndr_long();
        }
        public void encode(NdrBuffer buf) throws NdrException {
            int start = buf.getIndex();
            int alloc_hint_index = 0;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
Back to top