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

import java.nio.file.Path;

import org.openecomp.sdc.tosca.parser.exceptions.SdcToscaParserException;
import org.openecomp.vid.asdc.AsdcCatalogException;
import org.openecomp.vid.asdc.beans.tosca.ToscaCsar;
import org.openecomp.vid.asdc.beans.Service;
import org.openecomp.vid.model.ServiceModel;

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