Skip to content

Package: JobDeviceManagementOperationFactoryImpl

JobDeviceManagementOperationFactoryImpl

nameinstructionbranchcomplexitylinemethod
JobDeviceManagementOperationFactoryImpl()
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(JobDeviceManagementOperation)
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) 2019, 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.device.management.job.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.device.management.job.JobDeviceManagementOperation;
19: import org.eclipse.kapua.service.device.management.job.JobDeviceManagementOperationCreator;
20: import org.eclipse.kapua.service.device.management.job.JobDeviceManagementOperationFactory;
21: import org.eclipse.kapua.service.device.management.job.JobDeviceManagementOperationListResult;
22: import org.eclipse.kapua.service.device.management.job.JobDeviceManagementOperationQuery;
23:
24: /**
25: * {@link JobDeviceManagementOperationFactory} implementation.
26: *
27: * @since 1.1.0
28: */
29: @KapuaProvider
30: public class JobDeviceManagementOperationFactoryImpl implements JobDeviceManagementOperationFactory {
31:
32: @Override
33: public JobDeviceManagementOperation newEntity(KapuaId scopeId) {
34: return new JobDeviceManagementOperationImpl(scopeId);
35: }
36:
37: @Override
38: public JobDeviceManagementOperationCreator newCreator(KapuaId scopeId) {
39: return new JobDeviceManagementOperationCreatorImpl(scopeId);
40: }
41:
42: @Override
43: public JobDeviceManagementOperationQuery newQuery(KapuaId scopeId) {
44: return new JobDeviceManagementOperationQueryImpl(scopeId);
45: }
46:
47: @Override
48: public JobDeviceManagementOperationListResult newListResult() {
49: return new JobDeviceManagementOperationListResultImpl();
50: }
51:
52: @Override
53: public JobDeviceManagementOperation clone(JobDeviceManagementOperation jobDeviceManagementOperation) {
54: try {
55: return new JobDeviceManagementOperationImpl(jobDeviceManagementOperation);
56: } catch (Exception e) {
57: throw new KapuaEntityCloneException(e, JobDeviceManagementOperation.TYPE, jobDeviceManagementOperation);
58: }
59: }
60: }