Automate Updates to the API Client Library
[appc.git] / appc-client / code-generator / src / main / java / org / onap / appc / tools / generator / api / ContextBuilder.java
index a1826f2..e2831de 100644 (file)
 
 package org.onap.appc.tools.generator.api;
 
-import java.io.FileNotFoundException;
 import java.io.IOException;
+import java.net.URL;
 import java.util.Map;
 
 public interface ContextBuilder {
 
-    Map<String, Object> buildContext(String sourceFile, String contextConf) throws IOException;
+    Map<String, Object> buildContext(URL sourceURL, String contextConf) throws IOException;
 }