Thomas Vachuska
Committed by Gerrit Code Review

Javadocs cleanup.

Change-Id: Ia731178e76b29a2f00045efad759b9c0559645d7
/*
* 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;
\ No newline at end of file
......@@ -35,6 +35,7 @@ class Installing extends FinalIntentProcessPhase {
*
* @param processor intent processor that does work for installing
* @param data intent data containing an intent to be installed
* @param stored intent data already stored
*/
Installing(IntentProcessor processor, IntentData data, IntentData stored) {
this.processor = checkNotNull(processor);
......
......@@ -139,6 +139,7 @@ public class EventuallyConsistentMapImpl<K, V>
* tombstones
* @param antiEntropyPeriod period that the anti-entropy task should run
* in seconds
* @param antiEntropyTimeUnit time unit for anti-entropy task scheduling
* @param convergeFaster make anti-entropy try to converge faster
*/
EventuallyConsistentMapImpl(String mapName,
......