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

com.evasion.module.travel.ITravelStep Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.evasion.module.travel;

import com.evasion.entity.geolocation.Location;
import java.io.Serializable;

/**
 *
 * @author sglon
 */
public interface ITravelStep extends Serializable {

    Location getStart();

    Location getEnd();

    String getTitle();

    Long getRoadmapId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy