Split Restconf implementations (draft02 and RFC) - Prepare modules
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / restconf / base / services / api / RestconfService.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, 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.restconf.base.services.api;
9
10 import javax.ws.rs.GET;
11 import javax.ws.rs.Path;
12 import javax.ws.rs.Produces;
13 import javax.ws.rs.core.MediaType;
14 import org.opendaylight.netconf.sal.restconf.impl.NormalizedNodeContext;
15 import org.opendaylight.restconf.Rfc8040;
16 import org.opendaylight.restconf.utils.RestconfConstants;
17
18 /**
19  * Service for getting yang library version.
20  *
21  */
22 public interface RestconfService {
23
24     /**
25      * Get yang library version.
26      *
27      * @return {@link NormalizedNodeContext}
28      */
29     @GET
30     @Path("/yang-library-version")
31     @Produces({ Rfc8040.MediaTypes.DATA + RestconfConstants.JSON, Rfc8040.MediaTypes.DATA, MediaType.APPLICATION_JSON,
32             MediaType.APPLICATION_XML, MediaType.TEXT_XML })
33     NormalizedNodeContext getLibraryVersion();
34 }