dnet-hadoop/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/oaf/GeoLocation.java

40 lines
678 B
Java
Raw Normal View History

package eu.dnetlib.dhp.schema.oaf;
import java.io.Serializable;
public class GeoLocation implements Serializable {
private String point;
private String box;
private String place;
public String getPoint() {
return point;
}
2019-10-25 09:53:08 +02:00
public GeoLocation setPoint(String point) {
this.point = point;
2019-10-25 09:53:08 +02:00
return this;
}
public String getBox() {
return box;
}
2019-10-25 09:53:08 +02:00
public GeoLocation setBox(String box) {
this.box = box;
2019-10-25 09:53:08 +02:00
return this;
}
public String getPlace() {
return place;
}
2019-10-25 09:53:08 +02:00
public GeoLocation setPlace(String place) {
this.place = place;
2019-10-25 09:53:08 +02:00
return this;
}
}