Divide the MSB source codes into two repos
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / onap / msb / apiroute / wrapper / dao / service / IServiceDAO.java
1 package org.onap.msb.apiroute.wrapper.dao.service;
2
3 import java.util.List;
4
5 import org.onap.msb.apiroute.wrapper.dao.service.bean.ServiceInfo;
6
7 public interface IServiceDAO {
8     public void saveService(String key, ServiceInfo serviceInfo) throws Exception;
9
10     public ServiceInfo queryService(String key) throws Exception;
11
12     public List<ServiceInfo> queryMultiService(String keyPattern) throws Exception;
13
14     public long deleteService(String key) throws Exception;
15
16     public long deleteMultiService(String keyPattern) throws Exception;
17 }