Bug 6897: Adding getSubstatementValidator() method to AbstractStatementSupport
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / StatusStatementImpl.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 javax.annotation.Nonnull;
11 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
12 import org.opendaylight.yangtools.yang.model.api.Status;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.StatusStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.StatusEffectiveStatementImpl;
20
21 public class StatusStatementImpl extends AbstractDeclaredStatement<Status>
22         implements StatusStatement {
23     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(YangStmtMapping
24             .STATUS)
25             .build();
26
27     protected StatusStatementImpl(
28             StmtContext<Status, StatusStatement, ?> context) {
29         super(context);
30     }
31
32     public static class Definition
33             extends
34             AbstractStatementSupport<Status, StatusStatement, EffectiveStatement<Status, StatusStatement>> {
35
36         public Definition() {
37             super(YangStmtMapping.STATUS);
38         }
39
40         @Override
41         public Status parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) {
42             return Utils.parseStatus(value);
43         }
44
45         @Override
46         public StatusStatement createDeclared(
47                 StmtContext<Status, StatusStatement, ?> ctx) {
48             return new StatusStatementImpl(ctx);
49         }
50
51         @Override
52         public EffectiveStatement<Status, StatusStatement> createEffective(
53                 StmtContext<Status, StatusStatement, EffectiveStatement<Status, StatusStatement>> ctx) {
54             return new StatusEffectiveStatementImpl(ctx);
55         }
56
57         @Override
58         public void onFullDefinitionDeclared(StmtContext.Mutable<Status, StatusStatement,
59                 EffectiveStatement<Status, StatusStatement>> stmt) {
60             super.onFullDefinitionDeclared(stmt);
61             getSubstatementValidator().validate(stmt);
62         }
63
64         @Override
65         protected SubstatementValidator getSubstatementValidator() {
66             return SUBSTATEMENT_VALIDATOR;
67         }
68     }
69
70     @Nonnull
71     @Override
72     public Status getValue() {
73         return argument();
74     }
75
76 }