Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for file_authentication (0.5 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

        }
    
        @Override
        protected Class<? extends FileAuthentication> typeOfSelectedEntity() {
            return FileAuthentication.class;
        }
    
        @Override
        protected Class<FileAuthentication> typeOfHandlingEntity() {
            return FileAuthentication.class;
        }
    
        @Override
        protected Class<FileAuthenticationCB> 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/FileAuthenticationDbm.java

                    (et, vl) -> ((FileAuthentication) et).setPassword(DfTypeUtil.toString(vl)), "password");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getPort(),
                    (et, vl) -> ((FileAuthentication) et).setPort(DfTypeUtil.toInteger(vl)), "port");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getProtocolScheme(),
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.failure_url/failure_url"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.file_authentication/file_authentication"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.file_config/file_config"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    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/fileauth/AdminFileauthAction.java

        //                                                                        ============
        public static OptionalEntity<FileAuthentication> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                return OptionalEntity.of(new FileAuthentication()).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.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

            if (clientConfigMap != null) {
                paramMap.putAll(clientConfigMap);
            }
    
            // auth params
            final List<FileAuthentication> fileAuthList = fileAuthenticationService.getFileAuthenticationList(getId());
            final List<SmbAuthentication> smbAuthList = new ArrayList<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    						
    					<c:if test="${fe:permission('admin-fileauth-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/fileauth/')}"
    						   class="nav-link <c:if test="${param.menuType=='fileAuthentication'}">active</c:if>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_file_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)
Back to top