blob: b604237bafcbc23c4ead9ca8f413a7f7742a3b92 [file] [log] [blame]
Carmelo Casconeb2e3dba2017-07-27 12:07:09 -04001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Carmelo Casconeb2e3dba2017-07-27 12:07:09 -04003 *
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.runtime;
18
19import com.google.common.annotations.Beta;
20import org.onlab.util.Identifier;
21
22/**
Carmelo Cascone87892e22017-11-13 16:01:29 -080023 * Identifier of an action group in a protocol-independent pipeline, unique within the scope of an action profile.
Carmelo Casconeb2e3dba2017-07-27 12:07:09 -040024 */
25@Beta
26public final class PiActionGroupId extends Identifier<Integer> implements PiTableAction {
27
28 private PiActionGroupId(int id) {
29 super(id);
30 }
31
32 /**
33 * Returns an action group identifier for the given integer value.
34 *
35 * @param id identifier
36 * @return action group
37 */
38 public static PiActionGroupId of(int id) {
39 return new PiActionGroupId(id);
40 }
41
42 /*
43 In P4Runtime, groups can be referenced directly as table actions (i.e. without invoking the selector).
44 In future we should consider having a more appropriate wrapper class for group IDs, instead of implementing
45 the PiTableAction interface.
46 */
47 @Override
48 public Type type() {
49 return Type.ACTION_GROUP_ID;
50 }
51}