Committed by
Gerrit Code Review
Javadoc warning fixes
Change-Id: I30b3398b849da5d528f2bce58004d190ca17ad50
Showing
8 changed files
with
10 additions
and
3 deletions
... | @@ -136,6 +136,7 @@ public class CordVtnRuleInstaller { | ... | @@ -136,6 +136,7 @@ public class CordVtnRuleInstaller { |
136 | * @param deviceService device service | 136 | * @param deviceService device service |
137 | * @param driverService driver service | 137 | * @param driverService driver service |
138 | * @param groupService group service | 138 | * @param groupService group service |
139 | + * @param configRegistry config registry | ||
139 | * @param tunnelType tunnel type | 140 | * @param tunnelType tunnel type |
140 | */ | 141 | */ |
141 | public CordVtnRuleInstaller(ApplicationId appId, | 142 | public CordVtnRuleInstaller(ApplicationId appId, | ... | ... |
... | @@ -84,7 +84,7 @@ public interface OpenstackRoutingService { | ... | @@ -84,7 +84,7 @@ public interface OpenstackRoutingService { |
84 | * Checks floatingIp deassociation when corresponding deleted vm. | 84 | * Checks floatingIp deassociation when corresponding deleted vm. |
85 | * | 85 | * |
86 | * @param portId Deleted vm | 86 | * @param portId Deleted vm |
87 | - * @param portInfo | 87 | + * @param portInfo stored information about deleted vm |
88 | */ | 88 | */ |
89 | void checkDisassociatedFloatingIp(String portId, OpenstackPortInfo portInfo); | 89 | void checkDisassociatedFloatingIp(String portId, OpenstackPortInfo portInfo); |
90 | } | 90 | } | ... | ... |
... | @@ -508,6 +508,7 @@ public class OpenstackRoutingRulePopulator { | ... | @@ -508,6 +508,7 @@ public class OpenstackRoutingRulePopulator { |
508 | * Removes flow rules for floating ip configuration. | 508 | * Removes flow rules for floating ip configuration. |
509 | * | 509 | * |
510 | * @param floatingIP Corresponding floating ip information | 510 | * @param floatingIP Corresponding floating ip information |
511 | + * @param portInfo stored information about deleted vm | ||
511 | */ | 512 | */ |
512 | public void removeFloatingIpRules(OpenstackFloatingIP floatingIP, OpenstackPortInfo portInfo) { | 513 | public void removeFloatingIpRules(OpenstackFloatingIP floatingIP, OpenstackPortInfo portInfo) { |
513 | TrafficSelector.Builder sOutgoingBuilder = DefaultTrafficSelector.builder(); | 514 | TrafficSelector.Builder sOutgoingBuilder = DefaultTrafficSelector.builder(); | ... | ... |
... | @@ -92,8 +92,8 @@ public interface DeviceProperties { | ... | @@ -92,8 +92,8 @@ public interface DeviceProperties { |
92 | * Value: a list of ports, which are bound to the subnet | 92 | * Value: a list of ports, which are bound to the subnet |
93 | * | 93 | * |
94 | * @param deviceId device identifier | 94 | * @param deviceId device identifier |
95 | + * @throws DeviceConfigNotFoundException if the device configuration is not found | ||
95 | * @return a map that contains all subnet-to-ports mapping of given device | 96 | * @return a map that contains all subnet-to-ports mapping of given device |
96 | - * @throws DeviceConfigNotFoundException | ||
97 | */ | 97 | */ |
98 | Map<Ip4Prefix, List<PortNumber>> getSubnetPortsMap(DeviceId deviceId) | 98 | Map<Ip4Prefix, List<PortNumber>> getSubnetPortsMap(DeviceId deviceId) |
99 | throws DeviceConfigNotFoundException; | 99 | throws DeviceConfigNotFoundException; | ... | ... |
... | @@ -161,6 +161,7 @@ public class FlowsListCommand extends AbstractShellCommand { | ... | @@ -161,6 +161,7 @@ public class FlowsListCommand extends AbstractShellCommand { |
161 | * | 161 | * |
162 | * @param deviceService device service | 162 | * @param deviceService device service |
163 | * @param service flow rule service | 163 | * @param service flow rule service |
164 | + * @param coreService core service | ||
164 | * @return sorted device list | 165 | * @return sorted device list |
165 | */ | 166 | */ |
166 | protected SortedMap<Device, List<FlowEntry>> getSortedFlows(DeviceService deviceService, | 167 | protected SortedMap<Device, List<FlowEntry>> getSortedFlows(DeviceService deviceService, | ... | ... |
... | @@ -66,7 +66,7 @@ public class Route { | ... | @@ -66,7 +66,7 @@ public class Route { |
66 | * | 66 | * |
67 | * @param source route source | 67 | * @param source route source |
68 | * @param prefix IP prefix | 68 | * @param prefix IP prefix |
69 | - * @param nextHop | 69 | + * @param nextHop net hop IP address |
70 | */ | 70 | */ |
71 | public Route(Source source, IpPrefix prefix, IpAddress nextHop) { | 71 | public Route(Source source, IpPrefix prefix, IpAddress nextHop) { |
72 | checkNotNull(prefix); | 72 | checkNotNull(prefix); | ... | ... |
... | @@ -343,6 +343,8 @@ public class NetconfDeviceProvider extends AbstractProvider | ... | @@ -343,6 +343,8 @@ public class NetconfDeviceProvider extends AbstractProvider |
343 | /** | 343 | /** |
344 | * Return the DeviceId about the device containing the URI. | 344 | * Return the DeviceId about the device containing the URI. |
345 | * | 345 | * |
346 | + * @param ip IP address | ||
347 | + * @param port port number | ||
346 | * @return DeviceId | 348 | * @return DeviceId |
347 | */ | 349 | */ |
348 | public DeviceId getDeviceId(String ip, int port) { | 350 | public DeviceId getDeviceId(String ip, int port) { | ... | ... |
... | @@ -47,6 +47,8 @@ public class UiTopoSession { | ... | @@ -47,6 +47,8 @@ public class UiTopoSession { |
47 | 47 | ||
48 | /** | 48 | /** |
49 | * Creates a new topology layout. | 49 | * Creates a new topology layout. |
50 | + * @param username user name | ||
51 | + * @param webSocket web socket | ||
50 | */ | 52 | */ |
51 | public UiTopoSession(String username, UiWebSocket webSocket) { | 53 | public UiTopoSession(String username, UiWebSocket webSocket) { |
52 | this.username = username; | 54 | this.username = username; | ... | ... |
-
Please register or login to post a comment