blob: b67e1bed04b128e773f4b4637ce4b66a9af2e418 [file] [log] [blame]
samueljcc4a527ed2015-12-03 13:59:49 +08001/*
2 * Copyright 2015 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.driver.extensions;
17
18import org.onosproject.net.flow.instructions.ExtensionTreatment;
19
20/**
21 * The abstraction of Move Treatment.
22 */
23public interface MoveExtensionTreatment extends ExtensionTreatment {
24
25 /**
26 * Returns SRC_OFS field of move extension action.
27 *
28 * @return SRC_OFS
29 */
30 int srcOffset();
31
32 /**
33 * Returns DST_OFS field of move extension action.
34 *
35 * @return DST_OFS
36 */
37 int dstOffset();
38
39 /**
40 * Returns SRC field of move extension action.
41 *
42 * @return SRC
43 */
44 int src();
45
46 /**
47 * Returns DST field of move extension action.
48 *
49 * @return DST
50 */
51 int dst();
52
53 /**
54 * Returns N_BITS field of move extension action.
55 *
56 * @return N_BITS
57 */
58 int nBits();
59}