mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-05-04 19:56:49 +02:00
Javadoc warning fixes
Change-Id: I30b3398b849da5d528f2bce58004d190ca17ad50
This commit is contained in:
parent
60f6c95406
commit
d4334dbdc1
@ -136,6 +136,7 @@ public class CordVtnRuleInstaller {
|
||||
* @param deviceService device service
|
||||
* @param driverService driver service
|
||||
* @param groupService group service
|
||||
* @param configRegistry config registry
|
||||
* @param tunnelType tunnel type
|
||||
*/
|
||||
public CordVtnRuleInstaller(ApplicationId appId,
|
||||
|
||||
@ -84,7 +84,7 @@ public interface OpenstackRoutingService {
|
||||
* Checks floatingIp deassociation when corresponding deleted vm.
|
||||
*
|
||||
* @param portId Deleted vm
|
||||
* @param portInfo
|
||||
* @param portInfo stored information about deleted vm
|
||||
*/
|
||||
void checkDisassociatedFloatingIp(String portId, OpenstackPortInfo portInfo);
|
||||
}
|
||||
|
||||
@ -508,6 +508,7 @@ public class OpenstackRoutingRulePopulator {
|
||||
* Removes flow rules for floating ip configuration.
|
||||
*
|
||||
* @param floatingIP Corresponding floating ip information
|
||||
* @param portInfo stored information about deleted vm
|
||||
*/
|
||||
public void removeFloatingIpRules(OpenstackFloatingIP floatingIP, OpenstackPortInfo portInfo) {
|
||||
TrafficSelector.Builder sOutgoingBuilder = DefaultTrafficSelector.builder();
|
||||
|
||||
@ -92,8 +92,8 @@ public interface DeviceProperties {
|
||||
* Value: a list of ports, which are bound to the subnet
|
||||
*
|
||||
* @param deviceId device identifier
|
||||
* @throws DeviceConfigNotFoundException if the device configuration is not found
|
||||
* @return a map that contains all subnet-to-ports mapping of given device
|
||||
* @throws DeviceConfigNotFoundException
|
||||
*/
|
||||
Map<Ip4Prefix, List<PortNumber>> getSubnetPortsMap(DeviceId deviceId)
|
||||
throws DeviceConfigNotFoundException;
|
||||
|
||||
@ -161,6 +161,7 @@ public class FlowsListCommand extends AbstractShellCommand {
|
||||
*
|
||||
* @param deviceService device service
|
||||
* @param service flow rule service
|
||||
* @param coreService core service
|
||||
* @return sorted device list
|
||||
*/
|
||||
protected SortedMap<Device, List<FlowEntry>> getSortedFlows(DeviceService deviceService,
|
||||
|
||||
@ -66,7 +66,7 @@ public class Route {
|
||||
*
|
||||
* @param source route source
|
||||
* @param prefix IP prefix
|
||||
* @param nextHop
|
||||
* @param nextHop net hop IP address
|
||||
*/
|
||||
public Route(Source source, IpPrefix prefix, IpAddress nextHop) {
|
||||
checkNotNull(prefix);
|
||||
|
||||
@ -343,6 +343,8 @@ public class NetconfDeviceProvider extends AbstractProvider
|
||||
/**
|
||||
* Return the DeviceId about the device containing the URI.
|
||||
*
|
||||
* @param ip IP address
|
||||
* @param port port number
|
||||
* @return DeviceId
|
||||
*/
|
||||
public DeviceId getDeviceId(String ip, int port) {
|
||||
|
||||
@ -47,6 +47,8 @@ public class UiTopoSession {
|
||||
|
||||
/**
|
||||
* Creates a new topology layout.
|
||||
* @param username user name
|
||||
* @param webSocket web socket
|
||||
*/
|
||||
public UiTopoSession(String username, UiWebSocket webSocket) {
|
||||
this.username = username;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user