Fix javadoc warnings
Change-Id: Ic1f2552f1a91779ee8b2a976ebe316981e6897df
Showing
6 changed files
with
8 additions
and
20 deletions
... | @@ -65,6 +65,8 @@ public class PIMInterface { | ... | @@ -65,6 +65,8 @@ public class PIMInterface { |
65 | 65 | ||
66 | /** | 66 | /** |
67 | * Create a PIMInterface. | 67 | * Create a PIMInterface. |
68 | + * | ||
69 | + * @param intf the network interface configuration | ||
68 | */ | 70 | */ |
69 | public PIMInterface(Interface intf) { | 71 | public PIMInterface(Interface intf) { |
70 | 72 | ... | ... |
... | @@ -49,6 +49,8 @@ public class NiciraSetTunnelDst extends AbstractExtensionInstruction { | ... | @@ -49,6 +49,8 @@ public class NiciraSetTunnelDst extends AbstractExtensionInstruction { |
49 | /** | 49 | /** |
50 | * Creates a new set tunnel destination instruction with a particular IPv4 | 50 | * Creates a new set tunnel destination instruction with a particular IPv4 |
51 | * address. | 51 | * address. |
52 | + * | ||
53 | + * @param tunnelDst tunnel destination IPv4 address | ||
52 | */ | 54 | */ |
53 | NiciraSetTunnelDst(Ip4Address tunnelDst) { | 55 | NiciraSetTunnelDst(Ip4Address tunnelDst) { |
54 | checkNotNull(tunnelDst); | 56 | checkNotNull(tunnelDst); | ... | ... |
1 | -/* | ||
2 | - * Copyright 2015 Open Networking Laboratory | ||
3 | - * | ||
4 | - * Licensed under the Apache License, Version 2.0 (the "License"); | ||
5 | - * you may not use this file except in compliance with the License. | ||
6 | - * You may obtain a copy of the License at | ||
7 | - * | ||
8 | - * http://www.apache.org/licenses/LICENSE-2.0 | ||
9 | - * | ||
10 | - * Unless required by applicable law or agreed to in writing, software | ||
11 | - * distributed under the License is distributed on an "AS IS" BASIS, | ||
12 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
13 | - * See the License for the specific language governing permissions and | ||
14 | - * limitations under the License. | ||
15 | - */ | ||
16 | - | ||
17 | -/** | ||
18 | - * Service for interacting with interfaces. | ||
19 | - */ | ||
20 | -package org.onosproject.incubator.net.intf; |
... | @@ -105,6 +105,7 @@ public abstract class FlowModBuilder { | ... | @@ -105,6 +105,7 @@ public abstract class FlowModBuilder { |
105 | * @param flowRule the flow rule to transform into a flow mod | 105 | * @param flowRule the flow rule to transform into a flow mod |
106 | * @param factory the OpenFlow factory to use to build the flow mod | 106 | * @param factory the OpenFlow factory to use to build the flow mod |
107 | * @param xid the transaction ID | 107 | * @param xid the transaction ID |
108 | + * @param driverService the device driver service | ||
108 | * @return the new flow mod builder | 109 | * @return the new flow mod builder |
109 | */ | 110 | */ |
110 | public static FlowModBuilder builder(FlowRule flowRule, | 111 | public static FlowModBuilder builder(FlowRule flowRule, |
... | @@ -127,6 +128,7 @@ public abstract class FlowModBuilder { | ... | @@ -127,6 +128,7 @@ public abstract class FlowModBuilder { |
127 | * | 128 | * |
128 | * @param flowRule the flow rule to transform into a flow mod | 129 | * @param flowRule the flow rule to transform into a flow mod |
129 | * @param factory the OpenFlow factory to use to build the flow mod | 130 | * @param factory the OpenFlow factory to use to build the flow mod |
131 | + * @param driverService the device driver service | ||
130 | * @param xid the transaction ID | 132 | * @param xid the transaction ID |
131 | */ | 133 | */ |
132 | protected FlowModBuilder(FlowRule flowRule, OFFactory factory, Optional<Long> xid, | 134 | protected FlowModBuilder(FlowRule flowRule, OFFactory factory, Optional<Long> xid, | ... | ... |
providers/openflow/flow/src/main/java/org/onosproject/provider/of/flow/impl/FlowModBuilderVer10.java
... | @@ -69,6 +69,7 @@ public class FlowModBuilderVer10 extends FlowModBuilder { | ... | @@ -69,6 +69,7 @@ public class FlowModBuilderVer10 extends FlowModBuilder { |
69 | * @param flowRule the flow rule to transform into a flow mod | 69 | * @param flowRule the flow rule to transform into a flow mod |
70 | * @param factory the OpenFlow factory to use to build the flow mod | 70 | * @param factory the OpenFlow factory to use to build the flow mod |
71 | * @param xid the transaction ID | 71 | * @param xid the transaction ID |
72 | + * @param driverService the device driver service | ||
72 | */ | 73 | */ |
73 | protected FlowModBuilderVer10(FlowRule flowRule, | 74 | protected FlowModBuilderVer10(FlowRule flowRule, |
74 | OFFactory factory, Optional<Long> xid, | 75 | OFFactory factory, Optional<Long> xid, | ... | ... |
providers/openflow/flow/src/main/java/org/onosproject/provider/of/flow/impl/FlowModBuilderVer13.java
... | @@ -103,6 +103,7 @@ public class FlowModBuilderVer13 extends FlowModBuilder { | ... | @@ -103,6 +103,7 @@ public class FlowModBuilderVer13 extends FlowModBuilder { |
103 | * @param flowRule the flow rule to transform into a flow mod | 103 | * @param flowRule the flow rule to transform into a flow mod |
104 | * @param factory the OpenFlow factory to use to build the flow mod | 104 | * @param factory the OpenFlow factory to use to build the flow mod |
105 | * @param xid the transaction ID | 105 | * @param xid the transaction ID |
106 | + * @param driverService the device driver service | ||
106 | */ | 107 | */ |
107 | protected FlowModBuilderVer13(FlowRule flowRule, OFFactory factory, Optional<Long> xid, | 108 | protected FlowModBuilderVer13(FlowRule flowRule, OFFactory factory, Optional<Long> xid, |
108 | Optional<DriverService> driverService) { | 109 | Optional<DriverService> driverService) { | ... | ... |
-
Please register or login to post a comment