
es.tid.tedb.elements.Path Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of topology Show documentation
Show all versions of topology Show documentation
Traffic Engineering Database, BGP-LS peer, Topology Module
The newest version!
package es.tid.tedb.elements;
import java.util.ArrayList;
public class Path {
//TODO change to enumeration with values working/protection
String pathType;
ArrayList links;
public String toString(){
String temp = "";
if (links!=null){
for (int i=0;i" + links.get(i).getDest() ;
}
return temp;
}
public Path(ArrayList links){
this.links = links;
}
/**
* @return the pathType
*/
public String getPathType() {
return pathType;
}
/**
* @param pathType the pathType to set
*/
public void setPathType(String pathType) {
this.pathType = pathType;
}
/**
* @return the links
*/
public ArrayList getLinks() {
return links;
}
/**
* @param links the links to set
*/
public void setLinks(ArrayList links) {
this.links = links;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy