
org.joyqueue.toolkit.network.Topology Maven / Gradle / Ivy
/**
* Copyright 2019 The JoyQueue Authors.
*
* 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.joyqueue.toolkit.network;
import java.util.List;
/**
* 网络拓扑图
* Created by hexiaofeng on 16-7-6.
*/
public class Topology {
// 数据中心
private List lans;
// 专线
private List> lines;
public Topology(List lans, List> lines) {
this.lans = lans;
this.lines = lines;
}
public List getLans() {
return lans;
}
public List> getLines() {
return lines;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy