543d32347f022f4aaa67c231b1b6247f680d2b23
[sdc.git] /
1 package org.openecomp.core.converter;
2
3 import org.openecomp.core.utilities.file.FileContentHandler;
4 import org.openecomp.sdc.tosca.datatypes.ToscaServiceModel;
5
6 import java.io.IOException;
7
8 public interface ToscaConverter {
9
10   ToscaServiceModel convert(FileContentHandler fileContentHandler)
11       throws IOException;
12 }