Create netconf.topology.spi
[netconf.git] / netconf / netconf-topology / src / main / java / org / opendaylight / netconf / topology / api / SchemaRepositoryProvider.java
index cb3e2d06d8b686f1cdd79c1374eac594bc09e357..c0c38cf711a32291f0daa5a8dc2fd4592ff297fe 100644 (file)
@@ -5,12 +5,12 @@
  * 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.netconf.topology.api;
 
+import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.parser.repo.SharedSchemaRepository;
 
 public interface SchemaRepositoryProvider {
 
-    SharedSchemaRepository getSharedSchemaRepository();
+    @NonNull SharedSchemaRepository getSharedSchemaRepository();
 }