Switch to unified view

a b/recommendation-engine/src/main/java/eu/alfred/event_manager/model/Venue.java
1
package eu.alfred.event_manager.model;
2
3
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
4
5
@JsonIgnoreProperties(ignoreUnknown=true) 
6
public class Venue {
7
8
  private String name;
9
  private String postal_code;
10
  private String address;
11
  private String address_2;
12
  private String city;
13
  private String country;
14
  private String country_code;
15
  private double latitude;
16
  private double longtitude;
17
  
18
  public String getName() {
19
      return name;
20
  }
21
  public void setName(String name) {
22
      this.name = name;
23
  }
24
  public String getPostal_code() {
25
      return postal_code;
26
  }
27
  public void setPostal_code(String postal_code) {
28
      this.postal_code = postal_code;
29
  }
30
  public String getAddress() {
31
      return address;
32
  }
33
  public void setAddress(String address) {
34
      this.address = address;
35
  }
36
  public String getAddress_2() {
37
      return address_2;
38
  }
39
  public void setAddress_2(String address_2) {
40
      this.address_2 = address_2;
41
  }
42
  public String getCity() {
43
      return city;
44
  }
45
  public void setCity(String city) {
46
      this.city = city;
47
  }
48
  public String getCountry() {
49
      return country;
50
  }
51
  public void setCountry(String country) {
52
      this.country = country;
53
  }
54
  public String getCountry_code() {
55
      return country_code;
56
  }
57
  public void setCountry_code(String country_code) {
58
      this.country_code = country_code;
59
  }
60
  public double getLatitude() {
61
      return latitude;
62
  }
63
  public void setLatitude(double latitude) {
64
      this.latitude = latitude;
65
  }
66
  public double getLongtitude() {
67
      return longtitude;
68
  }
69
  public void setLongtitude(double longtitude) {
70
      this.longtitude = longtitude;
71
  }
72
}