aboutsummaryrefslogtreecommitdiffstats
path: root/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/dao/service/IServiceDAO.java
blob: d63f6568fc5f5b6ae2c61ad173a51c39794ff980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.onap.msb.apiroute.wrapper.dao.service;

import java.util.List;

import org.onap.msb.apiroute.wrapper.dao.service.bean.ServiceInfo;

public interface IServiceDAO {
    public void saveService(String key, ServiceInfo serviceInfo) throws Exception;

    public ServiceInfo queryService(String key) throws Exception;

    public List<ServiceInfo> queryMultiService(String keyPattern) throws Exception;

    public long deleteService(String key) throws Exception;

    public long deleteMultiService(String keyPattern) throws Exception;
}