Divide the MSB source codes into two repos
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / onap / msb / apiroute / wrapper / dao / route / IRouteDAO.java
1 package org.onap.msb.apiroute.wrapper.dao.route;
2
3 import java.util.List;
4
5 import org.onap.msb.apiroute.wrapper.dao.route.bean.RouteInfo;
6
7 public interface IRouteDAO {
8     public void saveRoute(String key, RouteInfo routeInfo) throws Exception;
9
10     public RouteInfo queryRoute(String key) throws Exception;
11
12     public List<RouteInfo> queryMultiRoute(String keyPattern) throws Exception;
13
14     public long deleteRoute(String key) throws Exception;
15
16     public long deleteMultiRoute(String keyPattern) throws Exception;
17
18 }