
es.tid.netManager.uni.DeleteLSP Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-emulator Show documentation
Show all versions of network-emulator Show documentation
Emulator of GMPLS-controlled transport Network
The newest version!
package es.tid.netManager.uni;
import java.net.Inet4Address;
import java.util.LinkedList;
public class DeleteLSP extends DispatcherObjects{
private Inet4Address nodeToChange;
private String interfaz;
private String lspName;
private LinkedList path;
public DeleteLSP(Inet4Address nodeToChange, String interfaz, String lspName, LinkedList path){
this.nodeToChange = nodeToChange;
this.interfaz = interfaz;
this.lspName = lspName;
this.path = path;
super.setType(5);
}
public boolean executeChange(){
return true;
}
public Inet4Address getNodeToChange() {
return nodeToChange;
}
public void setNodeToChange(Inet4Address nodeToChange) {
this.nodeToChange = nodeToChange;
}
public String getInterfaz() {
return interfaz;
}
public void setInterfaz(String interfaz) {
this.interfaz = interfaz;
}
public String getLspName() {
return lspName;
}
public void setLspName(String lspName) {
this.lspName = lspName;
}
public LinkedList getPath() {
return path;
}
public void setPath(LinkedList path) {
this.path = path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy