aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/asdc/parser/ToscaParser.java
blob: 8af1f7b02411552ca490c9b417010d5252d5b653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.onap.vid.asdc.parser;

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

import java.nio.file.Path;

public interface ToscaParser{
	ToscaCsar parse(Path path) throws AsdcCatalogException;
	
	ServiceModel makeServiceModel(String uuid,Path path,Service asdcServiceMetadata) throws AsdcCatalogException;
}