Skip to content

Package: DeviceManagementOperationQuery

DeviceManagementOperationQuery

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.management.registry.operation;
13:
14: import org.eclipse.kapua.model.query.KapuaQuery;
15:
16: import javax.xml.bind.annotation.XmlAccessType;
17: import javax.xml.bind.annotation.XmlAccessorType;
18: import javax.xml.bind.annotation.XmlRootElement;
19: import javax.xml.bind.annotation.XmlType;
20:
21: /**
22: * {@link DeviceManagementOperationQuery} definition.
23: *
24: * @since 1.0
25: */
26: @XmlRootElement(name = "query")
27: @XmlAccessorType(XmlAccessType.PROPERTY)
28: @XmlType(factoryClass = DeviceManagementOperationXmlRegistry.class, factoryMethod = "newQuery")
29: public interface DeviceManagementOperationQuery extends KapuaQuery {
30:
31: }