blob: c222fe636a8c75787e9ec4929e7f14062ee811d1 [file] [log] [blame]
Carmelo Cascone59f57de2017-07-11 19:55:09 -04001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Carmelo Cascone59f57de2017-07-11 19:55:09 -04003 *
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 */
16
17package org.onosproject.net.pi.model;
18
19import org.onosproject.net.driver.HandlerBehaviour;
20
21import java.util.Optional;
22import java.util.concurrent.CompletableFuture;
23
24/**
25 * Behavior to program the pipeline of a device.
26 */
27public interface PiPipelineProgrammable extends HandlerBehaviour {
28 /**
29 * Deploys the given pipeconf to the device.
30 *
31 * @param pipeconf pipeconf
32 * @return true if the operation was successful, false otherwise
33 */
34 // TODO: return an explanation of why things went wrong, and the status of the device.
35 CompletableFuture<Boolean> deployPipeconf(PiPipeconf pipeconf);
36
37 /**
38 * Returns the default pipeconf for ths device, to be used when any other pipeconf is not available.
39 *
40 * @return optional pipeconf
41 */
42 Optional<PiPipeconf> getDefaultPipeconf();
43}