YANGTOOLS-706: reorganize statement definitions
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / revision / RevisionEffectiveStatementImpl.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.rfc7950.stmt.revision;
9
10 import java.util.Optional;
11 import org.opendaylight.yangtools.yang.common.Revision;
12 import org.opendaylight.yangtools.yang.model.api.DocumentedNode;
13 import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionEffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceEffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.RevisionEffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.RevisionStatement;
17 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.DeclaredEffectiveStatementBase;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19
20 final class RevisionEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Revision, RevisionStatement>
21         implements DocumentedNode, RevisionEffectiveStatement {
22
23     private final String reference;
24     private final String description;
25
26     RevisionEffectiveStatementImpl(final StmtContext<Revision, RevisionStatement, ?> ctx) {
27         super(ctx);
28
29         final DescriptionEffectiveStatement descStmt = firstEffective(DescriptionEffectiveStatement.class);
30         if (descStmt != null) {
31             this.description = descStmt.argument();
32         } else {
33             this.description = null;
34         }
35
36         final ReferenceEffectiveStatement refStmt = firstEffective(ReferenceEffectiveStatement.class);
37         if (refStmt != null) {
38             this.reference = refStmt.argument();
39         } else {
40             this.reference = null;
41         }
42     }
43
44     @Override
45     public Optional<String> getDescription() {
46         return Optional.ofNullable(description);
47     }
48
49     @Override
50     public Optional<String> getReference() {
51         return Optional.ofNullable(reference);
52     }
53 }