Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Address |
|
| 1.0;1 |
1 | /* | |
2 | * $Id: Address.java 19191 2010-08-25 21:05:23Z tcarlson $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com | |
5 | * | |
6 | * The software in this package is published under the terms of the CPAL v1.0 | |
7 | * license, a copy of which has been included with this distribution in the | |
8 | * LICENSE.txt file. | |
9 | */ | |
10 | ||
11 | package org.mule.tck.testmodels.services; | |
12 | ||
13 | /** | |
14 | * <code>Address</code> is a Persons address | |
15 | */ | |
16 | ||
17 | public class Address | |
18 | { | |
19 | private String address; | |
20 | private String postcode; | |
21 | ||
22 | public Address() | |
23 | { | |
24 | 0 | super(); |
25 | 0 | } |
26 | ||
27 | public Address(String address, String postcode) | |
28 | 0 | { |
29 | 0 | this.address = address; |
30 | 0 | this.postcode = postcode; |
31 | 0 | } |
32 | ||
33 | public String getAddress() | |
34 | { | |
35 | 0 | return address; |
36 | } | |
37 | ||
38 | public void setAddress(String address) | |
39 | { | |
40 | 0 | this.address = address; |
41 | 0 | } |
42 | ||
43 | public String getPostcode() | |
44 | { | |
45 | 0 | return postcode; |
46 | } | |
47 | ||
48 | public void setPostcode(String postcode) | |
49 | { | |
50 | 0 | this.postcode = postcode; |
51 | 0 | } |
52 | ||
53 | } |