org.springframework.osgi.samples.weather.dao
Interface WeatherDao

All Known Implementing Classes:
StaticDataWeatherDaoImpl

public interface WeatherDao

Data Access Object Interface for getting and storing weather records


Method Summary
 WeatherData find(Date date)
          Returns the WeatherData for a date, or null if there is none
 WeatherData save(Date date)
          Saves the WeatherData for a date
 WeatherData update(Date date)
           
 

Method Detail

find

WeatherData find(Date date)
Returns the WeatherData for a date, or null if there is none

Parameters:
date - the date to search on

save

WeatherData save(Date date)
Saves the WeatherData for a date


update

WeatherData update(Date date)


Copyright © 2006-2007 Spring Framework. All Rights Reserved.