mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 00:10:20 +00:00
26 lines
466 B
Java
26 lines
466 B
Java
package com.bwssystems.HABridge;
|
|
|
|
public class BridgeControlDescriptor {
|
|
private boolean reinit;
|
|
private boolean stop;
|
|
|
|
public BridgeControlDescriptor() {
|
|
super();
|
|
this.reinit = false;
|
|
this.stop = false;
|
|
}
|
|
|
|
public boolean isReinit() {
|
|
return reinit;
|
|
}
|
|
public void setReinit(boolean reinit) {
|
|
this.reinit = reinit;
|
|
}
|
|
public boolean isStop() {
|
|
return stop;
|
|
}
|
|
public void setStop(boolean stop) {
|
|
this.stop = stop;
|
|
}
|
|
}
|