689115e46302128f31b3fb102d348c1a02698295
[aai/model-loader.git] / src / main / java / org / openecomp / modelloader / service / ModelLoaderInterface.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * MODEL LOADER SERVICE
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.modelloader.service;
22
23 import java.io.IOException;
24
25 import javax.servlet.http.HttpServletRequest;
26 import javax.ws.rs.Consumes;
27 import javax.ws.rs.GET;
28 import javax.ws.rs.POST;
29 import javax.ws.rs.PUT;
30 import javax.ws.rs.Path;
31 import javax.ws.rs.PathParam;
32 import javax.ws.rs.Produces;
33 import javax.ws.rs.core.Context;
34 import javax.ws.rs.core.Response;
35
36 public interface ModelLoaderInterface {
37
38   @GET
39   @Path("/loadModel/{modelid}")
40   public Response loadModel(@PathParam("modelid") String modelid);
41
42   @PUT
43   @Path("/saveModel/{modelid}/{modelname}")
44   public Response saveModel(@PathParam("modelid") String modelid,
45       @PathParam("modelname") String modelname);
46
47   @POST
48   @Consumes("application/xml")
49   @Produces("application/xml")
50   @Path("/ingestModel/{modelid}")
51   public Response ingestModel(@PathParam("modelid") String modelid, @Context HttpServletRequest req,
52       String payload) throws IOException;
53 }