Open Kilda Java Documentation
SimulatorCommands.java
Go to the documentation of this file.
1 package org.openkilda.simulator.classes;
2 
3 public class SimulatorCommands {
4  public static final String DO_PORT_MOD = "DO_PORT_MOD";
5  public static final String DO_SWITCH_MOD = "DO_SWITCH_MOD";
6  public static final String DO_ADD_SWITCH = "DO_ADD_SWITCH";
7  public static final String DO_ADD_LINK = "DO_ADD_LINK";
8  public static final String DO_REMOVE_SWITCH = "DO_REMOVE_SWITCH";
9  public static final String DO_GET_FLOWS = "DO_GET_FLOWS";
10  public static final String DO_GET_PORT_STATS = "DO_GET_PORT_STATS";
11  public static final String DO_GET_PORT_STATUS = "DO_GET_PORT_STATUS";
12  public static final String DO_GET_SWITCH_STATUS = "DO_GET_SWITCH_STATUS";
13  public static final String TOPOLOGY = "TOPOLOGY";
14 }