Split Restconf implementations (draft02 and RFC) - features
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / rest / impl / StringModuleInstanceIdentifierCodec.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
9 package org.opendaylight.netconf.sal.rest.impl;
10
11 import com.google.common.base.Preconditions;
12 import java.net.URI;
13 import javax.annotation.Nonnull;
14 import javax.annotation.Nullable;
15 import org.opendaylight.yangtools.yang.data.util.AbstractModuleStringInstanceIdentifierCodec;
16 import org.opendaylight.yangtools.yang.data.util.DataSchemaContextTree;
17 import org.opendaylight.yangtools.yang.model.api.Module;
18 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
19
20 /**
21  * Codec for module instance identifiers.
22  *
23  * @deprecated This class will be replaced by StringModuleInstanceIdentifierCodec from restconf-nb-rfc8040
24  */
25 @Deprecated
26 public final class StringModuleInstanceIdentifierCodec extends AbstractModuleStringInstanceIdentifierCodec {
27
28     private final DataSchemaContextTree dataContextTree;
29     private final SchemaContext context;
30     private final String defaultPrefix;
31
32     public StringModuleInstanceIdentifierCodec(final SchemaContext context) {
33         this.context = Preconditions.checkNotNull(context);
34         this.dataContextTree = DataSchemaContextTree.from(context);
35         this.defaultPrefix = "";
36     }
37
38     StringModuleInstanceIdentifierCodec(final SchemaContext context, @Nonnull final String defaultPrefix) {
39         this.context = Preconditions.checkNotNull(context);
40         this.dataContextTree = DataSchemaContextTree.from(context);
41         this.defaultPrefix = defaultPrefix;
42     }
43
44     @Override
45     protected Module moduleForPrefix(@Nonnull final String prefix) {
46         if (prefix.isEmpty() && !this.defaultPrefix.isEmpty()) {
47             return this.context.findModuleByName(this.defaultPrefix, null);
48         } else {
49             return this.context.findModuleByName(prefix, null);
50         }
51     }
52
53     @Nonnull
54     @Override
55     protected DataSchemaContextTree getDataContextTree() {
56         return this.dataContextTree;
57     }
58
59     @Nullable
60     @Override
61     protected String prefixForNamespace(@Nonnull final URI namespace) {
62         final Module module = this.context.findModuleByNamespaceAndRevision(namespace, null);
63         return module == null ? null : module.getName();
64     }
65 }