Skip to content

Commit

Permalink
fix: correct trigger property descriptions for jobId and scopeId
Browse files Browse the repository at this point in the history
  • Loading branch information
MDeLuise committed Dec 17, 2024
1 parent 747af8a commit 2cadcf7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
*******************************************************************************/
package org.eclipse.kapua.service.scheduler.trigger.definition.quartz;

import com.beust.jcommander.internal.Lists;
import org.eclipse.kapua.model.id.KapuaId;
import org.eclipse.kapua.service.job.Job;
import org.eclipse.kapua.service.scheduler.quartz.job.KapuaJobLauncher;
import org.eclipse.kapua.service.scheduler.trigger.definition.TriggerDefinitionRecord;
import org.eclipse.kapua.service.scheduler.trigger.definition.TriggerPropertyRecord;
import org.eclipse.kapua.service.scheduler.trigger.definition.TriggerType;
import com.beust.jcommander.internal.Lists;

/**
* Interval {@link Job} {@link TriggerDefinitionRecord}
Expand All @@ -36,12 +36,12 @@ public CronJobTriggerDefinition() {
Lists.newArrayList(
new TriggerPropertyRecord(
CronJobTriggerDefinitionPropertyKeys.SCOPE_ID,
"Identifier of the job this schedule will be applied to",
"Identifier of the scope of the job this schedule will be applied to",
KapuaId.class.getName(),
null),
new TriggerPropertyRecord(
CronJobTriggerDefinitionPropertyKeys.JOB_ID,
"Identifier of the scope of the job this schedule will be applied to",
"Identifier of the job this schedule will be applied to",
KapuaId.class.getName(),
null),
new TriggerPropertyRecord(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
*******************************************************************************/
package org.eclipse.kapua.service.scheduler.trigger.definition.quartz;

import com.beust.jcommander.internal.Lists;
import org.eclipse.kapua.model.id.KapuaId;
import org.eclipse.kapua.service.job.Job;
import org.eclipse.kapua.service.scheduler.quartz.job.KapuaJobLauncher;
import org.eclipse.kapua.service.scheduler.trigger.definition.TriggerDefinitionRecord;
import org.eclipse.kapua.service.scheduler.trigger.definition.TriggerPropertyRecord;
import org.eclipse.kapua.service.scheduler.trigger.definition.TriggerType;
import com.beust.jcommander.internal.Lists;

/**
* Interval {@link Job} {@link TriggerDefinitionRecord}
Expand All @@ -36,12 +36,12 @@ public IntervalJobTriggerDefinition() {
Lists.newArrayList(
new TriggerPropertyRecord(
IntervalJobTriggerDefinitionPropertyKeys.SCOPE_ID,
"Identifier of the job this schedule will be applied to",
"Identifier of the scope of the job this schedule will be applied to",
KapuaId.class.getName(),
null),
new TriggerPropertyRecord(
IntervalJobTriggerDefinitionPropertyKeys.JOB_ID,
"Identifier of the scope of the job this schedule will be applied to",
"Identifier of the job this schedule will be applied to",
KapuaId.class.getName(),
null),
new TriggerPropertyRecord(
Expand Down

0 comments on commit 2cadcf7

Please sign in to comment.