blob: 2c2393ca03441083324007270ad404de68ca2d03 [file] [log] [blame]
Jordan Halterman95feda02018-07-02 17:40:31 -07001/*
2 * Copyright 2018-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.proxytest;
17
18import java.util.concurrent.CompletableFuture;
19
20/**
21 * Test proxy interface.
22 */
23public interface TestProxy {
24
25 /**
26 * Synchronous test method.
27 *
28 * @param arg the test argument
29 * @return the test result
30 */
31 String testSync(String arg);
32
33 /**
34 * Asynchronous test method.
35 *
36 * @param arg the test argument
37 * @return the test result
38 */
39 CompletableFuture<String> testAsync(String arg);
40
41}