/Prototipo/PrototipoCommons/src/memoria/commons/dataAccess/RepoConfig.java

http://prototipomemoria.googlecode.com/ · Java · 39 lines · 21 code · 10 blank · 8 comment · 0 complexity · 7eb99d35ea0d54105a15f9fe050286fe MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package memoria.commons.dataAccess;
  6. import java.util.HashMap;
  7. /**
  8. *
  9. * @author diego
  10. */
  11. public class RepoConfig{
  12. private HashMap<String, String> attributes = new HashMap<String, String>();
  13. private String repoDaoClass;
  14. public HashMap<String, String> getAttributes() {
  15. return attributes;
  16. }
  17. public void setAttributes(HashMap<String, String> attributes) {
  18. this.attributes = attributes;
  19. }
  20. public String getRepoDaoClass() {
  21. return repoDaoClass;
  22. }
  23. public void setRepoDaoClass(String repoDaoClass) {
  24. this.repoDaoClass = repoDaoClass;
  25. }
  26. public RepoConfig(String repoDaoClass) {
  27. this.repoDaoClass = repoDaoClass;
  28. }
  29. }