Added a optional webhook for harmony-activity changes

This commit is contained in:
Niklas
2016-12-23 19:57:34 +01:00
parent 3a3e5180b1
commit 8cd571c183
8 changed files with 265 additions and 196 deletions

View File

@@ -2,7 +2,8 @@ package com.bwssystems.HABridge;
public class NamedIP {
private String name;
private String ip;
private String ip;
private String webhook;
private String port;
private String username;
private String password;
@@ -19,7 +20,13 @@ public class NamedIP {
public void setIp(String ip) {
this.ip = ip;
}
public String getPort() {
public String getWebhook() {
return webhook;
}
public void setWebhook(final String webhook) {
this.webhook = webhook;
}
public String getPort() {
return port;
}
public void setPort(String port) {