Fixed a few javadoc warnings.
Change-Id: I554712727fdf0b68ea461bd8ab909022037da1cd
Showing
1 changed file
with
4 additions
and
3 deletions
... | @@ -22,7 +22,8 @@ import org.onosproject.net.PortNumber; | ... | @@ -22,7 +22,8 @@ import org.onosproject.net.PortNumber; |
22 | import org.onosproject.net.flow.TrafficTreatment; | 22 | import org.onosproject.net.flow.TrafficTreatment; |
23 | import org.onosproject.core.GroupId; | 23 | import org.onosproject.core.GroupId; |
24 | 24 | ||
25 | -/* Group bucket implementation. A group bucket is collection of | 25 | +/** |
26 | + * Group bucket implementation. A group bucket is collection of | ||
26 | * instructions that can be performed on a traffic flow. A select | 27 | * instructions that can be performed on a traffic flow. A select |
27 | * Group can have one or more Buckets where traffic will be | 28 | * Group can have one or more Buckets where traffic will be |
28 | * processed by a single bucket in the group, based on device | 29 | * processed by a single bucket in the group, based on device |
... | @@ -46,7 +47,7 @@ public final class DefaultGroupBucket implements GroupBucket { | ... | @@ -46,7 +47,7 @@ public final class DefaultGroupBucket implements GroupBucket { |
46 | * @param treatment traffic treatment associated with group bucket | 47 | * @param treatment traffic treatment associated with group bucket |
47 | * @param weight optional weight associated with group bucket | 48 | * @param weight optional weight associated with group bucket |
48 | * @param watchPort port that determines the liveness of group bucket | 49 | * @param watchPort port that determines the liveness of group bucket |
49 | - * @param watchPort group that determines the liveness of group bucket | 50 | + * @param watchGroup group that determines the liveness of group bucket |
50 | */ | 51 | */ |
51 | private DefaultGroupBucket(GroupDescription.Type type, | 52 | private DefaultGroupBucket(GroupDescription.Type type, |
52 | TrafficTreatment treatment, | 53 | TrafficTreatment treatment, |
... | @@ -119,7 +120,7 @@ public final class DefaultGroupBucket implements GroupBucket { | ... | @@ -119,7 +120,7 @@ public final class DefaultGroupBucket implements GroupBucket { |
119 | * | 120 | * |
120 | * @param treatment traffic treatment associated with group bucket | 121 | * @param treatment traffic treatment associated with group bucket |
121 | * @param watchPort port that determines the liveness of group bucket | 122 | * @param watchPort port that determines the liveness of group bucket |
122 | - * @param watchPort group that determines the liveness of group bucket | 123 | + * @param watchGroup group that determines the liveness of group bucket |
123 | * | 124 | * |
124 | * @return failover group bucket object | 125 | * @return failover group bucket object |
125 | */ | 126 | */ | ... | ... |
-
Please register or login to post a comment