use of org.openkilda.wfm.topology.nbworker.services.SwitchOperationsService in project open-kilda by telstra.
the class SwitchOperationsBolt method init.
@Override
public void init() {
super.init();
this.switchOperationsService = new SwitchOperationsService(repositoryFactory, transactionManager, this, this);
this.flowOperationsService = new FlowOperationsService(repositoryFactory, transactionManager);
}
Aggregations