Clean up utility method
[netconf.git] / plugins / netconf-server-mdsal / src / test / java / org / opendaylight / netconf / server / mdsal / operations / SchemaServiceStub.java
1 /*
2  * Copyright (c) 2018 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.netconf.server.mdsal.operations;
9
10 import static java.util.Objects.requireNonNull;
11
12 import java.util.function.Consumer;
13 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
14 import org.opendaylight.yangtools.concepts.Registration;
15 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
16
17 final class SchemaServiceStub implements DOMSchemaService {
18     private final EffectiveModelContext schemaContext;
19
20     SchemaServiceStub(final EffectiveModelContext schemaContext) {
21         this.schemaContext = requireNonNull(schemaContext);
22     }
23
24     @Override
25     public EffectiveModelContext getGlobalContext() {
26         return schemaContext;
27     }
28
29     @Override
30     public Registration registerSchemaContextListener(final Consumer<EffectiveModelContext> listener) {
31         listener.accept(schemaContext);
32         return () -> {
33             // No-op
34         };
35     }
36 }