aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-tosca-converter-lib/openecomp-tosca-converter-api/src/main/java/org/openecomp/core/converter/ToscaConverter.java
blob: 543d32347f022f4aaa67c231b1b6247f680d2b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.openecomp.core.converter;

import org.openecomp.core.utilities.file.FileContentHandler;
import org.openecomp.sdc.tosca.datatypes.ToscaServiceModel;

import java.io.IOException;

public interface ToscaConverter {

  ToscaServiceModel convert(FileContentHandler fileContentHandler)
      throws IOException;
}