Merge "Bug 9092: revert to org.json temporarily"
[netconf.git] / restconf / sal-rest-connector / 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
17 /**
18  * Retrieval of the YANG modules which server supports.
19  *
20  * @deprecated do not use this api. It is replaced by
21  *             {@link RestconfSchemaService}
22  */
23 @Deprecated
24 @Beta
25 public interface SchemaRetrievalService {
26
27     String YANG_MEDIA_TYPE = "application/yang";
28     String YIN_MEDIA_TYPE = "application/yin+xml";
29
30     @GET
31     @Produces({YIN_MEDIA_TYPE,YANG_MEDIA_TYPE})
32     @Path("/modules/module/{identifier:.+}/schema")
33     SchemaExportContext getSchema(@PathParam("identifier") String mountAndModuleId);
34 }