blob: a47823ab23dafad9506876e3c020fe42e9dddb6b [file] [log] [blame]
/*
* Copyright 2018-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.segmentrouting.xconnect.api;
import com.google.common.base.MoreObjects;
import java.util.Objects;
import java.util.Set;
/**
* Xconnect description.
*/
public class XconnectDesc {
private XconnectKey key;
private Set<XconnectEndpoint> endpoints;
/**
* Constructs new Xconnect description with given device ID and VLAN ID.
*
* @param key Xconnect key
* @param endpoints set of endpoints
*/
public XconnectDesc(XconnectKey key, Set<XconnectEndpoint> endpoints) {
this.key = key;
this.endpoints = endpoints;
}
/**
* Gets Xconnect key.
*
* @return Xconnect key
*/
public XconnectKey key() {
return key;
}
/**
* Gets endpoints.
*
* @return set of endpoints
*/
public Set<XconnectEndpoint> endpoints() {
return endpoints;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof XconnectDesc)) {
return false;
}
final XconnectDesc other = (XconnectDesc) obj;
return Objects.equals(this.key, other.key) &&
Objects.equals(this.endpoints, other.endpoints);
}
@Override
public int hashCode() {
return Objects.hash(key, endpoints);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(getClass())
.add("key", key)
.add("endpoints", endpoints)
.toString();
}
}