blob: 5ff6cae8c9e2b37d4669e85116b8c46e0bbb7045 [file] [log] [blame]
Yi Tseng82512da2017-08-16 19:46:36 -07001/*
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
Carmelo Cascone87892e22017-11-13 16:01:29 -080017package org.onosproject.net.pi.model;
Yi Tseng82512da2017-08-16 19:46:36 -070018
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 profile in a protocol-independent pipeline, unique withing the scope of a pipeline model.
Yi Tseng82512da2017-08-16 19:46:36 -070024 */
25@Beta
26public final class PiActionProfileId extends Identifier<String> {
27
28 private PiActionProfileId(String actionProfileName) {
29 super(actionProfileName);
30 }
31
32 /**
Carmelo Cascone87892e22017-11-13 16:01:29 -080033 * Returns an identifier for the given action profile name.
Yi Tseng82512da2017-08-16 19:46:36 -070034 *
Carmelo Cascone87892e22017-11-13 16:01:29 -080035 * @param name action profile name
36 * @return action profile ID
Yi Tseng82512da2017-08-16 19:46:36 -070037 */
Carmelo Cascone87892e22017-11-13 16:01:29 -080038 public static PiActionProfileId of(String name) {
39 return new PiActionProfileId(name);
Yi Tseng82512da2017-08-16 19:46:36 -070040 }
41}