blob: 3b233a0970d79cf4f3d653a714204afc940c5839 [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 a member of an action group in a protocol-independent pipeline, unique withing the scope on an action
24 * profile.
Carmelo Casconeb2e3dba2017-07-27 12:07:09 -040025 */
26@Beta
27public final class PiActionGroupMemberId extends Identifier<Integer> implements PiTableAction {
28
29 private PiActionGroupMemberId(int id) {
30 super(id);
31 }
32
33 /**
34 * Returns an action group identifier for the given integer value.
35 *
36 * @param id identifier
37 * @return action group
38 */
39 public static PiActionGroupMemberId of(int id) {
40 return new PiActionGroupMemberId(id);
41 }
42
43 /*
44 In P4Runtime, group members can be referenced directly as table actions.
45 In future we should consider having a more appropriate wrapper class for group member IDs, instead of implementing
46 the PiTableAction interface.
47 */
48 @Override
49 public Type type() {
50 return Type.GROUP_MEMBER_ID;
51 }
52}