Deprecate UndeclaredEffectiveStatementBase for removal
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / unique / UniqueEffectiveStatementImpl.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.unique;
9
10 import static com.google.common.base.Verify.verifyNotNull;
11
12 import java.util.Set;
13 import org.opendaylight.yangtools.yang.model.api.UniqueConstraint;
14 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Descendant;
15 import org.opendaylight.yangtools.yang.model.api.stmt.UniqueEffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.UniqueStatement;
17 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.DeclaredEffectiveStatementBase;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19
20 final class UniqueEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Set<Descendant>, UniqueStatement>
21         implements UniqueConstraint, UniqueEffectiveStatement {
22     UniqueEffectiveStatementImpl(final StmtContext<Set<Descendant>, UniqueStatement, ?> ctx) {
23         super(ctx);
24     }
25
26     @Override
27     public Set<Descendant> getTag() {
28         // FIXME: YANGTOOLS-908: verifyNotNull() should not be needed here
29         return verifyNotNull(argument());
30     }
31 }