Skip to content

Package: JobStoppingExceptionInfo

JobStoppingExceptionInfo

nameinstructionbranchcomplexitylinemethod
JobStoppingExceptionInfo()
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
JobStoppingExceptionInfo(JobStoppingException)
M: 6 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
getExecutionId()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
setExecutionId(KapuaId)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2021, 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.app.api.core.exception.model;
14:
15: import javax.ws.rs.core.Response.Status;
16: import javax.xml.bind.annotation.XmlAccessType;
17: import javax.xml.bind.annotation.XmlAccessorType;
18: import javax.xml.bind.annotation.XmlElement;
19: import javax.xml.bind.annotation.XmlRootElement;
20: import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21:
22: import org.eclipse.kapua.job.engine.exception.JobStoppingException;
23: import org.eclipse.kapua.job.engine.exception.KapuaJobEngineErrorCodes;
24: import org.eclipse.kapua.model.id.KapuaId;
25: import org.eclipse.kapua.model.id.KapuaIdAdapter;
26:
27: @XmlRootElement(name = "jobStartingExceptionInfo")
28: @XmlAccessorType(XmlAccessType.FIELD)
29: public class JobStoppingExceptionInfo extends JobEngineExceptionInfo {
30:
31: @XmlElement(name = "executionId")
32: @XmlJavaTypeAdapter(KapuaIdAdapter.class)
33: private KapuaId executionId;
34:
35: public JobStoppingExceptionInfo() {
36: this(null);
37: }
38:
39: public JobStoppingExceptionInfo(JobStoppingException jobStoppingException) {
40: super(Status.INTERNAL_SERVER_ERROR, KapuaJobEngineErrorCodes.JOB_STOPPING, jobStoppingException);
41: }
42:
43: public KapuaId getExecutionId() {
44: return executionId;
45: }
46:
47: public void setExecutionId(KapuaId executionId) {
48: this.executionId = executionId;
49: }
50:
51: }