mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-02-05 11:54:05 +01:00
refactor binding (WIP)
Signed-off-by: Laurent ARNAL <laurent@clae.net>
This commit is contained in:
parent
e45f6a0615
commit
e04cfea00a
@ -100,13 +100,11 @@ public class LinkyHandlerFactory extends BaseThingHandlerFactory {
|
||||
this.httpService = httpService;
|
||||
this.thingRegistry = thingRegistry;
|
||||
this.componentContext = componentContext;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsThingType(ThingTypeUID thingTypeUID) {
|
||||
return LinkyBindingConstants.SUPPORTED_DEVICE_THING_TYPES_UIDS.contains(thingTypeUID);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -125,7 +123,5 @@ public class LinkyHandlerFactory extends BaseThingHandlerFactory {
|
||||
}
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -155,7 +155,6 @@ public class ApiBridgeHandler extends BaseBridgeHandler {
|
||||
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, e.getMessage());
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
@ -173,7 +172,6 @@ public class ApiBridgeHandler extends BaseBridgeHandler {
|
||||
@Override
|
||||
public void handleCommand(ChannelUID channelUID, Command command) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -200,7 +198,6 @@ public class ApiBridgeHandler extends BaseBridgeHandler {
|
||||
} catch (NamespaceException | ServletException | IOException e) {
|
||||
logger.warn("Error during linky servlet startup", e);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@ -331,5 +328,4 @@ public class ApiBridgeHandler extends BaseBridgeHandler {
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -51,5 +51,4 @@ public class EnedisBridgeHandler extends ApiBridgeHandler {
|
||||
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -51,5 +51,4 @@ public class MyElectricalDataBridgeHandler extends ApiBridgeHandler {
|
||||
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user