Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for accessor (0.18 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

        public ActionResponse hookBefore(final ActionRuntime runtime) {
            final String requestPath = runtime.getRequestPath();
            final String executeName = runtime.getExecuteMethod().getName();
            activityHelper.access(getUserBean(), requestPath, executeName);
            return super.hookBefore(runtime);
        }
    
        @Override
        public void hookFinally(final ActionRuntime runtime) {
            super.hookFinally(runtime);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String CURL_HELPER = "curlHelper";
    
        private static final String QUERY_STRING_BUILDER = "queryStringBuilder";
    
        private static final String ACCESS_TOKEN_HELPER = "accessTokenHelper";
    
        private static final String AUTHENTICATION_MANAGER = "authenticationManager";
    
        private static final String THUMBNAIL_MANAGER = "thumbnailManager";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                    }
                    default -> null;
                    };
                });
            } catch (final Exception e) {
                logger.warn("Failed to access a crawling config cache: {}", configId, e);
                return null;
            }
        }
    
        public OptionalThing<String> getPipeline(final String configId) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  4. pom.xml

    		<profile>
    			<id>build</id>
    			<activation>
    				<activeByDefault>true</activeByDefault>
    			</activation>
    			<properties>
    				<test.include.path>**/*Test.java</test.include.path>
    				<test.command.args>--illegal-access=permit</test.command.args>
    			</properties>
    		</profile>
    		<profile>
    			<id>integrationTests</id>
    			<properties>
    				<test.include.path>**/*Tests.java</test.include.path>
    				<test.command.args />
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public String getCrawlingInfoId() {
            checkSpecifiedProperty("crawlingInfoId");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/BsKeyMatch.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public Float getBoost() {
            checkSpecifiedProperty("boost");
            return boost;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWordToLabel.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public String getElevateWordId() {
            checkSpecifiedProperty("elevateWordId");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsRoleType.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public String getCreatedBy() {
            checkSpecifiedProperty("createdBy");
            return convertEmptyToNull(createdBy);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/bsentity/BsRole.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsJobLog.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public Long getEndTime() {
            checkSpecifiedProperty("endTime");
            return endTime;
        }
    
    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)
Back to top