blob: ad401a1377f84d300a53ab0be27691ec25acd448 [file] [log] [blame]
Brian Stanke2b4f32d2016-02-03 14:22:10 -05001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Brian Stanke2b4f32d2016-02-03 14:22:10 -05003 *
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
Claudine Chiu31ad5272016-02-17 20:56:24 +000017package org.onosproject.net.key;
Brian Stanke2b4f32d2016-02-03 14:22:10 -050018
Thomas Vachuska48448082016-02-19 22:14:54 -080019import org.onlab.util.Identifier;
Brian Stanke2b4f32d2016-02-03 14:22:10 -050020
21/**
Thomas Vachuska48448082016-02-19 22:14:54 -080022 * Device key identifier backed by a string value.
Brian Stanke2b4f32d2016-02-03 14:22:10 -050023 */
Thomas Vachuska48448082016-02-19 22:14:54 -080024public final class DeviceKeyId extends Identifier<String> {
Brian Stanke2b4f32d2016-02-03 14:22:10 -050025
26 /**
27 * Constructor for serialization.
28 */
29 private DeviceKeyId() {
Thomas Vachuska48448082016-02-19 22:14:54 -080030 super();
Brian Stanke2b4f32d2016-02-03 14:22:10 -050031 }
32
33 /**
34 * Constructs the ID corresponding to a given string value.
35 *
36 * @param value the underlying value of this ID
37 */
38 private DeviceKeyId(String value) {
Thomas Vachuska48448082016-02-19 22:14:54 -080039 super(value);
Brian Stanke2b4f32d2016-02-03 14:22:10 -050040 }
41
42 /**
Thomas Vachuska48448082016-02-19 22:14:54 -080043 * Creates a new device key identifier.
Brian Stanke2b4f32d2016-02-03 14:22:10 -050044 *
Thomas Vachuska48448082016-02-19 22:14:54 -080045 * @param id backing identifier value
Brian Stanke2b4f32d2016-02-03 14:22:10 -050046 * @return device key identifier
47 */
Thomas Vachuska48448082016-02-19 22:14:54 -080048 public static DeviceKeyId deviceKeyId(String id) {
Brian Stanke2b4f32d2016-02-03 14:22:10 -050049 return new DeviceKeyId(id);
50 }
51
Brian Stanke2b4f32d2016-02-03 14:22:10 -050052}