da03383ae8cc1eb2eea4102410b5185e18de2ea8
[dcaegen2/platform.git] / adapter / acumos / tests / fixtures / models / example-model / model.proto
1 /*-
2  * ===============LICENSE_START================================================
3  * org.onap.dcae
4  * ============================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ============================================================================
7  * This Acumos software file is distributed by AT&T and Tech Mahindra
8  * under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * This file is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ===============LICENSE_END==================================================
19  */
20
21 syntax = "proto3";
22 package geYBmFkDJtafXLpLFWhXwFWZekRqgaGs;
23
24 service Model {
25   rpc add (NumbersIn) returns (NumberOut);
26 }
27
28 message NumbersIn {
29   int64 x = 1;
30   int64 y = 2;
31 }
32
33 message NumberOut {
34   int64 result = 1;
35 }