Replacing default BUFFSIZE value with new buffer size value when a resize needs to...
[iot2.git] / benchmarks / drivers / WeatherPhoneGateway / WeatherInfoInterface.java
1 package iotcode.WeatherPhoneGateway;
2
3 /** WeatherInfoInterface interface to be implemented by a real class
4  *
5  * @author      Rahmadi Trimananda <rahmadi.trimananda @ uci.edu>
6  * @version     1.0                
7  * @since       2016-04-26
8  */
9 public interface WeatherInfoInterface {
10
11         /** 
12          * WeatherPhoneGateway takes 4 inputs
13          * - inchesPerWeek (double)
14          * - weatherZipCode (int)
15          * - daysToWaterOn (int)
16          * - inchesPerMinute (double)
17          */
18         String getIrrigationInfo(Double dInchesPerWeek, Integer iWeatherZipCode, 
19                 Integer iDaysToWaterOn, Double dInchesPerMinute);
20 }