Skip to content

Package: DeviceDomains

DeviceDomains

nameinstructionbranchcomplexitylinemethod
static {...}
M: 17 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 4 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2018, 2020 Eurotech and/or its affiliates and others
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License v1.0
6: * which accompanies this distribution, and is available at
7: * http://www.eclipse.org/legal/epl-v10.html
8: *
9: * Contributors:
10: * Eurotech - initial API and implementation
11: *******************************************************************************/
12: package org.eclipse.kapua.service.device.registry;
13:
14: import org.eclipse.kapua.service.device.registry.connection.DeviceConnectionDomain;
15: import org.eclipse.kapua.service.device.registry.event.DeviceEventDomain;
16: import org.eclipse.kapua.service.device.registry.lifecycle.DeviceLifecycleDomain;
17:
18: public class DeviceDomains {
19:
20: private DeviceDomains() { }
21:
22: public static final DeviceDomain DEVICE_DOMAIN = new DeviceDomain();
23:
24: public static final DeviceConnectionDomain DEVICE_CONNECTION_DOMAIN = new DeviceConnectionDomain();
25:
26: public static final DeviceEventDomain DEVICE_EVENT_DOMAIN = new DeviceEventDomain();
27:
28: public static final DeviceLifecycleDomain DEVICE_LIFECYCLE_DOMAIN = new DeviceLifecycleDomain();
29: }