50842e930d376f67d050f7bc1a3c14a0d29f43e8
[yangtools.git] / parser / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / leaf_list / RegularLeafListEffectiveStatement.java
1 /*
2  * Copyright (c) 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.yang.parser.rfc7950.stmt.leaf_list;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.collect.ImmutableList;
13 import com.google.common.collect.ImmutableSet;
14 import org.eclipse.jdt.annotation.NonNull;
15 import org.opendaylight.yangtools.concepts.Immutable;
16 import org.opendaylight.yangtools.yang.model.api.ElementCountConstraint;
17 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
18 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
19 import org.opendaylight.yangtools.yang.model.api.stmt.LeafListStatement;
20
21 final class RegularLeafListEffectiveStatement extends AbstractNonEmptyLeafListEffectiveStatement {
22     private final @NonNull ImmutableSet<String> defaults;
23
24     RegularLeafListEffectiveStatement(final LeafListStatement declared, final Immutable path, final int flags,
25             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements, final LeafListSchemaNode original,
26             final ImmutableSet<String> defaults, final ElementCountConstraint elementCountConstraint) {
27         super(declared, path, flags, substatements, original, elementCountConstraint);
28         this.defaults = requireNonNull(defaults);
29     }
30
31     RegularLeafListEffectiveStatement(final RegularLeafListEffectiveStatement originalEffective,
32             final LeafListSchemaNode original, final Immutable path, final int flags) {
33         super(originalEffective, original, path, flags);
34         this.defaults = originalEffective.defaults;
35     }
36
37     @Override
38     public ImmutableSet<String> getDefaults() {
39         return defaults;
40     }
41 }