Split Restconf implementations (draft02 and RFC) - Application
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / md / sal / rest / schema / SchemaRetrievalService.java
1 /*
2  * Copyright (c) 2014 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.netconf.md.sal.rest.schema;
9
10 import com.google.common.annotations.Beta;
11 import javax.ws.rs.GET;
12 import javax.ws.rs.Path;
13 import javax.ws.rs.PathParam;
14 import javax.ws.rs.Produces;
15 import org.opendaylight.restconf.base.services.api.RestconfSchemaService;
16 import org.opendaylight.restconf.common.schema.SchemaExportContext;
17
18 /**
19  * Retrieval of the YANG modules which server supports.
20  *
21  * @deprecated do not use this api. It is replaced by
22  *             {@link RestconfSchemaService}
23  */
24 @Deprecated
25 @Beta
26 public interface SchemaRetrievalService {
27
28     String YANG_MEDIA_TYPE = "application/yang";
29     String YIN_MEDIA_TYPE = "application/yin+xml";
30
31     @GET
32     @Produces({YIN_MEDIA_TYPE,YANG_MEDIA_TYPE})
33     @Path("/modules/module/{identifier:.+}/schema")
34     SchemaExportContext getSchema(@PathParam("identifier") String mountAndModuleId);
35 }