Advertisement
Guest User

GarciaPL

a guest
Oct 26th, 2013
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. package pl.eventoo.mongodb.dao;
  2.  
  3. import pl.eventoo.domain.Settings;
  4.  
  5. /**
  6.  * Interface of credentials settings
  7.  *
  8.  * @author lukasz
  9.  */
  10. public interface SettingsDao {
  11.  
  12.     /**
  13.      * Interface for save credentials
  14.      *
  15.      * @param settings
  16.      */
  17.     public void saveSettings(Settings settings);
  18.    
  19.     /**
  20.      * Interface for update credentials
  21.      *
  22.      * @param settings
  23.      * @return
  24.      */
  25.     public boolean updateSettings(Settings settings);
  26.  
  27.     /**
  28.      * Interface for read credentials
  29.      *
  30.      * @return
  31.      */
  32.     public Settings readSettings();
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement