org.onosproject.t3.api.NetworkConfigNib Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of t3-app Show documentation
Show all versions of t3-app Show documentation
Trellis troubleshooting tools
/*
* Copyright 2020-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.t3.api;
import com.google.common.collect.ImmutableMap;
import org.onosproject.net.config.Config;
import org.onosproject.net.config.basics.InterfaceConfig;
import org.onosproject.segmentrouting.config.SegmentRoutingDeviceConfig;
import org.slf4j.Logger;
import java.util.Map;
import static org.slf4j.LoggerFactory.getLogger;
/**
* Represents Network Information Base (NIB) for network configurations
* and supports alternative functions to
* {@link org.onosproject.net.config.NetworkConfigService} for offline data.
*/
public class NetworkConfigNib extends AbstractNib {
private static final Logger log = getLogger(NetworkConfigNib.class);
// Map of str ConnectPoint : InterfaceConfig
private Map portConfigMap;
// Map of str DeviceId : SegmentRoutingDeviceConfig
private Map deviceConfigMap;
// use the singleton helper to create the instance
protected NetworkConfigNib() {
}
/**
* Sets a map of port : configuration to the port.
*
* @param portConfigMap port-config map
*/
public void setPortConfigMap(Map portConfigMap) {
this.portConfigMap = portConfigMap;
}
/**
* Sets a map of device : configuration to the device.
*
* @param deviceConfigMap device-config map
*/
public void setDeviceConfigMap(Map deviceConfigMap) {
this.deviceConfigMap = deviceConfigMap;
}
/**
* Returns the port-config map.
*
* @return port-config map
*/
public Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy