Brian O'Connor

Fixing 4 javadoc warnings in onos-api

Change-Id: Ib9fe457b463adfb81b5f8a601ce67eb11575f439
...@@ -43,6 +43,7 @@ public class OpticalCircuitIntent extends Intent { ...@@ -43,6 +43,7 @@ public class OpticalCircuitIntent extends Intent {
43 * @param src the source transponder port 43 * @param src the source transponder port
44 * @param dst the destination transponder port 44 * @param dst the destination transponder port
45 * @param signalType ODU signal type 45 * @param signalType ODU signal type
46 + * @param isBidirectional indicate if intent is bidirectional
46 * @param priority priority to use for flows from this intent 47 * @param priority priority to use for flows from this intent
47 */ 48 */
48 protected OpticalCircuitIntent(ApplicationId appId, Key key, ConnectPoint src, ConnectPoint dst, 49 protected OpticalCircuitIntent(ApplicationId appId, Key key, ConnectPoint src, ConnectPoint dst,
......
...@@ -42,6 +42,7 @@ public final class OpticalConnectivityIntent extends Intent { ...@@ -42,6 +42,7 @@ public final class OpticalConnectivityIntent extends Intent {
42 * @param key intent key 42 * @param key intent key
43 * @param src the source transponder port 43 * @param src the source transponder port
44 * @param dst the destination transponder port 44 * @param dst the destination transponder port
45 + * @param signalType signal type
45 * @param isBidirectional indicates if intent is unidirectional 46 * @param isBidirectional indicates if intent is unidirectional
46 * @param priority priority to use for flows from this intent 47 * @param priority priority to use for flows from this intent
47 */ 48 */
......
...@@ -156,6 +156,8 @@ public final class OpticalPathIntent extends Intent { ...@@ -156,6 +156,8 @@ public final class OpticalPathIntent extends Intent {
156 156
157 /** 157 /**
158 * Sets the intent's direction. 158 * Sets the intent's direction.
159 + *
160 + * @param isBidirectional indicates if intent is bidirectional
159 * @return this builder 161 * @return this builder
160 */ 162 */
161 public Builder bidirectional(boolean isBidirectional) { 163 public Builder bidirectional(boolean isBidirectional) {
......
...@@ -48,6 +48,7 @@ public interface AtomicCounterBuilder { ...@@ -48,6 +48,7 @@ public interface AtomicCounterBuilder {
48 * <p> 48 * <p>
49 * Note: Must be set when retries are enabled 49 * Note: Must be set when retries are enabled
50 * </p> 50 * </p>
51 + * @param executor executor service
51 * @return this AtomicCounterBuilder 52 * @return this AtomicCounterBuilder
52 */ 53 */
53 AtomicCounterBuilder withRetryExecutor(ScheduledExecutorService executor); 54 AtomicCounterBuilder withRetryExecutor(ScheduledExecutorService executor);
......