1 package net.sf.mavenhist.persistency; 2 3 public interface IConfigurablePersistency { 4 5 /** 6 * @return the password 7 */ 8 String getPassword(); 9 10 /** 11 * @param password the password to set 12 */ 13 void setPassword(String password); 14 15 /** 16 * @return the url 17 */ 18 String getURL(); 19 20 /** 21 * @param url the URL to set 22 */ 23 void setURL(String url); 24 25 /** 26 * @return the user 27 */ 28 String getUser(); 29 30 /** 31 * @param dbUser the user to set 32 */ 33 void setUser(String user); 34 }