commit | 0dbac7af9e88f3ea23a28c4e35b52424f4c5a8e4 | [log] [tgz] |
---|---|---|
author | Madan Jampani <madan@onlab.us> | Thu Jun 25 10:37:45 2015 -0700 |
committer | Madan Jampani <madan@onlab.us> | Thu Jun 25 11:40:30 2015 -0700 |
tree | 64811bb5a2342bb9c3342a42f6441e291637d268 | |
parent | 74d32fdb14f8ccda88e01a856fedea215a5f983f [diff] |
Fix javadoc warnings Change-Id: I156c861729fd48d5e6792f810c342e1579482c04
diff --git a/core/api/src/main/java/org/onosproject/net/edge/EdgePortService.java b/core/api/src/main/java/org/onosproject/net/edge/EdgePortService.java index 44e4b66..94ab611 100644 --- a/core/api/src/main/java/org/onosproject/net/edge/EdgePortService.java +++ b/core/api/src/main/java/org/onosproject/net/edge/EdgePortService.java
@@ -45,6 +45,7 @@ /** * Returns a collection of all edge point for the specified device. * + * @param deviceId device identifier * @return iterable collection of all edge points for the device */ Iterable<ConnectPoint> getEdgePoint(DeviceId deviceId);
diff --git a/core/api/src/main/java/org/onosproject/net/flowobjective/ObjectiveContext.java b/core/api/src/main/java/org/onosproject/net/flowobjective/ObjectiveContext.java index c6db17f..f3d23e4 100644 --- a/core/api/src/main/java/org/onosproject/net/flowobjective/ObjectiveContext.java +++ b/core/api/src/main/java/org/onosproject/net/flowobjective/ObjectiveContext.java
@@ -39,6 +39,7 @@ * Invoked when error is encountered while executing the flow objective. * * @param objective objective to execute + * @param error error encountered */ default void onError(Objective objective, ObjectiveError error) { }
diff --git a/core/api/src/main/java/org/onosproject/store/service/Versioned.java b/core/api/src/main/java/org/onosproject/store/service/Versioned.java index fb6a78b..f0e70bd 100644 --- a/core/api/src/main/java/org/onosproject/store/service/Versioned.java +++ b/core/api/src/main/java/org/onosproject/store/service/Versioned.java
@@ -91,6 +91,7 @@ * Maps this instance into another after transforming its * value while retaining the same version and creationTime. * @param transformer function to mapping the value + * @param <U> value type of the returned instance * @return mapped instance */ public <U> Versioned<U> map(Function<V, U> transformer) {