mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-19 08:28:46 +00:00
Adding new classes to handle vera and updated distribution to include js
and css files in the jar.
This commit is contained in:
33
src/main/java/com/bwssystems/luupRequests/Scene.java
Normal file
33
src/main/java/com/bwssystems/luupRequests/Scene.java
Normal file
@@ -0,0 +1,33 @@
|
||||
package com.bwssystems.luupRequests;
|
||||
|
||||
public class Scene {
|
||||
private String active;
|
||||
private String name;
|
||||
private String id;
|
||||
private String room;
|
||||
public String getActive() {
|
||||
return active;
|
||||
}
|
||||
public void setActive(String active) {
|
||||
this.active = active;
|
||||
}
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getRoom() {
|
||||
return room;
|
||||
}
|
||||
public void setRoom(String room) {
|
||||
this.room = room;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user