blob: 6dcce302485216f9a41d53082adc59eb25bfba1b [file] [log] [blame]
Daniele Moro5e66f982021-06-11 16:41:48 +02001/*
2 * Copyright 2021-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 */
16
17package org.onosproject.net.behaviour.upf;
18
19import com.google.common.annotations.Beta;
20import org.onosproject.net.driver.HandlerBehaviour;
21
22
23/**
24 * Provides means to update the device forwarding state to implement a 3GPP
25 * User Plane Function. An implementation of this API should not write state
26 * directly to the device, but instead, always rely on core ONOS subsystems
27 * (e.g., FlowRuleService, GroupService, etc).
28 */
29@Beta
30public interface UpfProgrammable extends HandlerBehaviour, UpfDevice {
31 /**
32 * Apps are expected to call this method as the first one when they are ready
33 * to install PDRs and FARs.
34 *
35 * @return True if initialized, false otherwise.
36 */
37 boolean init();
38}