1 package org.springframework.samples.jpetstore.dao;2 3 import java.util.List ;4 5 import org.springframework.dao.DataAccessException;6 import org.springframework.samples.jpetstore.domain.Order;7 8 public interface OrderDao {9 10 List getOrdersByUsername(String username) throws DataAccessException;11 12 Order getOrder(int orderId) throws DataAccessException;13 14 void insertOrder(Order order) throws DataAccessException;15 16 }17