blob: ea8ca6f3fa6f40e38974be851b706030bb8237f5 [file] [log] [blame]
FrankWang2674e452018-05-24 17:13:35 +08001/*
2 * Copyright 2018-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 register in a protocol-independent pipeline, unique within the scope of a pipeline model.
27 */
28@Beta
29public final class PiRegisterId extends Identifier<String> {
30
31 private PiRegisterId(String name) {
32 super(name);
33 }
34
35 /**
36 * Returns an identifier for the given register name.
37 *
38 * @param name register name
39 * @return register ID
40 */
41 public static PiRegisterId of(String name) {
42 checkNotNull(name);
43 checkArgument(!name.isEmpty(), "Name can't be empty");
44 return new PiRegisterId(name);
45 }
46}