Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for authentication (0.96 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/fileauth/SearchForm.java

     */
    package org.codelibs.fess.app.web.admin.fileauth;
    
    /**
     * The search form for File Authentication.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching file authentication settings.
         */
        public String id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 947 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

    import org.lastaflute.web.response.ActionResponse;
    
    /**
     * Interface for SSO (Single Sign-On) authenticator implementations.
     *
     * This interface defines the contract for SSO authentication providers that can be
     * integrated with Fess. Implementations handle specific SSO protocols like SAML,
     * OAuth, SPNEGO, or other authentication mechanisms. Each authenticator is responsible
     * for obtaining login credentials, resolving user information, and managing SSO
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing web authentication configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing web authentication entries,
     * including tracking information for optimistic locking and audit trails.
     * Web authentication configurations define credentials for accessing protected web resources during crawling.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        private int currentPageNumber;
    
        /** The unique identifier for the file authentication entry. */
        public String id;
    
        /** The port number for the file authentication connection. */
        public String port;
    
        /** The username for file authentication. */
        public String username;
    
        /** The file configuration ID associated with this authentication. */
        public String fileConfigId;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/EditBody.java

    import org.codelibs.fess.app.web.admin.fileauth.EditForm;
    
    /**
     * Request body class for file authentication edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for file authentication management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java

        public String protocolScheme;
    
        /** The username for file authentication (required, maximum 100 characters). */
        @Required
        @Size(max = 100)
        public String username;
    
        /** The password for file authentication (maximum 100 characters). */
        @Size(max = 100)
        public String password;
    
        /** Additional parameters for file authentication (maximum 1000 characters). */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java

    import org.codelibs.fess.app.service.RequestHeaderService;
    import org.codelibs.fess.app.service.WebAuthenticationService;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.client.http.Authentication;
    import org.codelibs.fess.crawler.client.http.HcHttpClient;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.mylasta.direction.FessProp;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for File Authentication management.
     *
     */
    public class AdminFileauthAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminFileauthAction() {
            super();
        }
    
        /** The role name for file authentication administration. */
        public static final String ROLE = "admin-fileauth";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/RecordingAuthenticator.kt

     * limitations under the License.
     */
    package okhttp3.internal
    
    import java.net.Authenticator
    import java.net.PasswordAuthentication
    
    class RecordingAuthenticator(
      private val authentication: PasswordAuthentication? =
        PasswordAuthentication(
          "username",
          "password".toCharArray(),
        ),
    ) : Authenticator() {
      val calls = mutableListOf<String>()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/UserService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing user operations in the Fess search system.
     * This service provides CRUD operations for user management, including user authentication,
     * password management, and user listing with pagination support.
     *
     */
    public class UserService {
    
        /**
         * Default constructor for UserService.
         */
        public UserService() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top