You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[freeboxos] Remove macAddress as thing configuration parameter (openhab#17088)
For server, revolution, player, active-player, repeater and vm thing types
Replace it by a thing property.
Fixopenhab#17076
Signed-off-by: Laurent Garnier <[email protected]>
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/ApiConsumerHandler.java
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/ApiConsumerIntf.java
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/FreeplugHandler.java
+28-6
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@
33
33
importorg.slf4j.Logger;
34
34
importorg.slf4j.LoggerFactory;
35
35
36
+
importinet.ipaddr.mac.MACAddress;
37
+
36
38
/**
37
39
* The {@link FreeplugHandler} is responsible for handling everything associated to a
38
40
* powerline gateway managed by the freebox server
@@ -49,7 +51,13 @@ public FreeplugHandler(Thing thing) {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/HostHandler.java
+18-5
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,8 @@
32
32
importorg.slf4j.Logger;
33
33
importorg.slf4j.LoggerFactory;
34
34
35
+
importinet.ipaddr.mac.MACAddress;
36
+
35
37
/**
36
38
* The {@link HostHandler} is responsible for all network equipments hosted on the network
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/PlayerHandler.java
+4-1
Original file line number
Diff line number
Diff line change
@@ -57,9 +57,12 @@ public PlayerHandler(Thing thing) {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/RepeaterHandler.java
+4-2
Original file line number
Diff line number
Diff line change
@@ -53,12 +53,14 @@ public RepeaterHandler(Thing thing) {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/ServerHandler.java
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/VmHandler.java
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.freeboxos/src/main/java/org/openhab/binding/freeboxos/internal/handler/WifiStationHandler.java
+10-2
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,8 @@
36
36
importorg.slf4j.Logger;
37
37
importorg.slf4j.LoggerFactory;
38
38
39
+
importinet.ipaddr.mac.MACAddress;
40
+
39
41
/**
40
42
* The {@link WifiStationHandler} is responsible for handling everything associated to
41
43
* any Freebox thing types except the bridge thing type.
@@ -56,8 +58,14 @@ public WifiStationHandler(Thing thing) {
0 commit comments