From 99816aeaac57f7c2a57aa4076d191e8b6a6683d0 Mon Sep 17 00:00:00 2001 From: Nagy Attila Gabor Date: Fri, 25 Jan 2019 01:59:39 +0100 Subject: [PATCH] [sunspec] Updated version number and copyright notice Signed-off-by: Nagy Attila Gabor --- .../META-INF/MANIFEST.MF | 2 +- .../org.openhab.binding.modbus.sunspec/pom.xml | 2 +- .../sunspec/internal/SunSpecBindingConstants.java | 14 +++++++++----- .../sunspec/internal/SunSpecConfiguration.java | 14 +++++++++----- .../sunspec/internal/SunSpecHandlerFactory.java | 14 +++++++++----- .../block/AbstractSunSpecMessageBlock.java | 14 +++++++++----- .../sunspec/internal/block/CommonModelBlock.java | 14 +++++++++----- .../sunspec/internal/block/InverterModelBlock.java | 14 +++++++++----- .../sunspec/internal/block/MeterModelBlock.java | 14 +++++++++----- .../sunspec/internal/detector/ModelBlock.java | 14 +++++++++----- .../discovery/SunspecDiscoveryParticipant.java | 14 +++++++++----- .../discovery/SunspecDiscoveryProcess.java | 14 +++++++++----- .../internal/handler/AbstractSunSpecHandler.java | 14 +++++++++----- .../sunspec/internal/handler/InverterHandler.java | 14 +++++++++----- .../sunspec/internal/handler/MeterHandler.java | 14 +++++++++----- .../internal/parser/AbstractBaseParser.java | 14 +++++++++----- .../sunspec/internal/parser/CommonModelParser.java | 14 +++++++++----- .../internal/parser/InverterModelParser.java | 14 +++++++++----- .../sunspec/internal/parser/MeterModelParser.java | 14 +++++++++----- .../sunspec/internal/parser/SunspecParser.java | 14 +++++++++----- 20 files changed, 164 insertions(+), 92 deletions(-) diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/META-INF/MANIFEST.MF b/addons/binding/org.openhab.binding.modbus.sunspec/META-INF/MANIFEST.MF index d8f60fd9c2748..dcabf0bd06c32 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/META-INF/MANIFEST.MF +++ b/addons/binding/org.openhab.binding.modbus.sunspec/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Name: SunSpec Binding Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-SymbolicName: org.openhab.binding.modbus.sunspec;singleton:=true Bundle-Vendor: openHAB -Bundle-Version: 2.4.0.qualifier +Bundle-Version: 2.5.0.qualifier Import-Package: org.eclipse.jdt.annotation;resolution:=optional, org.eclipse.smarthome.config.core, diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/pom.xml b/addons/binding/org.openhab.binding.modbus.sunspec/pom.xml index 309d70823b1df..99d4c877822e9 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/pom.xml +++ b/addons/binding/org.openhab.binding.modbus.sunspec/pom.xml @@ -7,7 +7,7 @@ org.openhab.binding pom - 2.4.0-SNAPSHOT + 2.5.0-SNAPSHOT org.openhab.binding.modbus.sunspec diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecBindingConstants.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecBindingConstants.java index 96f9c3ace6743..fbe07297ce526 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecBindingConstants.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecBindingConstants.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecConfiguration.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecConfiguration.java index 516a86fb3afef..a05f6dcde4482 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecConfiguration.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecConfiguration.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecHandlerFactory.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecHandlerFactory.java index 7897892bb097b..e18bbaa38534d 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecHandlerFactory.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/SunSpecHandlerFactory.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/AbstractSunSpecMessageBlock.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/AbstractSunSpecMessageBlock.java index 9ee3ba160928a..9f08bf6339f8f 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/AbstractSunSpecMessageBlock.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/AbstractSunSpecMessageBlock.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.block; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/CommonModelBlock.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/CommonModelBlock.java index 9b5d48d4eb335..c951f1b59e879 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/CommonModelBlock.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/CommonModelBlock.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.block; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/InverterModelBlock.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/InverterModelBlock.java index b44b4513a56c7..d17e11177cf4a 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/InverterModelBlock.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/InverterModelBlock.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.block; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/MeterModelBlock.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/MeterModelBlock.java index ff8c45b646629..c87392dab4ae7 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/MeterModelBlock.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/block/MeterModelBlock.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.block; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/detector/ModelBlock.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/detector/ModelBlock.java index d84d02f3d4403..08f7ab8fde8f5 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/detector/ModelBlock.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/detector/ModelBlock.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.detector; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryParticipant.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryParticipant.java index 6b2b603ebabcb..129bf1a953cdc 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryParticipant.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryParticipant.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.discovery; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryProcess.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryProcess.java index 5f9120e77d6d4..6180c44f83259 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryProcess.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/discovery/SunspecDiscoveryProcess.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.discovery; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/AbstractSunSpecHandler.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/AbstractSunSpecHandler.java index 5df38a072b10b..e10954f7e8fce 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/AbstractSunSpecHandler.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/AbstractSunSpecHandler.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.handler; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/InverterHandler.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/InverterHandler.java index 47ef3dd774159..797e420a9dc3d 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/InverterHandler.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/InverterHandler.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.handler; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/MeterHandler.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/MeterHandler.java index 3c74bed792113..ea088007cc332 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/MeterHandler.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/handler/MeterHandler.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.handler; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/AbstractBaseParser.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/AbstractBaseParser.java index 0f2f5fd628166..141fe097b8292 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/AbstractBaseParser.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/AbstractBaseParser.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.parser; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/CommonModelParser.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/CommonModelParser.java index 8e50c7f44fa49..a94ba0e771e21 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/CommonModelParser.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/CommonModelParser.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.parser; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/InverterModelParser.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/InverterModelParser.java index 4b0532e81cdb5..f9f779eac243d 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/InverterModelParser.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/InverterModelParser.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.parser; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/MeterModelParser.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/MeterModelParser.java index 67a1d7a6eab71..76e89e435dc19 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/MeterModelParser.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/MeterModelParser.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.parser; diff --git a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/SunspecParser.java b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/SunspecParser.java index 4733aef27d878..bf3e7f022c289 100644 --- a/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/SunspecParser.java +++ b/addons/binding/org.openhab.binding.modbus.sunspec/src/main/java/org/openhab/binding/modbus/sunspec/internal/parser/SunspecParser.java @@ -1,10 +1,14 @@ /** - * Copyright (c) 2010-2018 by the respective copyright holders. + * Copyright (c) 2010-2019 Contributors to the openHAB project * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * See the NOTICE file(s) distributed with this work for additional + * information. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 */ package org.openhab.binding.modbus.sunspec.internal.parser;