3a6f4bbfb58bb2511200d08ed9b60de794798719
[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 @Beta
21 public interface OperationGroup extends DocumentationGroup.WithStatus, ConditionalFeature {
22
23     @Nonnull QName getName();
24
25     @Nonnull Collection<? extends TypedefStatement> getTypedefs();
26
27     @Nonnull Collection<? extends GroupingStatement> getGroupings();
28
29     @Nullable InputStatement getInput();
30
31     @Nullable OutputStatement getOutput();
32 }