Javadocs cleanup.

Change-Id: Ia731178e76b29a2f00045efad759b9c0559645d7
This commit is contained in:
Thomas Vachuska 2015-04-02 17:07:57 -07:00 committed by Gerrit Code Review
parent d552ee9a38
commit 00121ed30a
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Abstractions of various device configuration or device adaptation behaviours;
* counterpart to the device driver subsystem.
*/
package org.onosproject.net.behaviour;

View File

@ -35,6 +35,7 @@ class Installing extends FinalIntentProcessPhase {
* *
* @param processor intent processor that does work for installing * @param processor intent processor that does work for installing
* @param data intent data containing an intent to be installed * @param data intent data containing an intent to be installed
* @param stored intent data already stored
*/ */
Installing(IntentProcessor processor, IntentData data, IntentData stored) { Installing(IntentProcessor processor, IntentData data, IntentData stored) {
this.processor = checkNotNull(processor); this.processor = checkNotNull(processor);

View File

@ -139,6 +139,7 @@ public class EventuallyConsistentMapImpl<K, V>
* tombstones * tombstones
* @param antiEntropyPeriod period that the anti-entropy task should run * @param antiEntropyPeriod period that the anti-entropy task should run
* in seconds * in seconds
* @param antiEntropyTimeUnit time unit for anti-entropy task scheduling
* @param convergeFaster make anti-entropy try to converge faster * @param convergeFaster make anti-entropy try to converge faster
*/ */
EventuallyConsistentMapImpl(String mapName, EventuallyConsistentMapImpl(String mapName,