Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for web_authentication (0.18 sec)

  1. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.thumbnail_queue/thumbnail_queue"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.web_authentication/web_authentication"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.web_config/web_config"</arg>
    		</postConstruct>
    		<!-- fess_user index -->
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Oct 21 12:20:52 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        //                                                                        ============
        public static OptionalEntity<WebAuthentication> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                return OptionalEntity.of(new WebAuthentication()).map(entity -> {
                    entity.setCreatedBy(username);
                    entity.setCreatedTime(currentTime);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    						</a></li></c:if>
    						
    					<c:if test="${fe:permission('admin-webauth-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/webauth/')}"
    						   class="nav-link <c:if test="${param.menuType=='webAuthentication'}">active</c:if>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_web_authentication" /></p>
    						</a></li></c:if>
    						
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        public static final String USER_AGENT_PROPERTY = "userAgent";
    
        public static final String ROBOTS_TXT_ENABLED_PROPERTY = "robotsTxtEnabled";
    
        public static final String AUTHENTICATIONS_PROPERTY = "webAuthentications";
    
        public static final String REQUERT_HEADERS_PROPERTY = "requestHeaders";
    
        public static final String REDIRECTS_ENABLED = "redirectsEnabled";
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu May 09 09:29:26 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top