Madan Jampani

Fix javadoc warnings

Change-Id: I156c861729fd48d5e6792f810c342e1579482c04
...@@ -45,6 +45,7 @@ public interface EdgePortService { ...@@ -45,6 +45,7 @@ public interface EdgePortService {
45 /** 45 /**
46 * Returns a collection of all edge point for the specified device. 46 * Returns a collection of all edge point for the specified device.
47 * 47 *
48 + * @param deviceId device identifier
48 * @return iterable collection of all edge points for the device 49 * @return iterable collection of all edge points for the device
49 */ 50 */
50 Iterable<ConnectPoint> getEdgePoint(DeviceId deviceId); 51 Iterable<ConnectPoint> getEdgePoint(DeviceId deviceId);
......
...@@ -39,6 +39,7 @@ public interface ObjectiveContext { ...@@ -39,6 +39,7 @@ public interface ObjectiveContext {
39 * Invoked when error is encountered while executing the flow objective. 39 * Invoked when error is encountered while executing the flow objective.
40 * 40 *
41 * @param objective objective to execute 41 * @param objective objective to execute
42 + * @param error error encountered
42 */ 43 */
43 default void onError(Objective objective, ObjectiveError error) { 44 default void onError(Objective objective, ObjectiveError error) {
44 } 45 }
......
...@@ -91,6 +91,7 @@ public class Versioned<V> { ...@@ -91,6 +91,7 @@ public class Versioned<V> {
91 * Maps this instance into another after transforming its 91 * Maps this instance into another after transforming its
92 * value while retaining the same version and creationTime. 92 * value while retaining the same version and creationTime.
93 * @param transformer function to mapping the value 93 * @param transformer function to mapping the value
94 + * @param <U> value type of the returned instance
94 * @return mapped instance 95 * @return mapped instance
95 */ 96 */
96 public <U> Versioned<U> map(Function<V, U> transformer) { 97 public <U> Versioned<U> map(Function<V, U> transformer) {
......
...@@ -59,6 +59,7 @@ public class TransactionManager { ...@@ -59,6 +59,7 @@ public class TransactionManager {
59 * Constructs a new TransactionManager for the specified database instance. 59 * Constructs a new TransactionManager for the specified database instance.
60 * 60 *
61 * @param database database 61 * @param database database
62 + * @param mapBuilder builder for ConsistentMap instances
62 */ 63 */
63 public TransactionManager(Database database, ConsistentMapBuilder<Long, Transaction> mapBuilder) { 64 public TransactionManager(Database database, ConsistentMapBuilder<Long, Transaction> mapBuilder) {
64 this.database = checkNotNull(database, "database cannot be null"); 65 this.database = checkNotNull(database, "database cannot be null");
......
...@@ -129,6 +129,7 @@ public class FlowsWebResource extends AbstractWebResource { ...@@ -129,6 +129,7 @@ public class FlowsWebResource extends AbstractWebResource {
129 /** 129 /**
130 * Creates a flow rule from a POST of a JSON string and attempts to apply it. 130 * Creates a flow rule from a POST of a JSON string and attempts to apply it.
131 * 131 *
132 + * @param deviceId device identifier
132 * @param stream input JSON 133 * @param stream input JSON
133 * @return status of the request - CREATED if the JSON is correct, 134 * @return status of the request - CREATED if the JSON is correct,
134 * BAD_REQUEST if the JSON is invalid 135 * BAD_REQUEST if the JSON is invalid
......