package com.springbook; import java.util.List; public interface RentABike { List getBikes(); Bike getBike(String serialNo); void setStoreName(String name); String getStoreName(); }