mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-25 14:55:55 +01:00
[kostalinverter] Fixed package structure (#9559)
The internal package was placed before the binding specific package, and it should be the other way around. Signed-off-by: Hilbrand Bouwkamp <hilbrand@h72.nl>
This commit is contained in:
parent
c4887f30f2
commit
e3ae01df91
@ -10,9 +10,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter;
|
||||
package org.openhab.binding.kostalinverter.internal;
|
||||
|
||||
import static org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
import static org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
@ -20,9 +20,9 @@ import java.util.Map;
|
||||
import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
import org.eclipse.jdt.annotation.Nullable;
|
||||
import org.eclipse.jetty.client.HttpClient;
|
||||
import org.openhab.binding.internal.kostal.inverter.firstgeneration.WebscrapeHandler;
|
||||
import org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationHandler;
|
||||
import org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationInverterTypes;
|
||||
import org.openhab.binding.kostalinverter.internal.firstgeneration.WebscrapeHandler;
|
||||
import org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationHandler;
|
||||
import org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationInverterTypes;
|
||||
import org.openhab.core.io.net.http.HttpClientFactory;
|
||||
import org.openhab.core.thing.Thing;
|
||||
import org.openhab.core.thing.ThingTypeUID;
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.firstgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.firstgeneration;
|
||||
|
||||
import javax.measure.Unit;
|
||||
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.firstgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.firstgeneration;
|
||||
|
||||
/**
|
||||
* @author Christian Schneider - Initial contribution
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.firstgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.firstgeneration;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.math.BigDecimal;
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
import org.openhab.core.thing.ThingTypeUID;
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
/**
|
||||
* The {@link ThirdGenerationChannelDatatypes} enumeration contains the data types provided by the device
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
/***
|
||||
* The {@link ThirdGenerationChannelMappingToWebApi}} is used to map the channel name to the web API commands
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
/**
|
||||
* The {@link ThirdGenerationConfiguration} class contains fields mapping thing configuration parameters.
|
@ -10,9 +10,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
import static org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
import static org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
|
||||
import java.security.InvalidKeyException;
|
||||
import java.security.MessageDigest;
|
@ -10,9 +10,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
import static org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
import static org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.security.InvalidAlgorithmParameterException;
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
import java.util.concurrent.ExecutionException;
|
||||
import java.util.concurrent.TimeUnit;
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
/**
|
||||
* The {@link ThirdGenerationInverterTypes} contains the list of supported devices
|
@ -10,9 +10,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: EPL-2.0
|
||||
*/
|
||||
package org.openhab.binding.internal.kostal.inverter.thirdgeneration;
|
||||
package org.openhab.binding.kostalinverter.internal.thirdgeneration;
|
||||
|
||||
import static org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
import static org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationBindingConstants.*;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
Loading…
Reference in New Issue
Block a user