Bug 6896: [YANG 1.1] Add support for new statement "action"
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / OperationDefinition.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;
10
11 import com.google.common.annotations.Beta;
12 import java.util.Set;
13
14 /**
15  * Common interface for an operation
16  */
17 @Beta
18 public interface OperationDefinition extends SchemaNode {
19
20     /**
21      * @return Set of type definitions declared under this operation.
22      */
23     Set<TypeDefinition<?>> getTypeDefinitions();
24
25     /**
26      * @return Set of grouping statements declared under this operation.
27      */
28     Set<GroupingDefinition> getGroupings();
29
30     /**
31      * @return Definition of input parameters for this operation.
32      *         The substatements of input define nodes under the operation's input node.
33      */
34     ContainerSchemaNode getInput();
35
36     /**
37      * @return Definition of output parameters for this operation. The
38      *         substatements of output define nodes under the operation's output node.
39      */
40     ContainerSchemaNode getOutput();
41 }