Renaming openecomp to onap
[aai/model-loader.git] / src / main / java / org / openecomp / modelloader / service / ModelLoaderInterface.java
diff --git a/src/main/java/org/openecomp/modelloader/service/ModelLoaderInterface.java b/src/main/java/org/openecomp/modelloader/service/ModelLoaderInterface.java
deleted file mode 100644 (file)
index c5ead66..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/**\r
- * ============LICENSE_START=======================================================\r
- * org.onap.aai\r
- * ================================================================================\r
- * Copyright © 2017 AT&T Intellectual Property.\r
- * Copyright © 2017 Amdocs\r
- * All rights reserved.\r
- * ================================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *     http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- * ============LICENSE_END=========================================================\r
- *\r
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
- */\r
-package org.openecomp.modelloader.service;\r
-\r
-import java.io.IOException;\r
-\r
-import javax.servlet.http.HttpServletRequest;\r
-import javax.ws.rs.Consumes;\r
-import javax.ws.rs.GET;\r
-import javax.ws.rs.POST;\r
-import javax.ws.rs.PUT;\r
-import javax.ws.rs.Path;\r
-import javax.ws.rs.PathParam;\r
-import javax.ws.rs.Produces;\r
-import javax.ws.rs.core.Context;\r
-import javax.ws.rs.core.Response;\r
-\r
-public interface ModelLoaderInterface {\r
-\r
-  @GET\r
-  @Path("/loadModel/{modelid}")\r
-  public Response loadModel(@PathParam("modelid") String modelid);\r
-\r
-  @PUT\r
-  @Path("/saveModel/{modelid}/{modelname}")\r
-  public Response saveModel(@PathParam("modelid") String modelid,\r
-      @PathParam("modelname") String modelname);\r
-\r
-  @POST\r
-  @Consumes("application/xml")\r
-  @Produces("application/xml")\r
-  @Path("/ingestModel/{modelid}")\r
-  public Response ingestModel(@PathParam("modelid") String modelid, @Context HttpServletRequest req,\r
-      String payload) throws IOException;\r
-}\r