
es.tid.pce.client.tester.Activity 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.pce.client.tester;
import es.tid.emulator.node.transport.EmulatedPCCPCEPSession;
import es.tid.netManager.NetworkLSPManager;
import es.tid.pce.client.emulator.AutomaticTesterStatistics;
import es.tid.pce.pcep.messages.PCEPRequest;
import es.tid.pce.pcep.messages.PCEPResponse;
import es.tid.vntm.LigthPathManagement;
/**
* Interface to describe an activity you can simulate in the client. The posible activities are:
* - NetworkEmulator
* - VNTM
* @author mcs
*
*/
public interface Activity extends Runnable{
public void addVNTMSession(EmulatedPCCPCEPSession VNTMSession);
public void addNetworkEmulator(NetworkLSPManager networkLSPManager);
public void addStatistics(AutomaticTesterStatistics stats);
public void addRequest(PCEPRequest request);
public void addResponse(PCEPResponse response);
public void addPCEsessionVNTM(EmulatedPCCPCEPSession vNTMSession);
public void addLigthPathManagement(LigthPathManagement ligthPathManagement);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy