blob: 7496e978c53f6b752b3d548ad0ec9cf73feff285 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.flow.instructions;
tom8bb16062014-09-12 14:47:46 -070017
18/**
19 * Abstraction of a single traffic treatment step.
20 */
alshabib030111e2014-09-15 15:56:42 -070021public interface Instruction {
tom8bb16062014-09-12 14:47:46 -070022
23 /**
24 * Represents the type of traffic treatment.
25 */
Sho SHIMIZUd1506202015-05-05 10:43:08 -070026 enum Type {
tom8bb16062014-09-12 14:47:46 -070027 /**
28 * Signifies that the traffic should be dropped.
29 */
30 DROP,
31
32 /**
33 * Signifies that the traffic should be output to a port.
34 */
35 OUTPUT,
36
37 /**
Saurav Das86af8f12015-05-25 23:55:33 -070038 * Signifies that traffic should be sent out of a group.
tom8bb16062014-09-12 14:47:46 -070039 */
40 GROUP,
41
42 /**
Marc De Leenheer49087752014-10-23 13:54:09 -070043 * Signifies that the traffic should be modified in L0 way.
44 */
45 L0MODIFICATION,
46
47 /**
alshabib35edb1a2014-09-16 17:44:44 -070048 * Signifies that the traffic should be modified in L2 way.
tom8bb16062014-09-12 14:47:46 -070049 */
alshabib35edb1a2014-09-16 17:44:44 -070050 L2MODIFICATION,
51
52 /**
alshabib9af70072015-02-09 14:34:16 -080053 * Signifies that the traffic should be passed to another table.
54 */
55 TABLE,
56
57 /**
alshabib35edb1a2014-09-16 17:44:44 -070058 * Signifies that the traffic should be modified in L3 way.
59 */
Saurav Das86af8f12015-05-25 23:55:33 -070060 L3MODIFICATION,
61
62 /**
63 * Signifies that metadata be attached to traffic.
64 */
Hyunsun Moon9fed5282015-07-16 17:55:22 -070065 METADATA,
66
67 /**
68 * Signifies that the traffic should be modified in L4 way.
69 */
70 L4MODIFICATION
tom8bb16062014-09-12 14:47:46 -070071 }
72
alshabib1d4cace2014-09-13 19:16:26 -070073 /**
alshabib89e43ef2014-09-16 10:36:34 -070074 * Returns the type of instruction.
alshabib1d4cace2014-09-13 19:16:26 -070075 * @return type of instruction
76 */
Sho SHIMIZUd1506202015-05-05 10:43:08 -070077 Type type();
alshabib1d4cace2014-09-13 19:16:26 -070078
tom8bb16062014-09-12 14:47:46 -070079}