1 15 package hivemind.test.config.impl; 16 17 import org.apache.hivemind.impl.BaseLocatable; 18 import org.apache.hivemind.internal.Module; 19 20 25 public class Datum extends BaseLocatable 26 { 27 private String _key = "DEFAULT_KEY"; 28 private String _value = "DEFAULT_VALUE"; 29 private Module _contributingModule; 30 31 public String getKey() 32 { 33 return _key; 34 } 35 36 public String getValue() 37 { 38 return _value; 39 } 40 41 public void setKey(String string) 42 { 43 _key = string; 44 } 45 46 public void setValue(String string) 47 { 48 _value = string; 49 } 50 51 public Module getContributingModule() 52 { 53 return _contributingModule; 54 } 55 56 public void setContributingModule(Module module) 57 { 58 _contributingModule = module; 59 } 60 61 } 62 | Popular Tags |