blob: 81faf05dcbf6d32fc179366a98d4f888d872e00f [file] [log] [blame]
Jian Li136fd6c2017-02-10 14:54:59 +09001/*
2 * Copyright 2017-present Open Networking Laboratory
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 */
16package org.onosproject.mapping.instructions;
17
18/**
19 * Presentation of a single mapping instruction.
20 */
21public interface MappingInstruction {
22
23 /**
24 * Represents the type of mapping instruction.
25 */
26 enum Type {
27
28 /**
29 * Signifies that the traffic should be uni-casted with TE parameters.
30 */
31 UNICAST,
32
33 /**
34 * Signifies that the traffic should be multi-casted with TE parameters.
35 */
36 MULTICAST,
37
38 /**
39 * Signifies that the traffic should be treated with a certain action.
40 */
41 ACTION,
42
43 /**
44 * Signifies that an extension instruction will be used.
45 */
46 EXTENSION
47 }
48
49 /**
50 * Returns the type of instruction.
51 *
52 * @return type of instruction
53 */
54 Type type();
55}