Bug 5526 - Implementation of SchemaContextHandler 06/36106/35
authorJakub Toth <jatoth@cisco.com>
Fri, 11 Mar 2016 09:59:06 +0000 (10:59 +0100)
committerJakub Toth <jatoth@cisco.com>
Thu, 5 May 2016 17:28:42 +0000 (17:28 +0000)
Change-Id: I8575639228e498a16b350a4134b9928089091b4f
Signed-off-by: Jakub Toth <jatoth@cisco.com>
restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/impl/schema/context/SchemaContextHandlerImpl.java [new file with mode: 0644]

diff --git a/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/impl/schema/context/SchemaContextHandlerImpl.java b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/impl/schema/context/SchemaContextHandlerImpl.java
new file mode 100644 (file)
index 0000000..b2ac93e
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.restconf.rest.impl.schema.context;
+
+import org.opendaylight.restconf.rest.api.schema.context.SchemaContextHandler;
+import org.opendaylight.yangtools.yang.model.api.SchemaContext;
+
+/**
+ * Implementation of {@link SchemaContextHandler}
+ *
+ */
+public class SchemaContextHandlerImpl implements SchemaContextHandler {
+
+    private SchemaContext context;
+
+    @Override
+    public void onGlobalContextUpdated(final SchemaContext context) {
+        this.context = null;
+        this.context = context;
+    }
+
+    @Override
+    public SchemaContext getSchemaContext() {
+        return this.context;
+    }
+}