]> git.basschouten.com Git - openhab-addons.git/commit
[http] Initial contribution (#8521)
authorJ-N-K <J-N-K@users.noreply.github.com>
Mon, 9 Nov 2020 16:53:44 +0000 (17:53 +0100)
committerGitHub <noreply@github.com>
Mon, 9 Nov 2020 16:53:44 +0000 (17:53 +0100)
commit8de5652ed19775900ae1ee4c9e59686590112db9
tree2126a144deb9394637da24427725a75c4dd270f2
parent3a4eaae1e95a02a4b0d19824bcbe7e32c9909521
[http] Initial contribution (#8521)

Signed-off-by: Jan N. Klug <jan.n.klug@rub.de>
39 files changed:
CODEOWNERS
bom/openhab-addons/pom.xml
bundles/org.openhab.binding.http/NOTICE [new file with mode: 0644]
bundles/org.openhab.binding.http/README.md [new file with mode: 0644]
bundles/org.openhab.binding.http/pom.xml [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/feature/feature.xml [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/HttpBindingConstants.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/HttpClientProvider.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/HttpDynamicStateDescriptionProvider.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/HttpHandlerFactory.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/HttpThingHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/Util.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/config/HttpAuthMode.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/config/HttpChannelConfig.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/config/HttpChannelMode.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/config/HttpThingConfig.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/AbstractTransformingItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/ColorItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/DimmerItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/FixedValueMappingItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/GenericItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/ImageItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/ItemValueConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/PlayerItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/converter/RollershutterItemConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/http/Content.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/http/HttpAuthException.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/http/HttpResponseListener.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/http/RefreshingUrlCache.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/transform/CascadedValueTransformationImpl.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/transform/NoOpValueTransformation.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/transform/SingleValueTransformation.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/transform/ValueTransformation.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/java/org/openhab/binding/http/internal/transform/ValueTransformationProvider.java [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/resources/OH-INF/binding/binding.xml [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/resources/OH-INF/config/config.xml [new file with mode: 0644]
bundles/org.openhab.binding.http/src/main/resources/OH-INF/thing/thing-types.xml [new file with mode: 0644]
bundles/org.openhab.binding.http/src/test/java/org/openhab/binding/http/internal/converter/ConverterTest.java [new file with mode: 0644]
bundles/pom.xml