blob: 03cbc9cb8577fe8984c46fb8c5122e1c1f18d986 [file] [log] [blame]
Thomas Vachuska48448082016-02-19 22:14:54 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Thomas Vachuska48448082016-02-19 22:14:54 -08003 *
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.region;
18
19import org.onlab.util.Identifier;
20
Jordan Halterman0d89ea32017-06-13 10:42:36 -070021import static com.google.common.base.Preconditions.checkArgument;
22
Thomas Vachuska48448082016-02-19 22:14:54 -080023/**
24 * Region identifier backed by a string value.
25 */
26public final class RegionId extends Identifier<String> {
27
Jordan Halterman0d89ea32017-06-13 10:42:36 -070028 private static final int REGION_MAX_LENGTH = 1024;
29
Thomas Vachuska48448082016-02-19 22:14:54 -080030 /**
31 * Constructor for serialization.
32 */
33 private RegionId() {
34 super();
35 }
36
37 /**
38 * Constructs the ID corresponding to a given string value.
39 *
40 * @param value the underlying value of this ID
41 */
42 private RegionId(String value) {
43 super(value);
Jordan Halterman0d89ea32017-06-13 10:42:36 -070044 if (value != null) {
45 checkArgument(value.length() <= REGION_MAX_LENGTH, "value exceeds maximum length " + REGION_MAX_LENGTH);
46 }
Thomas Vachuska48448082016-02-19 22:14:54 -080047 }
48
49 /**
50 * Creates a new region identifier.
51 *
52 * @param id backing identifier value
53 * @return region identifier
54 */
55 public static RegionId regionId(String id) {
56 return new RegionId(id);
57 }
58
59}