Populate model/ hierarchy
[yangtools.git] / model / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / stmt / impl / eff / EmptyConfigEffectiveStatement.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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.model.ri.stmt.impl.eff;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.model.api.stmt.ConfigEffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.ConfigStatement;
13 import org.opendaylight.yangtools.yang.model.ri.stmt.impl.decl.EmptyConfigStatement;
14 import org.opendaylight.yangtools.yang.model.spi.meta.AbstractDeclaredEffectiveStatement.DefaultArgument;
15
16 public final class EmptyConfigEffectiveStatement extends DefaultArgument<Boolean, ConfigStatement>
17         implements ConfigEffectiveStatement {
18     public static final @NonNull EmptyConfigEffectiveStatement FALSE =
19         new EmptyConfigEffectiveStatement(EmptyConfigStatement.FALSE);
20     public static final @NonNull EmptyConfigEffectiveStatement TRUE =
21         new EmptyConfigEffectiveStatement(EmptyConfigStatement.TRUE);
22
23     public EmptyConfigEffectiveStatement(final ConfigStatement declared) {
24         super(declared);
25     }
26 }