Skip to content

Package: KapuaDataChannel

KapuaDataChannel

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2016, 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.message.device.data;
13:
14: import org.eclipse.kapua.message.KapuaChannel;
15: import org.eclipse.kapua.message.device.data.xml.DataMessageXmlRegistry;
16:
17: import javax.xml.bind.annotation.XmlType;
18:
19: /**
20: * {@link KapuaDataChannel} definition
21: *
22: * @since 1.0.0
23: */
24: @XmlType(factoryClass = DataMessageXmlRegistry.class, factoryMethod = "newKapuaDataChannel")
25: public interface KapuaDataChannel extends KapuaChannel {
26:
27: }