01: package org.vraptor.config;
02:
03: /**
04: * A configuration property.
05: *
06: * @author Rafael Steil
07: */
08: public class Property {
09:
10: private final String name;
11:
12: private final String value;
13:
14: public Property(String name, String value) {
15: this .name = name;
16: this .value = value;
17: }
18:
19: /**
20: * @return the name
21: */
22: public String getName() {
23: return this .name;
24: }
25:
26: /**
27: * @return the value
28: */
29: public String getValue() {
30: return this.value;
31: }
32: }
|