blob: 70659a6627afc880ac70d9d67e52d2cedb40b47f [file] [log] [blame]
Carmelo Cascone87892e22017-11-13 16:01:29 -08001/*
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
17package org.onosproject.net.pi.model;
18
19import com.google.common.annotations.Beta;
20
21import java.util.List;
22
23/**
24 * Model of a packet operation in a protocol-independent pipeline.
25 */
26@Beta
27public interface PiPacketOperationModel {
28
29 /**
30 * Returns the type of this packet operation.
31 *
32 * @return packet operation type
33 */
34 PiPacketOperationType type();
35
36 /**
37 * Returns a list of control metadata models for this packet operation. The metadata models are returned in the same
38 * order as they would appear on the control header that is prepended to the packet.
39 *
40 * @return list of packet operation metadata models
41 */
42 List<PiControlMetadataModel> metadatas();
43
44}