01: package org.conform;
02:
03: public class Address {
04: @Property(mandatory="true")
05: String street;
06: String postcode;
07: String city;
08:
09: public String getStreet() {
10: return street;
11: }
12:
13: public void setStreet(String street) {
14: this .street = street;
15: }
16:
17: public String getPostcode() {
18: return postcode;
19: }
20:
21: public void setPostcode(String postcode) {
22: this .postcode = postcode;
23: }
24:
25: public String getCity() {
26: return city;
27: }
28:
29: public void setCity(String city) {
30: this.city = city;
31: }
32: }
|