blob: 90419032744bf507455a78adf0472cfde1c0154f [file] [log] [blame]
Jian Li44155b02017-02-15 17:03:38 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Jian Li44155b02017-02-15 17:03:38 +09003 *
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.actions;
17
18/**
19 * Presentation of a single mapping action.
20 */
21public interface MappingAction {
22
23 /**
24 * Represents the type of mapping action.
25 */
26 enum Type {
27
28 /**
29 * Signifies that the traffic requires no action.
30 */
31 NO_ACTION,
32
33 /**
34 * Signifies that the traffic requires native forwarding.
35 */
36 NATIVE_FORWARD,
37
38 /**
39 * Signifies that the traffic requires forwarding with mapping information.
40 */
41 FORWARD,
42
43 /**
44 * Signifies that the traffic should be dropped.
45 */
46 DROP
47 }
48
49 /**
50 * Returns the type of mapping action.
51 *
52 * @return type of mapping action
53 */
54 Type type();
55}