Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / config / 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.parser.rfc7950.stmt.config;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Collection;
12 import java.util.Map;
13 import javax.annotation.Nonnull;
14 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
16 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
17 import org.opendaylight.yangtools.yang.model.api.meta.StatementSource;
18 import org.opendaylight.yangtools.yang.model.api.stmt.ConfigEffectiveStatement;
19 import org.opendaylight.yangtools.yang.model.api.stmt.ConfigStatement;
20
21 abstract class EmptyConfigEffectiveStatement implements ConfigEffectiveStatement {
22     static final EmptyConfigEffectiveStatement FALSE = new EmptyConfigEffectiveStatement() {
23         @Override
24         public ConfigStatement getDeclared() {
25             return EmptyConfigStatement.FALSE;
26         }
27     };
28
29     static final EmptyConfigEffectiveStatement TRUE = new EmptyConfigEffectiveStatement() {
30         @Override
31         public ConfigStatement getDeclared() {
32             return EmptyConfigStatement.TRUE;
33         }
34     };
35
36     private EmptyConfigEffectiveStatement() {
37         // Hidden
38     }
39
40     @Nonnull
41     @Override
42     public final StatementDefinition statementDefinition() {
43         return getDeclared().statementDefinition();
44     }
45
46     @Override
47     public final Boolean argument() {
48         return getDeclared().argument();
49     }
50
51     @Nonnull
52     @Override
53     public final StatementSource getStatementSource() {
54         return getDeclared().getStatementSource();
55     }
56
57     @Override
58     public final <K, V, N extends IdentifierNamespace<K, V>> V get(@Nonnull final Class<N> namespace,
59             @Nonnull final K identifier) {
60         throw new UnsupportedOperationException("Not implemented yet.");
61     }
62
63     @Override
64     public final <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAll(@Nonnull final Class<N> namespace) {
65         throw new UnsupportedOperationException("Not implemented yet.");
66     }
67
68     @Nonnull
69     @Override
70     public final Collection<? extends EffectiveStatement<?, ?>> effectiveSubstatements() {
71         return ImmutableList.of();
72     }
73 }