Refresh IETF client/server models
[netconf.git] / plugins / netconf-client-mdsal / src / main / java / org / opendaylight / netconf / client / mdsal / impl / BaseSchema.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.netconf.client.mdsal.impl;
9
10 import com.google.common.collect.ImmutableMap;
11 import com.google.common.collect.Maps;
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.opendaylight.yangtools.concepts.Immutable;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.data.api.schema.MountPointContext;
16 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
17 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
18
19 public final class BaseSchema implements Immutable {
20     private final @NonNull ImmutableMap<QName, ? extends RpcDefinition> mappedRpcs;
21     private final @NonNull MountPointContext mountContext;
22
23     BaseSchema(final EffectiveModelContext context) {
24         mountContext = MountPointContext.of(context);
25         mappedRpcs = Maps.uniqueIndex(context.getOperations(), RpcDefinition::getQName);
26     }
27
28     public @NonNull EffectiveModelContext modelContext() {
29         return mountContext.modelContext();
30     }
31
32     @NonNull ImmutableMap<QName, ? extends RpcDefinition> getMappedRpcs() {
33         return mappedRpcs;
34     }
35
36     public @NonNull MountPointContext getMountPointContext() {
37         return mountContext;
38     }
39 }