blob: 866938830b6d33d5c8717fa32eec296b2d3b27ff [file] [log] [blame]
Carmelo Casconeb2e3dba2017-07-27 12:07:09 -04001/*
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 */
16
17package org.onosproject.net.pi.runtime;
18
19import com.google.common.annotations.Beta;
20import org.onlab.util.Identifier;
21
22/**
23 * Identifier of a member of an action group in a protocol-independent pipeline.
24 */
25@Beta
26public final class PiActionGroupMemberId extends Identifier<Integer> implements PiTableAction {
27
28 private PiActionGroupMemberId(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 PiActionGroupMemberId of(int id) {
39 return new PiActionGroupMemberId(id);
40 }
41
42 /*
43 In P4Runtime, group members can be referenced directly as table actions.
44 In future we should consider having a more appropriate wrapper class for group member IDs, instead of implementing
45 the PiTableAction interface.
46 */
47 @Override
48 public Type type() {
49 return Type.GROUP_MEMBER_ID;
50 }
51}