blob: 9fa31edbbbcf86ae181811b1c853814e8a8aa5df [file] [log] [blame]
Carmelo Cascone7f75be42017-09-07 14:37:02 +02001/*
2 * Copyright 2017-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
Carmelo Cascone87892e22017-11-13 16:01:29 -080017package org.onosproject.net.pi.model;
Carmelo Cascone7f75be42017-09-07 14:37:02 +020018
19/**
Carmelo Cascone87892e22017-11-13 16:01:29 -080020 * Types of match+action table in a protocol-independent pipeline.
Carmelo Cascone7f75be42017-09-07 14:37:02 +020021 */
Carmelo Cascone87892e22017-11-13 16:01:29 -080022public enum PiTableType {
23
Carmelo Cascone7f75be42017-09-07 14:37:02 +020024 /**
Carmelo Cascone87892e22017-11-13 16:01:29 -080025 * Regular match+action table.
Carmelo Cascone7f75be42017-09-07 14:37:02 +020026 */
27 DIRECT,
28
29 /**
Carmelo Cascone87892e22017-11-13 16:01:29 -080030 * Implementation-based table, e.g. ECMP table where the action executed depends on a selection function.
Carmelo Cascone7f75be42017-09-07 14:37:02 +020031 */
32 INDIRECT
33}