Adding changes and files for doorlock driver
[iot2.git] / benchmarks / interfaces / WeatherGateway.java
1 package iotcode.interfaces;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 public interface WeatherGateway {
7         public void init();
8         public void start();
9         public void stop();
10         public double getInchesPerWeek();
11         public int getWeatherZipCode();
12         public int getDaysToWaterOn();
13         public double getInchesPerMinute();
14         public void registerCallback(WeatherGatewaySmartCallback _callbackTo);
15 }