Refactor Leaf(List)EffectiveStatementImpl
[yangtools.git] / yang / 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.yang.model.api.ElementCountConstraint;
16 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
17 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
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 SchemaPath 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     @Override
32     public ImmutableSet<String> getDefaults() {
33         return defaults;
34     }
35 }