Skip to content

Commit

Permalink
[cron] fix prefix dot.
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Bischof <stbischof@bipolis.org>
  • Loading branch information
stbischof authored and pkriens committed Sep 5, 2024
1 parent 0903fa1 commit a1de422
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ private Constants() {
/**
* The service property Prefix for cronjobs
*/
public static final String SERVICE_PROPERTY_CRONJOB_PREFIX = "cronjob";
public static final String SERVICE_PROPERTY_CRONJOB_PREFIX = "cronjob.";

/**
* The service property that specifies the cron schedule. The type is String+.
*/
public static final String SERVICE_PROPERTY_CRONJOB_CRON = SERVICE_PROPERTY_CRONJOB_PREFIX+".cron";
public static final String SERVICE_PROPERTY_CRONJOB_CRON = SERVICE_PROPERTY_CRONJOB_PREFIX+"cron";

/**
* The service property that specifies the name of the cron job. The type is
* String.
*/
public static final String SERVICE_PROPERTY_CRONJOB_NAME = SERVICE_PROPERTY_CRONJOB_PREFIX+".name";
public static final String SERVICE_PROPERTY_CRONJOB_NAME = SERVICE_PROPERTY_CRONJOB_PREFIX+"name";

/**
* Default name of the cron job.
Expand Down

0 comments on commit a1de422

Please sign in to comment.