Fix somar complaints in equals methods
[yangtools.git] / yang / rfc6643-parser-support / src / main / java / org / opendaylight / yangtools / rfc6643 / parser / MaxAccessEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2016, 2020 PANTHEON.tech, s.r.o. 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.rfc6643.parser;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Objects;
12 import org.opendaylight.yangtools.rfc6643.model.api.MaxAccess;
13 import org.opendaylight.yangtools.rfc6643.model.api.MaxAccessEffectiveStatement;
14 import org.opendaylight.yangtools.rfc6643.model.api.MaxAccessSchemaNode;
15 import org.opendaylight.yangtools.rfc6643.model.api.MaxAccessStatement;
16 import org.opendaylight.yangtools.yang.common.QName;
17 import org.opendaylight.yangtools.yang.model.api.SchemaNodeDefaults;
18 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
19 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
20 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.SchemaPathSupport;
23
24 final class MaxAccessEffectiveStatementImpl extends UnknownEffectiveStatementBase<MaxAccess, MaxAccessStatement>
25         implements MaxAccessEffectiveStatement, MaxAccessSchemaNode {
26     private final SchemaPath path;
27
28     MaxAccessEffectiveStatementImpl(final Current<MaxAccess, MaxAccessStatement> stmt,
29             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
30         super(stmt, substatements);
31         path = SchemaPathSupport.wrap(stmt.getEffectiveParent().getSchemaPath().createChild(getNodeType()));
32     }
33
34     @Override
35     public MaxAccess getArgument() {
36         return argument();
37     }
38
39     @Override
40     public QName getQName() {
41         return getNodeType();
42     }
43
44     @Override
45     @Deprecated
46     public SchemaPath getPath() {
47         return SchemaNodeDefaults.throwUnsupportedIfNull(this, path);
48     }
49
50     @Override
51     public MaxAccessEffectiveStatement asEffectiveStatement() {
52         return this;
53     }
54
55     @Override
56     public int hashCode() {
57         return Objects.hash(path, getNodeType(), getNodeParameter());
58     }
59
60     @Override
61     public boolean equals(final Object obj) {
62         if (this == obj) {
63             return true;
64         }
65         if (!(obj instanceof MaxAccessEffectiveStatementImpl)) {
66             return false;
67         }
68         final MaxAccessEffectiveStatementImpl other = (MaxAccessEffectiveStatementImpl) obj;
69         return Objects.equals(getNodeType(), other.getNodeType())
70             && Objects.equals(getNodeParameter(), other.getNodeParameter()) && Objects.equals(path, other.path);
71     }
72 }