forked from kevin.shehu/GGD
ADD: NEW CHANGES
FIX : Reworked ApiCall FIX : Reworked Rule Engine FIX : Reworked drl files
This commit is contained in:
17
src/main/java/eu/hsrw/ias/ggd/SensorMap.java
Normal file
17
src/main/java/eu/hsrw/ias/ggd/SensorMap.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package eu.hsrw.ias.ggd;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
public class SensorMap {
|
||||
private HashMap<String, Double> sensors = new HashMap<String, Double>();
|
||||
|
||||
public HashMap<String, Double> getSensors() {
|
||||
return sensors;
|
||||
}
|
||||
|
||||
public void setSensors(HashMap<String, Double> sensors) {
|
||||
this.sensors = sensors;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user