blob: 6c670097dbca0bfffe0b309098319c97192e6246 [file] [log] [blame]
Michele Santuari38dd82e2017-01-04 09:23:49 +01001/*
2 * Copyright 2016-present Open Networking Laboratory
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.domain;
18
19import org.onlab.util.Identifier;
20
21/**
22 * Representation of a domain identity.
23 */
24public class DomainId extends Identifier<String> {
25
26 /**
27 * Represents the domain directly managed by ONOS.
28 */
29 public static final DomainId LOCAL = domainId("local");
30
31 /**
32 * Constructor of the peer id.
33 *
34 * @param identifier of the peer
35 */
36 public DomainId(String identifier) {
37 super(identifier);
38 }
39
40 /**
41 * Creates a peer id from the string identifier.
42 *
43 * @param identifier string identifier
44 * @return instance of the class DomainId
45 */
46 public static DomainId domainId(String identifier) {
47 return new DomainId(identifier);
48 }
49}