Fix javadoc on IntentStore and add newline at the end of the intent package-info.
Showing
2 changed files
with
4 additions
and
3 deletions
| ... | @@ -33,6 +33,8 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { | ... | @@ -33,6 +33,8 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { |
| 33 | 33 | ||
| 34 | /** | 34 | /** |
| 35 | * Returns the number of intents in the store. | 35 | * Returns the number of intents in the store. |
| 36 | + * | ||
| 37 | + * @return the number of intents in the store | ||
| 36 | */ | 38 | */ |
| 37 | long getIntentCount(); | 39 | long getIntentCount(); |
| 38 | 40 | ||
| ... | @@ -44,7 +46,7 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { | ... | @@ -44,7 +46,7 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { |
| 44 | Iterable<Intent> getIntents(); | 46 | Iterable<Intent> getIntents(); |
| 45 | 47 | ||
| 46 | /** | 48 | /** |
| 47 | - * Returns the intent with the specified identifer. | 49 | + * Returns the intent with the specified identifier. |
| 48 | * | 50 | * |
| 49 | * @param intentId intent identification | 51 | * @param intentId intent identification |
| 50 | * @return intent or null if not found | 52 | * @return intent or null if not found |
| ... | @@ -94,7 +96,6 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { | ... | @@ -94,7 +96,6 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> { |
| 94 | * specified original intent. | 96 | * specified original intent. |
| 95 | * | 97 | * |
| 96 | * @param intentId original intent identifier | 98 | * @param intentId original intent identifier |
| 97 | - * @return compiled state transition event | ||
| 98 | */ | 99 | */ |
| 99 | void removeInstalledIntents(IntentId intentId); | 100 | void removeInstalledIntents(IntentId intentId); |
| 100 | 101 | ... | ... |
| ... | @@ -53,4 +53,4 @@ | ... | @@ -53,4 +53,4 @@ |
| 53 | * while the system determines where to perform the compilation or while it | 53 | * while the system determines where to perform the compilation or while it |
| 54 | * performs global recomputation/optimization across all prior intents. | 54 | * performs global recomputation/optimization across all prior intents. |
| 55 | */ | 55 | */ |
| 56 | -package org.onlab.onos.net.intent; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 56 | +package org.onlab.onos.net.intent; | ... | ... |
-
Please register or login to post a comment