Claudine Chiu

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

Change-Id: I2c26d7a4106be5b8f631b010cc7a167de957c9d2
......@@ -14,7 +14,7 @@
* 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.Component;
......
......@@ -17,4 +17,4 @@
/**
* Implementation of device key subsystem.
*/
package org.onosproject.incubator.net.key.impl;
package org.onosproject.net.key.impl;
......
......@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.onosproject.incubator.net.key.impl;
package org.onosproject.net.key.impl;
import com.google.common.collect.Lists;
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.DeviceKeyListener;
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.store.service.TestStorageService;
......
......@@ -14,7 +14,7 @@
* 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.Component;
......
......@@ -18,4 +18,4 @@
* A distributed device key store implementation that stores device key
* data consistently across the cluster.
*/
package org.onosproject.incubator.store.key.impl;
\ No newline at end of file
package org.onosproject.store.key.impl;
\ No newline at end of file
......
......@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.onosproject.incubator.store.key.impl;
package org.onosproject.store.key.impl;
import org.junit.After;
import org.junit.Before;
......