blob: 159adb0a6712d37dc9f0113ce6d41875eca9cd57 [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;
Daniele Moro668b3d92021-07-05 23:37:36 +020021import org.onosproject.net.flow.FlowRule;
Daniele Moro5e66f982021-06-11 16:41:48 +020022
Daniele Moro5e66f982021-06-11 16:41:48 +020023/**
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();
Daniele Moro668b3d92021-07-05 23:37:36 +020038
39
40 /**
41 * Checks if the given flow rule has been generated by this UPF behaviour.
42 *
43 * @param flowRule the flow rule to check
44 * @return True if the given flow rule has been created by this UPF behaviour, False otherwise.
45 */
46 boolean fromThisUpf(FlowRule flowRule);
Daniele Moro5e66f982021-06-11 16:41:48 +020047}