01533425a0eff8f4419d0ffec23b10bb20476021
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / common / handlers / impl / SchemaContextHandlerImpl.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.common.handlers.impl;
9
10 import org.opendaylight.restconf.common.handlers.api.SchemaContextHandler;
11 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
12
13 /**
14  * Implementation of {@link SchemaContextHandler}
15  *
16  */
17 public class SchemaContextHandlerImpl implements SchemaContextHandler {
18
19     private SchemaContext context;
20
21     @Override
22     public void onGlobalContextUpdated(final SchemaContext context) {
23         this.context = null;
24         this.context = context;
25     }
26
27     @Override
28     public SchemaContext getSchemaContext() {
29         return this.context;
30     }
31 }