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