Committed by
Gerrit Code Review
Fix javadoc in DeviceAdminService
Change-Id: Ic0c54fdc49f391b1553ba836360e9380b15d1647
Showing
1 changed file
with
7 additions
and
8 deletions
| ... | @@ -32,13 +32,12 @@ public interface DeviceAdminService extends DeviceService { | ... | @@ -32,13 +32,12 @@ public interface DeviceAdminService extends DeviceService { |
| 32 | 32 | ||
| 33 | // TODO: add ability to administratively suspend/resume device | 33 | // TODO: add ability to administratively suspend/resume device |
| 34 | 34 | ||
| 35 | - | 35 | + /** |
| 36 | - /** | 36 | + * Administratively enables or disables a port on a device. |
| 37 | - * Administratively enables or disables a port on a device. | 37 | + * |
| 38 | - * | 38 | + * @param deviceId device identifier |
| 39 | - * @param deviceId device identifier | 39 | + * @param portNumber port identifier |
| 40 | - * @param portNumber port identifier | 40 | + * @param enable true if port is to be enabled, false to disable |
| 41 | - * @param enable true if port is to be enabled, false to disable | 41 | + */ |
| 42 | - */ | ||
| 43 | void changePortState(DeviceId deviceId, PortNumber portNumber, boolean enable); | 42 | void changePortState(DeviceId deviceId, PortNumber portNumber, boolean enable); |
| 44 | } | 43 | } | ... | ... |
-
Please register or login to post a comment