コード例 #1
0
 public boolean isBeforeArrival() {
   LocalTime now = timestampService.getCurrentTime();
   return now.isBefore(sessionContext.getArrival());
 }
コード例 #2
0
 public ScoredRoute getChosenRoute() {
   User user = sessionContext.getAuthentication().getUser();
   return scoredRouteRepository.findRouteByUserAndDay(user, timestampService.getCurrentDate());
 }