Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for webAuthentication (0.16 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.ParameterUtil;
    
    /**
     * @author FreeGen
     */
    public class WebAuthentication extends BsWebAuthentication {
    
        private static final long serialVersionUID = 1L;
    
        private static final Logger logger = LogManager.getLogger(WebAuthentication.class);
    
        private WebConfig webConfig;
    
        public Authentication getAuthentication() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends WebAuthentication> typeOfSelectedEntity() {
            return WebAuthentication.class;
        }
    
        @Override
        protected Class<WebAuthentication> typeOfHandlingEntity() {
            return WebAuthentication.class;
        }
    
        @Override
        protected Class<WebAuthenticationCB> typeOfHandlingConditionBean() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebAuthenticationDbm.java

        {
            setupEpg(_epgMap, et -> ((WebAuthentication) et).getAuthRealm(),
                    (et, vl) -> ((WebAuthentication) et).setAuthRealm(DfTypeUtil.toString(vl)), "authRealm");
            setupEpg(_epgMap, et -> ((WebAuthentication) et).getCreatedBy(),
                    (et, vl) -> ((WebAuthentication) et).setCreatedBy(DfTypeUtil.toString(vl)), "createdBy");
            setupEpg(_epgMap, et -> ((WebAuthentication) et).getCreatedTime(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

            webAuthentication.setParameters(ParameterUtil.encrypt(webAuthentication.getParameters()));
            webAuthenticationBhv.insertOrUpdate(webAuthentication, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Deletes a web authentication configuration.
         *
         * @param webAuthentication The web authentication configuration to delete
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java

        }
    
        /**
         * Creates an EditBody from a WebAuthentication entity.
         *
         * @param entity the web authentication entity to convert
         * @return the converted EditBody
         */
        protected EditBody createEditBody(final WebAuthentication entity) {
            final EditBody body = new EditBody();
            copyBeanToBean(entity, body, copyOp -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        /**
         * Retrieves or creates a WebAuthentication entity based on the form's CRUD mode.
         *
         * @param form the form containing the web authentication data
         * @param username the username of the current user
         * @param currentTime the current timestamp
         * @return an optional WebAuthentication entity
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java

            };
            ComponentUtil.register(systemHelper, "systemHelper");
            WebAuthenticationService webAuthenticationService = new WebAuthenticationService() {
                @Override
                public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) {
                    return Collections.emptyList();
                }
            };
    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/opensearch/config/exentity/WebConfig.java

            } else {
                paramMap.put(Client.USER_AGENT, userAgent);
            }
    
            final List<WebAuthentication> webAuthList = webAuthenticationService.getWebAuthenticationList(getId());
            final List<Authentication> basicAuthList = new ArrayList<>();
            for (final WebAuthentication webAuth : webAuthList) {
                basicAuthList.add(webAuth.getAuthentication());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="crawl"/>
            <jsp:param name="menuType" value="webAuthentication"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="crawl"/>
            <jsp:param name="menuType" value="webAuthentication"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 6.1K bytes
    - Viewed (0)
Back to top