Phaneendra Manda
Committed by Gerrit Code Review

Javadoc warning fix

Change-Id: I330b1485a760fc2d3c63e3bc25ae1fc5435d9ebd
...@@ -30,6 +30,7 @@ public interface FlowClassifierInstallerService { ...@@ -30,6 +30,7 @@ public interface FlowClassifierInstallerService {
30 * 30 *
31 * @param portChain port-chain 31 * @param portChain port-chain
32 * @param nshSpiId service path index identifier 32 * @param nshSpiId service path index identifier
33 + * @return connectPoint the network identifier
33 */ 34 */
34 ConnectPoint installFlowClassifier(PortChain portChain, NshServicePathId nshSpiId); 35 ConnectPoint installFlowClassifier(PortChain portChain, NshServicePathId nshSpiId);
35 36
...@@ -38,6 +39,7 @@ public interface FlowClassifierInstallerService { ...@@ -38,6 +39,7 @@ public interface FlowClassifierInstallerService {
38 * 39 *
39 * @param portChain port-chain 40 * @param portChain port-chain
40 * @param nshSpiId service path index identifier 41 * @param nshSpiId service path index identifier
42 + * @return connectPoint the network identifier
41 */ 43 */
42 ConnectPoint unInstallFlowClassifier(PortChain portChain, NshServicePathId nshSpiId); 44 ConnectPoint unInstallFlowClassifier(PortChain portChain, NshServicePathId nshSpiId);
43 45
...@@ -47,6 +49,7 @@ public interface FlowClassifierInstallerService { ...@@ -47,6 +49,7 @@ public interface FlowClassifierInstallerService {
47 * @param portChain port-chain 49 * @param portChain port-chain
48 * @param fiveTuple five tuple packet information 50 * @param fiveTuple five tuple packet information
49 * @param nshSpiId service path index identifier 51 * @param nshSpiId service path index identifier
52 + * @return connectPoint the network identifier
50 */ 53 */
51 ConnectPoint installLoadBalancedFlowClassifier(PortChain portChain, FiveTuple fiveTuple, 54 ConnectPoint installLoadBalancedFlowClassifier(PortChain portChain, FiveTuple fiveTuple,
52 NshServicePathId nshSpiId); 55 NshServicePathId nshSpiId);
...@@ -57,6 +60,7 @@ public interface FlowClassifierInstallerService { ...@@ -57,6 +60,7 @@ public interface FlowClassifierInstallerService {
57 * @param portChain port-chain 60 * @param portChain port-chain
58 * @param fiveTuple five tuple packet information 61 * @param fiveTuple five tuple packet information
59 * @param nshSpiId service path index identifier 62 * @param nshSpiId service path index identifier
63 + * @return connectPoint the network identifier
60 */ 64 */
61 ConnectPoint unInstallLoadBalancedFlowClassifier(PortChain portChain, FiveTuple fiveTuple, 65 ConnectPoint unInstallLoadBalancedFlowClassifier(PortChain portChain, FiveTuple fiveTuple,
62 NshServicePathId nshSpiId); 66 NshServicePathId nshSpiId);
......
...@@ -332,9 +332,11 @@ public class FlowClassifierInstallerImpl implements FlowClassifierInstallerServi ...@@ -332,9 +332,11 @@ public class FlowClassifierInstallerImpl implements FlowClassifierInstallerServi
332 * Pack traffic treatment. 332 * Pack traffic treatment.
333 * 333 *
334 * @param deviceId device id 334 * @param deviceId device id
335 + * @param port port number
335 * @param nshDstPort vxlan tunnel port for nsh header 336 * @param nshDstPort vxlan tunnel port for nsh header
336 * @param nshSpi nsh spi 337 * @param nshSpi nsh spi
337 * @param flowClassifier flow-classifier 338 * @param flowClassifier flow-classifier
339 + * @param isSameOvs whether the next service function is in same ovs
338 * @return traffic treatment 340 * @return traffic treatment
339 */ 341 */
340 public TrafficTreatment.Builder packTrafficTreatment(DeviceId deviceId, PortNumber port, 342 public TrafficTreatment.Builder packTrafficTreatment(DeviceId deviceId, PortNumber port,
......