Pavlin Radoslavov

Javadoc fixes.

Change-Id: Ic2cef19a6f1af9916c8615c9319cc122d9da5383
......@@ -90,6 +90,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent {
* @param treatment action
* @param links traversed links
* @param egressPoints Set of egress point
* @param constraints the constraints
* @throws NullPointerException {@code path} is null
*/
public LinkCollectionIntent(ApplicationId appId,
......
......@@ -43,6 +43,7 @@ public interface LinkResourceStore {
* Releases resources.
*
* @param allocations resources to be released
* @return the link resource event
*/
LinkResourceEvent releaseResources(LinkResourceAllocations allocations);
......
......@@ -15,7 +15,7 @@ public class BlockAllocatorBasedIdGenerator implements IdGenerator {
/**
* Constructs an ID generator which use {@link IdBlockAllocator} as backend.
*
* @param allocator
* @param allocator the ID block allocator to use
*/
protected BlockAllocatorBasedIdGenerator(IdBlockAllocator allocator) {
this.allocator = allocator;
......
......@@ -72,6 +72,7 @@ public abstract class FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
* @return the new flow mod builder
*/
public static FlowModBuilder builder(FlowRule flowRule,
......@@ -92,6 +93,7 @@ public abstract class FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
*/
protected FlowModBuilder(FlowRule flowRule, OFFactory factory, Optional<Long> xid) {
this.factory = factory;
......
......@@ -62,6 +62,7 @@ public class FlowModBuilderVer10 extends FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
*/
protected FlowModBuilderVer10(FlowRule flowRule,
OFFactory factory, Optional<Long> xid) {
......
......@@ -70,6 +70,7 @@ public class FlowModBuilderVer13 extends FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
*/
protected FlowModBuilderVer13(FlowRule flowRule, OFFactory factory, Optional<Long> xid) {
super(flowRule, factory, xid);
......