GNPy client refactor
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / gnpy / consumer / GnpyResource.java
1 /*
2  * Copyright © 2021 Orange, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.transportpce.pce.gnpy.consumer;
9
10 import javax.ws.rs.Consumes;
11 import javax.ws.rs.HEAD;
12 import javax.ws.rs.POST;
13 import javax.ws.rs.Path;
14 import javax.ws.rs.Produces;
15 import javax.ws.rs.core.MediaType;
16 import org.opendaylight.yang.gen.v1.gnpy.gnpy.api.rev190103.GnpyApi;
17 import org.opendaylight.yang.gen.v1.gnpy.path.rev200909.Result;
18
19 @Path("/gnpy/api/v1.0/files")
20 public interface GnpyResource {
21
22     @HEAD
23     String checkStatus();
24
25     @POST
26     @Produces(MediaType.APPLICATION_JSON)
27     @Consumes(MediaType.APPLICATION_JSON)
28     Result computePathRequest(GnpyApi request);
29
30 }