Fix Javadoc warnings
Change-Id: I2975b3d7bb581d5574969037e1f99401b94ef3dc
Showing
3 changed files
with
5 additions
and
0 deletions
| ... | @@ -28,7 +28,9 @@ public interface DemoAPI { | ... | @@ -28,7 +28,9 @@ public interface DemoAPI { |
| 28 | 28 | ||
| 29 | /** | 29 | /** |
| 30 | * Tests flow subsystem based on the parameters supplied. | 30 | * Tests flow subsystem based on the parameters supplied. |
| 31 | + * | ||
| 31 | * @param params the test parameters | 32 | * @param params the test parameters |
| 33 | + * @return JSON representation | ||
| 32 | */ | 34 | */ |
| 33 | JsonNode flowTest(Optional<JsonNode> params); | 35 | JsonNode flowTest(Optional<JsonNode> params); |
| 34 | 36 | ... | ... |
| ... | @@ -54,6 +54,7 @@ public class CompletedBatchOperation implements BatchOperationResult<FlowRule> { | ... | @@ -54,6 +54,7 @@ public class CompletedBatchOperation implements BatchOperationResult<FlowRule> { |
| 54 | * | 54 | * |
| 55 | * @param success indicates whether the completion is successful. | 55 | * @param success indicates whether the completion is successful. |
| 56 | * @param failures set of any failures encountered | 56 | * @param failures set of any failures encountered |
| 57 | + * @param deviceId device id | ||
| 57 | */ | 58 | */ |
| 58 | public CompletedBatchOperation(boolean success, Set<? extends FlowRule> failures, | 59 | public CompletedBatchOperation(boolean success, Set<? extends FlowRule> failures, |
| 59 | DeviceId deviceId) { | 60 | DeviceId deviceId) { | ... | ... |
| ... | @@ -10,6 +10,8 @@ public interface DatabaseService { | ... | @@ -10,6 +10,8 @@ public interface DatabaseService { |
| 10 | /** | 10 | /** |
| 11 | * Creates a ConsistentMap. | 11 | * Creates a ConsistentMap. |
| 12 | * | 12 | * |
| 13 | + * @param <K> Key type | ||
| 14 | + * @param <V> value type | ||
| 13 | * @param name map name | 15 | * @param name map name |
| 14 | * @param serializer serializer to use for serializing keys and values. | 16 | * @param serializer serializer to use for serializing keys and values. |
| 15 | * @return consistent map. | 17 | * @return consistent map. | ... | ... |
-
Please register or login to post a comment