Committed by
Gerrit Code Review
Javadocs cleanup.
Change-Id: Ia731178e76b29a2f00045efad759b9c0559645d7
Showing
3 changed files
with
23 additions
and
0 deletions
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 | + * Abstractions of various device configuration or device adaptation behaviours; | ||
19 | + * counterpart to the device driver subsystem. | ||
20 | + */ | ||
21 | +package org.onosproject.net.behaviour; | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -35,6 +35,7 @@ class Installing extends FinalIntentProcessPhase { | ... | @@ -35,6 +35,7 @@ class Installing extends FinalIntentProcessPhase { |
35 | * | 35 | * |
36 | * @param processor intent processor that does work for installing | 36 | * @param processor intent processor that does work for installing |
37 | * @param data intent data containing an intent to be installed | 37 | * @param data intent data containing an intent to be installed |
38 | + * @param stored intent data already stored | ||
38 | */ | 39 | */ |
39 | Installing(IntentProcessor processor, IntentData data, IntentData stored) { | 40 | Installing(IntentProcessor processor, IntentData data, IntentData stored) { |
40 | this.processor = checkNotNull(processor); | 41 | this.processor = checkNotNull(processor); | ... | ... |
... | @@ -139,6 +139,7 @@ public class EventuallyConsistentMapImpl<K, V> | ... | @@ -139,6 +139,7 @@ public class EventuallyConsistentMapImpl<K, V> |
139 | * tombstones | 139 | * tombstones |
140 | * @param antiEntropyPeriod period that the anti-entropy task should run | 140 | * @param antiEntropyPeriod period that the anti-entropy task should run |
141 | * in seconds | 141 | * in seconds |
142 | + * @param antiEntropyTimeUnit time unit for anti-entropy task scheduling | ||
142 | * @param convergeFaster make anti-entropy try to converge faster | 143 | * @param convergeFaster make anti-entropy try to converge faster |
143 | */ | 144 | */ |
144 | EventuallyConsistentMapImpl(String mapName, | 145 | EventuallyConsistentMapImpl(String mapName, | ... | ... |
-
Please register or login to post a comment