Interface IBaseTraveler
-
- All Known Implementing Classes:
EscorteeState,FugitiveState,TravelerState
public interface IBaseTraveler- Author:
- Andi Hotz, (c) Sahits GmbH, 2015 Created on Dec 14, 2015
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICitygetDestination()intgetPremium()voidsetArrivalAtDestinationDate(java.time.LocalDateTime arriveAt)Date at which the traveler must arrive at the destination.voidsetDestination(ICity destination)voidsetPremium(int premium)
-
-
-
Method Detail
-
getDestination
ICity getDestination()
-
getPremium
int getPremium()
-
setDestination
void setDestination(ICity destination)
-
setPremium
void setPremium(int premium)
-
setArrivalAtDestinationDate
void setArrivalAtDestinationDate(java.time.LocalDateTime arriveAt)
Date at which the traveler must arrive at the destination.
-
-