com.evasion.plugin.travel.TravelSetBean Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.plugin.travel;
import com.evasion.entity.geolocation.Location;
import com.evasion.module.travel.ITravelStep;
/**
*
* @author sglon
*/
public class TravelSetBean implements ITravelStep {
/**
* *
* serialVersionUID.
*/
private static final long serialVersionUID = 1L;
private Location start;
private Location end;
private String title;
private Long roadmapId;
public TravelSetBean(Long roadmapId, String title, Location start, Location end) {
this.start = start;
this.end = end;
this.title = title;
this.roadmapId = roadmapId;
}
public Location getEnd() {
return end;
}
public void setEnd(Location end) {
this.end = end;
}
public Long getRoadmapId() {
return roadmapId;
}
public void setRoadMapId(Long roadMapId) {
this.roadmapId = roadMapId;
}
public Location getStart() {
return start;
}
public void setStart(Location start) {
this.start = start;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}