Package com.lbslocal.cc.objects.v4.addressFinder

Source Code of com.lbslocal.cc.objects.v4.addressFinder.Address

package com.lbslocal.cc.objects.v4.addressFinder;

import com.lbslocal.cc.objects.v0.common.City;

public class Address {
  private  String street;
  private  String houseNumber;
  private  String zip;
  private  String district;
  private  City city;
 
  public Address() {
    this.street = "";
    this.houseNumber = "";
    this.zip = "";
    this.district = "";
    this.city = new City();
  }
  public String getStreet() {
    return street;
  }
  public void setStreet(String street) {
    this.street = street;
  }
  public String getHouseNumber() {
    return houseNumber;
  }
  public void setHouseNumber(String houseNumber) {
    this.houseNumber = houseNumber;
  }
  public String getZip() {
    return zip;
  }
  public void setZip(String zip) {
    this.zip = zip;
  }
  public String getDistrict() {
    return district;
  }
  public void setDistrict(String district) {
    this.district = district;
  }
  public City getCity() {
    return city;
  }
  public void setCity(City city) {
    this.city = city;
  }
 
}
TOP

Related Classes of com.lbslocal.cc.objects.v4.addressFinder.Address

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.