X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Fapi%2FRpcDefinition.java;fp=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Fapi%2FRpcDefinition.java;h=0000000000000000000000000000000000000000;hb=e0e2b9f77ecf0bf2353dba9a448e1901194648d3;hp=5ce453dd38887c092c2ee369b238de4aa243df9b;hpb=970fb91c60c15a9b57e078f81aab7dde903addb9;p=controller.git diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/RpcDefinition.java b/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/RpcDefinition.java deleted file mode 100644 index 5ce453dd38..0000000000 --- a/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/RpcDefinition.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.controller.yang.model.api; - -import java.util.Set; - -/** - * Interface describing YANG 'rpc' statement. - *

- * The rpc statement defines an rpc node in the schema tree. Under the rpc node, - * a schema node with the name 'input', and a schema node with the name 'output' - * are also defined. - *

- */ -public interface RpcDefinition extends SchemaNode { - - /** - * @return Set of type definitions declared under this rpc statement. - */ - Set> getTypeDefinitions(); - - /** - * @return Set of grouping statements declared under this rpc statement. - */ - Set getGroupings(); - - /** - * @return Definition of input parameters to the RPC operation. The - * substatements of input define nodes under the RPC's input node. - */ - ContainerSchemaNode getInput(); - - /** - * @return Definition of output parameters to the RPC operation. The - * substatements of output define nodes under the RPC's output node. - */ - ContainerSchemaNode getOutput(); - -}