1 package org.openkilda.service;
12 import org.springframework.beans.factory.annotation.Autowired;
13 import org.springframework.stereotype.Service;
33 return switchIntegrationService.getSwitches();
43 return switchIntegrationService.getIslLinks();
54 List<LinkProps> linkPropsList = switchIntegrationService.getIslLinkProps(keys);
55 return (linkPropsList != null && !linkPropsList.isEmpty()) ? linkPropsList.get(0) : null;
65 return switchIntegrationService.updateIslLinkProps(keys);
75 return switchIntegrationService.getSwitchRules(switchId);
87 return switchIntegrationService.configurePort(switchId,
port, configuration);
ConfiguredPort configurePort(String switchId, String port, PortConfiguration configuration)
List< SwitchInfo > getSwitches()
LinkProps getLinkProps(LinkProps keys)
String updateLinkProps(List< LinkProps > keys)
String getSwitchRules(String switchId)
List< IslLinkInfo > getIslLinks()