Reduce sonar code smells
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / openconfig / stmt / OpenConfigVersionEffectiveStatementImpl.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.yangtools.yang.parser.openconfig.stmt;
9
10 import java.util.Objects;
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.concepts.SemVer;
13 import org.opendaylight.yangtools.openconfig.model.api.OpenConfigVersionEffectiveStatement;
14 import org.opendaylight.yangtools.openconfig.model.api.OpenConfigVersionStatement;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
17 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19
20 final class OpenConfigVersionEffectiveStatementImpl extends
21         UnknownEffectiveStatementBase<SemVer, OpenConfigVersionStatement>
22         implements OpenConfigVersionEffectiveStatement {
23
24     private final SchemaPath path;
25
26     OpenConfigVersionEffectiveStatementImpl(final StmtContext<SemVer, OpenConfigVersionStatement, ?> ctx) {
27         super(ctx);
28         path = ctx.getParentContext().getSchemaPath().get().createChild(getNodeType());
29     }
30
31     @Nonnull
32     @Override
33     public QName getQName() {
34         return getNodeType();
35     }
36
37     @Nonnull
38     @Override
39     public SchemaPath getPath() {
40         return path;
41     }
42
43     @Override
44     public int hashCode() {
45         return Objects.hash(path, getNodeType(), getNodeParameter());
46     }
47
48     @Override
49     public boolean equals(final Object obj) {
50         if (this == obj) {
51             return true;
52         }
53         if (!(obj instanceof OpenConfigVersionEffectiveStatementImpl)) {
54             return false;
55         }
56         final OpenConfigVersionEffectiveStatementImpl other = (OpenConfigVersionEffectiveStatementImpl) obj;
57         return Objects.equals(path, other.path) && Objects.equals(getNodeType(), other.getNodeType())
58                 && Objects.equals(getNodeParameter(), other.getNodeParameter());
59     }
60 }