Skip to content

Package: JobExecutionFactoryImpl

JobExecutionFactoryImpl

nameinstructionbranchcomplexitylinemethod
JobExecutionFactoryImpl()
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%
clone(JobExecution)
M: 13 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 3 C: 0
0%
M: 1 C: 0
0%
newCreator(KapuaId)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
newEntity(KapuaId)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
newListResult()
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
newQuery(KapuaId)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

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.service.job.execution.internal;
14:
15: import org.eclipse.kapua.KapuaEntityCloneException;
16: import org.eclipse.kapua.locator.KapuaProvider;
17: import org.eclipse.kapua.model.id.KapuaId;
18: import org.eclipse.kapua.service.job.execution.JobExecution;
19: import org.eclipse.kapua.service.job.execution.JobExecutionCreator;
20: import org.eclipse.kapua.service.job.execution.JobExecutionFactory;
21: import org.eclipse.kapua.service.job.execution.JobExecutionListResult;
22: import org.eclipse.kapua.service.job.execution.JobExecutionQuery;
23:
24: /**
25: * {@link JobExecutionFactory} implementation.
26: *
27: * @since 1.0.0
28: */
29: @KapuaProvider
30: public class JobExecutionFactoryImpl implements JobExecutionFactory {
31:
32: @Override
33: public JobExecution newEntity(KapuaId scopeId) {
34: return new JobExecutionImpl(scopeId);
35: }
36:
37: @Override
38: public JobExecutionCreator newCreator(KapuaId scopeId) {
39: return new JobExecutionCreatorImpl(scopeId);
40: }
41:
42: @Override
43: public JobExecutionQuery newQuery(KapuaId scopeId) {
44: return new JobExecutionQueryImpl(scopeId);
45: }
46:
47: @Override
48: public JobExecutionListResult newListResult() {
49: return new JobExecutionListResultImpl();
50: }
51:
52: @Override
53: public JobExecution clone(JobExecution jobExecution) {
54: try {
55: return new JobExecutionImpl(jobExecution);
56: } catch (Exception e) {
57: throw new KapuaEntityCloneException(e, JobExecution.TYPE, jobExecution);
58: }
59: }
60: }