Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / AbstractEffectiveDocumentedNode.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;
9
10 import java.util.Optional;
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.yang.model.api.DocumentedNode;
13 import org.opendaylight.yangtools.yang.model.api.Status;
14 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionEffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceEffectiveStatement;
17 import org.opendaylight.yangtools.yang.model.api.stmt.StatusEffectiveStatement;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19
20 public abstract class AbstractEffectiveDocumentedNode<A, D extends DeclaredStatement<A>>
21         extends DeclaredEffectiveStatementBase<A, D> implements DocumentedNode.WithStatus {
22
23     private final String description;
24     private final String reference;
25     private final Status status;
26
27     /**
28      * Constructor.
29      *
30      * @param ctx
31      *            context of statement.
32      */
33     protected AbstractEffectiveDocumentedNode(final StmtContext<A, D, ?> ctx) {
34         super(ctx);
35         description = findFirstEffectiveSubstatementArgument(DescriptionEffectiveStatement.class).orElse(null);
36         reference = findFirstEffectiveSubstatementArgument(ReferenceEffectiveStatement.class).orElse(null);
37         status = findFirstEffectiveSubstatementArgument(StatusEffectiveStatement.class).orElse(Status.CURRENT);
38     }
39
40     @Override
41     public final Optional<String> getDescription() {
42         return Optional.ofNullable(description);
43     }
44
45     @Override
46     public final Optional<String> getReference() {
47         return Optional.ofNullable(reference);
48     }
49
50     @Nonnull
51     @Override
52     public final Status getStatus() {
53         return status;
54     }
55 }