blob: b522e6c771879705a1971221b3ca73030280062f [file] [log] [blame]
/*
* Copyright 2016-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.routeservice;
import java.util.Objects;
/**
* Identifier for a routing table.
*/
public class RouteTableId {
private final String name;
/**
* Creates a new route table ID.
*
* @param name unique name for the route table
*/
public RouteTableId(String name) {
this.name = name;
}
/**
* Returns the name of the route table.
*
* @return table name
*/
public String name() {
return name;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj instanceof RouteTableId) {
RouteTableId that = (RouteTableId) obj;
return Objects.equals(this.name, that.name);
}
return false;
}
@Override
public int hashCode() {
return Objects.hash(name);
}
@Override
public String toString() {
return name;
}
}