Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for jobLogId (0.04 seconds)

  1. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                jobHelper.unregister(scheduledJob);
                return;
            }
    
            final JobLog jobLog = new JobLog(scheduledJob);
            final String jobLogId = (String) runtime.getParameterMap().get(Constants.JOB_LOG_ID);
            if (jobLogId != null) {
                jobLog.setId(jobLogId);
            }
            final String scriptType = scheduledJob.getScriptType();
            final String script = scheduledJob.getScriptData();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

            final ApiStartJobResponse returned = response.jobLogId("abc123def456");
            assertSame(response, returned);
            assertEquals("abc123def456", response.jobLogId);
        }
    
        @Test
        public void test_ApiStartJobResponse_withNullJobLogId() {
            final ApiStartJobResponse response = new ApiStartJobResponse();
            response.jobLogId(null);
            assertNull(response.jobLogId);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
Back to Top