Delete netconf
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / md / sal / rest / schema / SchemaExportContext.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.controller.md.sal.rest.schema;
9
10 import org.opendaylight.yangtools.yang.model.api.Module;
11 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
12
13 public class SchemaExportContext {
14
15     private final SchemaContext schemaContext;
16     private final Module module;
17
18     public SchemaExportContext(final SchemaContext ctx, final Module module) {
19         schemaContext = ctx;
20         this.module = module;
21     }
22
23     public SchemaContext getSchemaContext() {
24         return schemaContext;
25     }
26
27     public Module getModule() {
28         return module;
29     }
30
31 }