2 * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.restconf.nb.rfc8040.services.simple.api;
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.restconf.common.schema.SchemaExportContext;
15 import org.opendaylight.restconf.nb.rfc8040.Rfc8040;
16 import org.opendaylight.restconf.nb.rfc8040.utils.RestconfConstants;
19 * Retrieval of the YANG modules which server supports.
23 public interface RestconfSchemaService extends UpdateHandlers {
26 * Get schema of specific module.
30 * @return {@link SchemaExportContext}
33 @Produces({ Rfc8040.MediaTypes.YIN + RestconfConstants.XML, Rfc8040.MediaTypes.YANG })
34 @Path("modules/{identifier:.+}")
35 SchemaExportContext getSchema(@PathParam("identifier") String identifier);