Remove SchemaNode.getPath()
[yangtools.git] / parser / rfc6643-parser-support / src / main / java / org / opendaylight / yangtools / rfc6643 / parser / DefValEffectiveStatementImpl.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.DefValEffectiveStatement;
13 import org.opendaylight.yangtools.rfc6643.model.api.DefValSchemaNode;
14 import org.opendaylight.yangtools.rfc6643.model.api.DefValStatement;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
17 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
19
20 final class DefValEffectiveStatementImpl extends UnknownEffectiveStatementBase<String, DefValStatement>
21         implements DefValEffectiveStatement, DefValSchemaNode {
22     DefValEffectiveStatementImpl(final Current<String, DefValStatement> stmt,
23             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
24         super(stmt, substatements);
25     }
26
27     @Override
28     public QName getQName() {
29         return getNodeType();
30     }
31
32     @Override
33     public DefValEffectiveStatement asEffectiveStatement() {
34         return this;
35     }
36
37     @Override
38     public int hashCode() {
39         return Objects.hash(getNodeType(), getNodeParameter());
40     }
41
42     @Override
43     public boolean equals(final Object obj) {
44         if (this == obj) {
45             return true;
46         }
47         if (!(obj instanceof DefValEffectiveStatementImpl)) {
48             return false;
49         }
50         final DefValEffectiveStatementImpl other = (DefValEffectiveStatementImpl) obj;
51         return Objects.equals(getNodeType(), other.getNodeType())
52             && Objects.equals(getNodeParameter(), other.getNodeParameter());
53     }
54 }