blob: 2fd718ce879a63a0f1f44d00a2abedf9f790260a [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 Moro909b9582022-01-26 15:47:29 +010022import org.onosproject.net.meter.Meter;
Daniele Moro5e66f982021-06-11 16:41:48 +020023
Daniele Moro5e66f982021-06-11 16:41:48 +020024/**
25 * Provides means to update the device forwarding state to implement a 3GPP
26 * User Plane Function. An implementation of this API should not write state
27 * directly to the device, but instead, always rely on core ONOS subsystems
28 * (e.g., FlowRuleService, GroupService, etc).
29 */
30@Beta
31public interface UpfProgrammable extends HandlerBehaviour, UpfDevice {
32 /**
33 * Apps are expected to call this method as the first one when they are ready
tosinski36ba33a2021-11-22 16:53:00 +010034 * to install any UPF entity.
Daniele Moro5e66f982021-06-11 16:41:48 +020035 *
36 * @return True if initialized, false otherwise.
37 */
38 boolean init();
Daniele Moro668b3d92021-07-05 23:37:36 +020039
Daniele Moro668b3d92021-07-05 23:37:36 +020040 /**
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 Moro909b9582022-01-26 15:47:29 +010047
48 /**
49 * Checks if the given meter has been generated by this UPF behaviour.
50 *
51 * @param meter the meter to check
52 * @return True if the given meter has been created by this UPF behaviour, False otherwise.
53 */
54 boolean fromThisUpf(Meter meter);
Daniele Moro5e66f982021-06-11 16:41:48 +020055}