Skip to content

Package: JobContextPropertyNames

JobContextPropertyNames

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2017, 2022 Eurotech and/or its affiliates and others
3: *
4: * This program and the accompanying materials are made
5: * available under the terms of the Eclipse Public License 2.0
6: * which is available at https://www.eclipse.org/legal/epl-2.0/
7: *
8: * SPDX-License-Identifier: EPL-2.0
9: *
10: * Contributors:
11: * Eurotech - initial API and implementation
12: *******************************************************************************/
13: package org.eclipse.kapua.job.engine.commons.wrappers;
14:
15: /**
16: * {@link JobContextPropertyNames} definition.
17: *
18: * @since 1.0.0
19: */
20: public class JobContextPropertyNames {
21:
22: private JobContextPropertyNames() {
23: }
24:
25: /**
26: * @since 1.0.0
27: */
28: public static final String JOB_SCOPE_ID = "job.scopeId";
29:
30: /**
31: * @since 1.0.0
32: */
33: public static final String JOB_ID = "job.id";
34:
35: /**
36: * @since 1.0.0
37: */
38: public static final String JOB_TARGET_SUBLIST = "job.target.sublist";
39:
40: /**
41: * @since 1.1.0
42: */
43: public static final String RESUMED_KAPUA_EXECUTION_ID = "job.execution.resumedId";
44:
45: /**
46: * @since 2.0.0
47: */
48: public static final String JOB_STEP_PROPERTIES_OVERRIDES = "job.step.properties.overrides";
49:
50: /**
51: * since 1.1.0
52: */
53: public static final String RESET_STEP_INDEX = "job.step.resetIndex";
54:
55: /**
56: * @since 1.0.0
57: */
58: public static final String JOB_STEP_FROM_INDEX = "job.step.fromIndex";
59:
60: /**
61: * @since 1.1.0
62: */
63: public static final String ENQUEUE = "job.enqueue";
64:
65: /**
66: * @since 1.1.0
67: */
68: public static final String KAPUA_EXECUTION_ID = "job.execution.id";
69: }