Fix Javadoc warnings
Change-Id: I2975b3d7bb581d5574969037e1f99401b94ef3dc
Showing
3 changed files
with
6 additions
and
1 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,9 +10,11 @@ public interface DatabaseService { | ... | @@ -10,9 +10,11 @@ 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. |
16 | */ | 18 | */ |
17 | <K, V> ConsistentMap<K , V> createConsistentMap(String name, StoreSerializer serializer); | 19 | <K, V> ConsistentMap<K , V> createConsistentMap(String name, StoreSerializer serializer); |
18 | -} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
20 | +} | ... | ... |
-
Please register or login to post a comment