ONOS-3931: move DeviceKey manager and store implementations from incubator to core

Change-Id: I2c26d7a4106be5b8f631b010cc7a167de957c9d2
This commit is contained in:
Claudine Chiu 2016-02-18 19:56:42 +00:00
parent 784ee0ff97
commit e014b3ad5a
6 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.incubator.net.key.impl; package org.onosproject.net.key.impl;
import org.apache.felix.scr.annotations.Activate; import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component; import org.apache.felix.scr.annotations.Component;

View File

@ -17,4 +17,4 @@
/** /**
* Implementation of device key subsystem. * Implementation of device key subsystem.
*/ */
package org.onosproject.incubator.net.key.impl; package org.onosproject.net.key.impl;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.incubator.net.key.impl; package org.onosproject.net.key.impl;
import com.google.common.collect.Lists; import com.google.common.collect.Lists;
import org.junit.After; import org.junit.After;
@ -29,7 +29,7 @@ import org.onosproject.net.key.DeviceKeyEvent;
import org.onosproject.net.key.DeviceKeyId; import org.onosproject.net.key.DeviceKeyId;
import org.onosproject.net.key.DeviceKeyListener; import org.onosproject.net.key.DeviceKeyListener;
import org.onosproject.net.key.DeviceKeyService; import org.onosproject.net.key.DeviceKeyService;
import org.onosproject.incubator.store.key.impl.DistributedDeviceKeyStore; import org.onosproject.store.key.impl.DistributedDeviceKeyStore;
import org.onosproject.net.NetTestTools; import org.onosproject.net.NetTestTools;
import org.onosproject.store.service.TestStorageService; import org.onosproject.store.service.TestStorageService;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.incubator.store.key.impl; package org.onosproject.store.key.impl;
import org.apache.felix.scr.annotations.Activate; import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component; import org.apache.felix.scr.annotations.Component;

View File

@ -18,4 +18,4 @@
* A distributed device key store implementation that stores device key * A distributed device key store implementation that stores device key
* data consistently across the cluster. * data consistently across the cluster.
*/ */
package org.onosproject.incubator.store.key.impl; package org.onosproject.store.key.impl;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.incubator.store.key.impl; package org.onosproject.store.key.impl;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;