c10b1f02296937cca917bfb64ddb79c64e388bd7
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / OperationGroup.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.yangtools.yang.model.api.stmt;
10
11 import com.google.common.annotations.Beta;
12 import java.util.Collection;
13 import javax.annotation.Nonnull;
14 import javax.annotation.Nullable;
15 import org.opendaylight.yangtools.yang.common.QName;
16
17 /**
18  * Common interface for action and rpc statements.
19  *
20  * @deprecated Use {@link OperationDeclaredStatement} instead.
21  */
22 @Deprecated
23 @Beta
24 public interface OperationGroup extends DocumentationGroup.WithStatus, ConditionalFeature {
25
26     @Nonnull QName getName();
27
28     @Nonnull Collection<? extends TypedefStatement> getTypedefs();
29
30     @Nonnull Collection<? extends GroupingStatement> getGroupings();
31
32     @Nullable InputStatement getInput();
33
34     @Nullable OutputStatement getOutput();
35 }