Ray Milkey

Fix Javadoc warnings

Change-Id: I366f2b9f3c11645a3392e0689619bfbad7a9eedd
...@@ -135,7 +135,7 @@ public class BandwidthCalendarResource extends BaseResource { ...@@ -135,7 +135,7 @@ public class BandwidthCalendarResource extends BaseResource {
135 * @param srcPort the source port (-1 if src/dest is a host) 135 * @param srcPort the source port (-1 if src/dest is a host)
136 * @param dstPort the destination port (-1 if src/dest is a host) 136 * @param dstPort the destination port (-1 if src/dest is a host)
137 * @param bandwidth the bandwidth (mbps) requirement for the path 137 * @param bandwidth the bandwidth (mbps) requirement for the path
138 - * @return @return Intent state, "INSTALLED", if successful, 138 + * @return Intent state, "INSTALLED", if successful,
139 * server error message or "FAILED" if failed to modify any direction intent 139 * server error message or "FAILED" if failed to modify any direction intent
140 */ 140 */
141 @javax.ws.rs.Path("/{intentKey}/{src}/{dst}/{srcPort}/{dstPort}/{bandwidth}") 141 @javax.ws.rs.Path("/{intentKey}/{src}/{dst}/{srcPort}/{dstPort}/{bandwidth}")
......
...@@ -56,9 +56,11 @@ public interface TransactionContext { ...@@ -56,9 +56,11 @@ public interface TransactionContext {
56 56
57 /** 57 /**
58 * Creates a new transactional map. 58 * Creates a new transactional map.
59 + * @param <K> key type
60 + * @param <V> value type
59 * @param mapName name of the transactional map. 61 * @param mapName name of the transactional map.
60 * @param serializer serializer to use for encoding/decoding keys and vaulues. 62 * @param serializer serializer to use for encoding/decoding keys and vaulues.
61 * @return new Transactional Map. 63 * @return new Transactional Map.
62 */ 64 */
63 <K, V> TransactionalMap<K, V> createTransactionalMap(String mapName, Serializer serializer); 65 <K, V> TransactionalMap<K, V> createTransactionalMap(String mapName, Serializer serializer);
64 -}
...\ No newline at end of file ...\ No newline at end of file
66 +}
......
...@@ -363,6 +363,7 @@ public class IntentManager ...@@ -363,6 +363,7 @@ public class IntentManager
363 * Generate a {@link FlowRuleOperations} instance from the specified intent data. 363 * Generate a {@link FlowRuleOperations} instance from the specified intent data.
364 * 364 *
365 * @param current intent data stored in the store 365 * @param current intent data stored in the store
366 + * @param pending intent data that is pending
366 * @return flow rule operations 367 * @return flow rule operations
367 */ 368 */
368 // TODO: make this non-public due to short term hack for ONOS-1051 369 // TODO: make this non-public due to short term hack for ONOS-1051
......