aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/services/VidService.java
blob: ae1765f0b29c43a35e105bed6af8bc38d91d408f (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.vid.services;

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

public interface VidService {

	ServiceModel getService(String uuid) throws AsdcCatalogException;

    void invalidateServiceCache();
}