[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:
Hilbrand Bouwkamp 2021-01-12 22:15:21 +01:00 committed by GitHub
parent c4887f30f2
commit e3ae01df91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 20 additions and 20 deletions

View File

@ -10,9 +10,9 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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.HashMap;
import java.util.Map; import java.util.Map;
@ -20,9 +20,9 @@ import java.util.Map;
import org.eclipse.jdt.annotation.NonNullByDefault; import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable; import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.jetty.client.HttpClient; import org.eclipse.jetty.client.HttpClient;
import org.openhab.binding.internal.kostal.inverter.firstgeneration.WebscrapeHandler; import org.openhab.binding.kostalinverter.internal.firstgeneration.WebscrapeHandler;
import org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationHandler; import org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationHandler;
import org.openhab.binding.internal.kostal.inverter.thirdgeneration.ThirdGenerationInverterTypes; import org.openhab.binding.kostalinverter.internal.thirdgeneration.ThirdGenerationInverterTypes;
import org.openhab.core.io.net.http.HttpClientFactory; import org.openhab.core.io.net.http.HttpClientFactory;
import org.openhab.core.thing.Thing; import org.openhab.core.thing.Thing;
import org.openhab.core.thing.ThingTypeUID; import org.openhab.core.thing.ThingTypeUID;

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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; import javax.measure.Unit;

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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 * @author Christian Schneider - Initial contribution

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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.io.IOException;
import java.math.BigDecimal; import java.math.BigDecimal;

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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.eclipse.jdt.annotation.NonNullByDefault;
import org.openhab.core.thing.ThingTypeUID; import org.openhab.core.thing.ThingTypeUID;

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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 * The {@link ThirdGenerationChannelDatatypes} enumeration contains the data types provided by the device

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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 * The {@link ThirdGenerationChannelMappingToWebApi}} is used to map the channel name to the web API commands

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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. * The {@link ThirdGenerationConfiguration} class contains fields mapping thing configuration parameters.

View File

@ -10,9 +10,9 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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.InvalidKeyException;
import java.security.MessageDigest; import java.security.MessageDigest;

View File

@ -10,9 +10,9 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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.io.UnsupportedEncodingException;
import java.security.InvalidAlgorithmParameterException; import java.security.InvalidAlgorithmParameterException;

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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.ExecutionException;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;

View File

@ -10,7 +10,7 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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 * The {@link ThirdGenerationInverterTypes} contains the list of supported devices

View File

@ -10,9 +10,9 @@
* *
* SPDX-License-Identifier: EPL-2.0 * 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.ArrayList;
import java.util.Arrays; import java.util.Arrays;