Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for isScriptAuditLogEnabled (0.24 seconds)

  1. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

         */
        public void scriptExecution(final String scriptType, final String script, final String source, final String user, final String result) {
            if (!ComponentUtil.getFessConfig().isScriptAuditLogEnabled()) {
                return;
            }
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.SCRIPT_EXECUTION.name());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

         */
        @PostConstruct
        public void init() {
            buildScriptCache();
            scriptAuditLogEnabled = ComponentUtil.available() && ComponentUtil.getFessConfig().isScriptAuditLogEnabled()
                    && ComponentUtil.hasComponent("activityHelper");
        }
    
        private void buildScriptCache() {
            final Cache<String, CachedScript> oldCache = scriptCache;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. true <br>
         * comment: Script audit log settings.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isScriptAuditLogEnabled();
    
        /**
         * Get the value for the key 'script.audit.log.max.length'. <br>
         * The value is, e.g. 100 <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top