package edu.fsu.cs.contextprovider.weather;
/**
* Holds the information between the <current_conditions>-tag of what the Google
* Weather API returned.
*/
public class WeatherCurrentCondition {
private String dayofWeek = null;
private Integer tempCelcius = null;
private Integer tempFahrenheit = null;
private String iconURL = null;
private String condition = null;
private String windCondition = null;
private String humidity = null;
public WeatherCurrentCondition() {
}
public String getDayofWeek() {
return this.dayofWeek;
}
public void setDayofWeek(String dayofWeek) {
this.dayofWeek = dayofWeek;
}
public Integer getTempCelcius() {
return this.tempCelcius;
}
public void setTempCelcius(Integer temp) {
this.tempCelcius = temp;
}
public Integer getTempFahrenheit() {
return this.tempFahrenheit;
}
public void setTempFahrenheit(Integer temp) {
this.tempFahrenheit = temp;
}
public String getIconURL() {
return this.iconURL;
}
public void setIconURL(String iconURL) {
this.iconURL = iconURL;
}
public String getCondition() {
return this.condition;
}
public void setCondition(String condition) {
this.condition = condition;
}
public String getWindCondition() {
return this.windCondition;
}
public void setWindCondition(String windCondition) {
this.windCondition = windCondition;
}
public String getHumidity() {
return this.humidity;
}
public void setHumidity(String humidity) {
this.humidity = humidity;
}
}