Bug 2366 - Effective statements impl for new yang parser.
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / ConfigStatementImpl.java
1 /**
2 * Copyright (c) 2015 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.stmt.rfc6020;
9
10 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.ConfigEffectiveStatementImpl;
11
12 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.ConfigStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
19 import javax.annotation.Nonnull;
20
21 public class ConfigStatementImpl extends AbstractDeclaredStatement<Boolean> implements ConfigStatement {
22
23     protected ConfigStatementImpl(
24             StmtContext<Boolean, ConfigStatement, ?> context) {
25         super(context);
26     }
27
28     public static class Definition extends AbstractStatementSupport<Boolean,ConfigStatement,EffectiveStatement<Boolean,ConfigStatement>> {
29
30         public Definition() {
31             super(Rfc6020Mapping.CONFIG);
32         }
33
34         @Override public Boolean parseArgumentValue(StmtContext<?, ?, ?> ctx,
35                 String value) throws SourceException {
36             return Boolean.valueOf(value);
37         }
38
39         @Override public ConfigStatement createDeclared(StmtContext<Boolean, ConfigStatement, ?> ctx) {
40             return new ConfigStatementImpl(ctx);
41         }
42
43         @Override public EffectiveStatement<Boolean, ConfigStatement> createEffective(StmtContext<Boolean, ConfigStatement, EffectiveStatement<Boolean, ConfigStatement>> ctx) {
44             return new ConfigEffectiveStatementImpl(ctx);
45         }
46     }
47
48     @Nonnull @Override
49     public Boolean getValue() {
50         return argument();
51     }
52 }