Reduce exception guard
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / services / api / RestconfSchemaService.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.nb.rfc8040.rests.services.api;
9
10 import javax.ws.rs.GET;
11 import javax.ws.rs.Path;
12 import javax.ws.rs.PathParam;
13 import javax.ws.rs.Produces;
14 import org.opendaylight.yangtools.yang.common.YangConstants;
15
16 /**
17  * Retrieval of the YANG modules which server supports.
18  */
19 @Path("/")
20 public interface RestconfSchemaService {
21     /**
22      * Get schema of specific module.
23      *
24      * @param identifier path parameter
25      * @return {@link SchemaExportContext}
26      */
27     @GET
28     @Produces({ YangConstants.RFC6020_YIN_MEDIA_TYPE, YangConstants.RFC6020_YANG_MEDIA_TYPE })
29     @Path("modules/{identifier:.+}")
30     SchemaExportContext getSchema(@PathParam("identifier") String identifier);
31 }