blob: ae6f7ca14a6c3d7ddb9049ef65797942a8b4f6d4 [file] [log] [blame]
Carmelo Cascone87892e22017-11-13 16:01:29 -08001/*
2 * Copyright 2017-present Open Networking Foundation
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.model;
18
19import com.google.common.annotations.Beta;
20import org.onlab.util.Identifier;
21
22import static com.google.common.base.Preconditions.checkArgument;
23import static com.google.common.base.Preconditions.checkNotNull;
24
25/**
26 * Identifier of a match field in a protocol-independent pipeline, unique within the scope of a table model.
27 */
28@Beta
29public final class PiMatchFieldId extends Identifier<String> {
30
31 private PiMatchFieldId(String name) {
32 super(name);
33 }
34
35 /**
36 * Returns an identifier for the given match field name.
37 *
38 * @param name match field name
39 * @return match field ID
40 */
41 public static PiMatchFieldId of(String name) {
42 checkNotNull(name);
43 checkArgument(!name.isEmpty(), "Name cannot be empty");
44 return new PiMatchFieldId(name);
45 }
46}