/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
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package memoria.commons.dataAccess;
- import java.util.HashMap;
- /**
- *
- * @author diego
- */
- public class RepoConfig{
- private HashMap<String, String> attributes = new HashMap<String, String>();
- private String repoDaoClass;
- public HashMap<String, String> getAttributes() {
- return attributes;
- }
- public void setAttributes(HashMap<String, String> attributes) {
- this.attributes = attributes;
- }
- public String getRepoDaoClass() {
- return repoDaoClass;
- }
- public void setRepoDaoClass(String repoDaoClass) {
- this.repoDaoClass = repoDaoClass;
- }
- public RepoConfig(String repoDaoClass) {
- this.repoDaoClass = repoDaoClass;
- }
- }