Remove depredcated code/classes
[cps.git] / cps-service / src / main / java / org / onap / cps / api / CpsModuleService.java
index 94ebea2..325893d 100644 (file)
@@ -19,7 +19,6 @@
 
 package org.onap.cps.api;
 
-import java.io.File;
 import org.onap.cps.spi.exceptions.CpsException;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
@@ -28,22 +27,6 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext;
  */
 public interface CpsModuleService {
 
-    /**
-     * Parse and validate a string representing a yang model to generate a schema context.
-     *
-     * @param yangModelContent the input stream
-     * @return the schema context
-     */
-    SchemaContext parseAndValidateModel(String yangModelContent);
-
-    /**
-     * Parse and validate a file representing a yang model to generate a schema context.
-     *
-     * @param yangModelFile the yang file
-     * @return the schema context
-     */
-    SchemaContext parseAndValidateModel(File yangModelFile);
-
     /**
      * Store schema context for a yang model.
      *