Javadoc fixes.
Change-Id: Ic2cef19a6f1af9916c8615c9319cc122d9da5383
Showing
6 changed files
with
7 additions
and
1 deletions
| ... | @@ -90,6 +90,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent { | ... | @@ -90,6 +90,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent { |
| 90 | * @param treatment action | 90 | * @param treatment action |
| 91 | * @param links traversed links | 91 | * @param links traversed links |
| 92 | * @param egressPoints Set of egress point | 92 | * @param egressPoints Set of egress point |
| 93 | + * @param constraints the constraints | ||
| 93 | * @throws NullPointerException {@code path} is null | 94 | * @throws NullPointerException {@code path} is null |
| 94 | */ | 95 | */ |
| 95 | public LinkCollectionIntent(ApplicationId appId, | 96 | public LinkCollectionIntent(ApplicationId appId, | ... | ... |
| ... | @@ -43,6 +43,7 @@ public interface LinkResourceStore { | ... | @@ -43,6 +43,7 @@ public interface LinkResourceStore { |
| 43 | * Releases resources. | 43 | * Releases resources. |
| 44 | * | 44 | * |
| 45 | * @param allocations resources to be released | 45 | * @param allocations resources to be released |
| 46 | + * @return the link resource event | ||
| 46 | */ | 47 | */ |
| 47 | LinkResourceEvent releaseResources(LinkResourceAllocations allocations); | 48 | LinkResourceEvent releaseResources(LinkResourceAllocations allocations); |
| 48 | 49 | ... | ... |
| ... | @@ -15,7 +15,7 @@ public class BlockAllocatorBasedIdGenerator implements IdGenerator { | ... | @@ -15,7 +15,7 @@ public class BlockAllocatorBasedIdGenerator implements IdGenerator { |
| 15 | /** | 15 | /** |
| 16 | * Constructs an ID generator which use {@link IdBlockAllocator} as backend. | 16 | * Constructs an ID generator which use {@link IdBlockAllocator} as backend. |
| 17 | * | 17 | * |
| 18 | - * @param allocator | 18 | + * @param allocator the ID block allocator to use |
| 19 | */ | 19 | */ |
| 20 | protected BlockAllocatorBasedIdGenerator(IdBlockAllocator allocator) { | 20 | protected BlockAllocatorBasedIdGenerator(IdBlockAllocator allocator) { |
| 21 | this.allocator = allocator; | 21 | this.allocator = allocator; | ... | ... |
| ... | @@ -72,6 +72,7 @@ public abstract class FlowModBuilder { | ... | @@ -72,6 +72,7 @@ public abstract class FlowModBuilder { |
| 72 | * | 72 | * |
| 73 | * @param flowRule the flow rule to transform into a flow mod | 73 | * @param flowRule the flow rule to transform into a flow mod |
| 74 | * @param factory the OpenFlow factory to use to build the flow mod | 74 | * @param factory the OpenFlow factory to use to build the flow mod |
| 75 | + * @param xid the transaction ID | ||
| 75 | * @return the new flow mod builder | 76 | * @return the new flow mod builder |
| 76 | */ | 77 | */ |
| 77 | public static FlowModBuilder builder(FlowRule flowRule, | 78 | public static FlowModBuilder builder(FlowRule flowRule, |
| ... | @@ -92,6 +93,7 @@ public abstract class FlowModBuilder { | ... | @@ -92,6 +93,7 @@ public abstract class FlowModBuilder { |
| 92 | * | 93 | * |
| 93 | * @param flowRule the flow rule to transform into a flow mod | 94 | * @param flowRule the flow rule to transform into a flow mod |
| 94 | * @param factory the OpenFlow factory to use to build the flow mod | 95 | * @param factory the OpenFlow factory to use to build the flow mod |
| 96 | + * @param xid the transaction ID | ||
| 95 | */ | 97 | */ |
| 96 | protected FlowModBuilder(FlowRule flowRule, OFFactory factory, Optional<Long> xid) { | 98 | protected FlowModBuilder(FlowRule flowRule, OFFactory factory, Optional<Long> xid) { |
| 97 | this.factory = factory; | 99 | this.factory = factory; | ... | ... |
| ... | @@ -62,6 +62,7 @@ public class FlowModBuilderVer10 extends FlowModBuilder { | ... | @@ -62,6 +62,7 @@ public class FlowModBuilderVer10 extends FlowModBuilder { |
| 62 | * | 62 | * |
| 63 | * @param flowRule the flow rule to transform into a flow mod | 63 | * @param flowRule the flow rule to transform into a flow mod |
| 64 | * @param factory the OpenFlow factory to use to build the flow mod | 64 | * @param factory the OpenFlow factory to use to build the flow mod |
| 65 | + * @param xid the transaction ID | ||
| 65 | */ | 66 | */ |
| 66 | protected FlowModBuilderVer10(FlowRule flowRule, | 67 | protected FlowModBuilderVer10(FlowRule flowRule, |
| 67 | OFFactory factory, Optional<Long> xid) { | 68 | OFFactory factory, Optional<Long> xid) { | ... | ... |
| ... | @@ -70,6 +70,7 @@ public class FlowModBuilderVer13 extends FlowModBuilder { | ... | @@ -70,6 +70,7 @@ public class FlowModBuilderVer13 extends FlowModBuilder { |
| 70 | * | 70 | * |
| 71 | * @param flowRule the flow rule to transform into a flow mod | 71 | * @param flowRule the flow rule to transform into a flow mod |
| 72 | * @param factory the OpenFlow factory to use to build the flow mod | 72 | * @param factory the OpenFlow factory to use to build the flow mod |
| 73 | + * @param xid the transaction ID | ||
| 73 | */ | 74 | */ |
| 74 | protected FlowModBuilderVer13(FlowRule flowRule, OFFactory factory, Optional<Long> xid) { | 75 | protected FlowModBuilderVer13(FlowRule flowRule, OFFactory factory, Optional<Long> xid) { |
| 75 | super(flowRule, factory, xid); | 76 | super(flowRule, factory, xid); | ... | ... |
-
Please register or login to post a comment