Add RFC6643 parser support
[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.MaxAccessEffectiveStatement;
13 import org.opendaylight.yangtools.rfc6643.model.api.MaxAccessSchemaNode;
14 import org.opendaylight.yangtools.rfc6643.model.api.MaxAccessStatement;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
17 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
18 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
20
21 final class MaxAccessEffectiveStatementImpl extends UnknownEffectiveStatementBase<String, MaxAccessStatement>
22         implements MaxAccessEffectiveStatement, MaxAccessSchemaNode {
23     private final SchemaPath path;
24
25     MaxAccessEffectiveStatementImpl(final StmtContext<String, MaxAccessStatement, ?> ctx,
26             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
27         super(ctx, substatements);
28         path = ctx.getParentContext().getSchemaPath().get().createChild(getNodeType());
29     }
30
31     @Override
32     public String getArgument() {
33         return argument();
34     }
35
36     @Override
37     public QName getQName() {
38         return getNodeType();
39     }
40
41     @Override
42     public SchemaPath getPath() {
43         return path;
44     }
45
46     @Override
47     public int hashCode() {
48         return Objects.hash(path, getNodeType(), getNodeParameter());
49     }
50
51     @Override
52     public boolean equals(final Object obj) {
53         if (this == obj) {
54             return true;
55         }
56         if (obj == null) {
57             return false;
58         }
59         if (getClass() != obj.getClass()) {
60             return false;
61         }
62         final MaxAccessEffectiveStatementImpl other = (MaxAccessEffectiveStatementImpl) obj;
63         if (!Objects.equals(path, other.path)) {
64             return false;
65         }
66         if (!Objects.equals(getNodeType(), other.getNodeType())) {
67             return false;
68         }
69         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
70             return false;
71         }
72         return true;
73     }
74 }