blob: ad1fbaae8903db4af4792d13ffcc63828e9dc20a [file] [log] [blame]
Daniele Moro8d630f12021-06-15 20:53:22 +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
tosinski36ba33a2021-11-22 16:53:00 +010017package org.onosproject.net.behaviour.upf;
18
19import com.google.common.annotations.Beta;
20
Daniele Moro8d630f12021-06-15 20:53:22 +020021/**
tosinski36ba33a2021-11-22 16:53:00 +010022 * Abstraction of a UPF entity used to interact with the UPF-programmable device.
Daniele Moro8d630f12021-06-15 20:53:22 +020023 */
tosinski36ba33a2021-11-22 16:53:00 +010024@Beta
25public interface UpfEntity {
26 /**
27 * Returns the type of this entity.
28 *
29 * @return entity type
30 */
31 UpfEntityType type();
32}