All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evasion.plugin.travel.TravelSetBean Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
/*
 * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy