Skip to content

Commit

Permalink
[mcp23017] made constants and handler packages internal (openhab#3977)
Browse files Browse the repository at this point in the history
Signed-off-by: VelinYordanov <[email protected]>
Signed-off-by: Maximilian Hess <[email protected]>
  • Loading branch information
VelinYordanov authored and ne0h committed Sep 15, 2019
1 parent 95b036a commit 8efaa1a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ClassPath: .,
lib/pi4j-core.jar,
lib/pi4j-gpio-extension.jar
Export-Package:
org.openhab.binding.mcp23017,
org.openhab.binding.mcp23017.handler
Import-Package:
com.google.common.collect,
org.apache.commons.lang,
Expand All @@ -24,8 +21,6 @@ Import-Package:
org.eclipse.smarthome.core.thing.binding.builder,
org.eclipse.smarthome.core.thing.type,
org.eclipse.smarthome.core.types,
org.openhab.binding.mcp23017,
org.openhab.binding.mcp23017.handler,
org.osgi.framework,
org.slf4j
Service-Component: OSGI-INF/*.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.openhab.binding.mcp23017;
package org.openhab.binding.mcp23017.internal;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
package org.openhab.binding.mcp23017.internal;

import static org.openhab.binding.mcp23017.Mcp23017BindingConstants.THING_TYPE_MCP23017;
import static org.openhab.binding.mcp23017.internal.Mcp23017BindingConstants.THING_TYPE_MCP23017;

import java.util.List;

Expand All @@ -21,7 +21,7 @@
import org.eclipse.smarthome.core.thing.binding.BaseThingHandlerFactory;
import org.eclipse.smarthome.core.thing.binding.ThingHandler;
import org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory;
import org.openhab.binding.mcp23017.handler.Mcp23017Handler;
import org.openhab.binding.mcp23017.internal.handler.Mcp23017Handler;
import org.osgi.service.component.annotations.Component;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
package org.openhab.binding.mcp23017.internal;

import static com.pi4j.gpio.extension.mcp.MCP23017Pin.*;
import static org.openhab.binding.mcp23017.Mcp23017BindingConstants.*;
import static org.openhab.binding.mcp23017.internal.Mcp23017BindingConstants.*;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.openhab.binding.mcp23017.handler;
package org.openhab.binding.mcp23017.internal.handler;

import static org.openhab.binding.mcp23017.Mcp23017BindingConstants.*;
import static org.openhab.binding.mcp23017.internal.Mcp23017BindingConstants.*;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.openhab.binding.mcp23017.handler;
package org.openhab.binding.mcp23017.internal.handler;

import static org.openhab.binding.mcp23017.Mcp23017BindingConstants.DEFAULT_STATE;
import static org.openhab.binding.mcp23017.internal.Mcp23017BindingConstants.DEFAULT_STATE;

import java.util.HashMap;
import java.util.Map;
Expand Down

0 comments on commit 8efaa1a

Please sign in to comment.