mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 00:10:20 +00:00
64 lines
1.3 KiB
Java
64 lines
1.3 KiB
Java
package com.bwssystems.HABridge;
|
|
|
|
import com.google.gson.JsonObject;
|
|
|
|
public class NamedIP {
|
|
private String name;
|
|
private String ip;
|
|
private String webhook;
|
|
private String port;
|
|
private String username;
|
|
private String password;
|
|
private JsonObject extensions;
|
|
private Boolean secure;
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
public String getIp() {
|
|
return ip;
|
|
}
|
|
public void setIp(String ip) {
|
|
this.ip = ip;
|
|
}
|
|
public String getWebhook() {
|
|
return webhook;
|
|
}
|
|
public void setWebhook(final String webhook) {
|
|
this.webhook = webhook;
|
|
}
|
|
public String getPort() {
|
|
return port;
|
|
}
|
|
public void setPort(String port) {
|
|
this.port = port;
|
|
}
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
public String getPassword() {
|
|
return password;
|
|
}
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
public Boolean getSecure() {
|
|
return secure;
|
|
}
|
|
public void setSecure(Boolean secure) {
|
|
this.secure = secure;
|
|
}
|
|
public JsonObject getExtensions() {
|
|
return extensions;
|
|
}
|
|
public void setExtensions(JsonObject extensions) {
|
|
this.extensions = extensions;
|
|
}
|
|
}
|