aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/services/VidService.java
blob: 328fad019660f02afa2874efa9da264b53451b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.onap.vid.services;

import org.onap.vid.asdc.AsdcCatalogException;
import org.onap.vid.asdc.beans.Service;
import org.onap.vid.model.ServiceModel;

import java.util.Collection;
import java.util.Map;

public interface VidService {

	Collection<Service> getServices(Map<String, String[]> requestParams)
			throws AsdcCatalogException;

	ServiceModel getService(String uuid) throws AsdcCatalogException;

}