Sho SHIMIZU
Committed by Gerrit Code Review

Move IntentSetMultimap to the intent package

As it is no longer resource related

Change-Id: I068bf4bbff33492e3a508c4a4d7a5908a47ee83b
1 /* 1 /*
2 - * Copyright 2015 Open Networking Laboratory 2 + * Copyright 2015-2016 Open Networking Laboratory
3 * 3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License. 5 * you may not use this file except in compliance with the License.
...@@ -13,10 +13,9 @@ ...@@ -13,10 +13,9 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.net.resource.device; 16 +package org.onosproject.net.intent;
17 17
18 import com.google.common.annotations.Beta; 18 import com.google.common.annotations.Beta;
19 -import org.onosproject.net.intent.IntentId;
20 19
21 import java.util.Set; 20 import java.util.Set;
22 21
......
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 - * Services for reserving devices as network resources.
19 - */
20 -package org.onosproject.net.resource.device;
...@@ -62,7 +62,7 @@ import org.onosproject.net.newresource.ResourceAllocation; ...@@ -62,7 +62,7 @@ import org.onosproject.net.newresource.ResourceAllocation;
62 import org.onosproject.net.newresource.Resource; 62 import org.onosproject.net.newresource.Resource;
63 import org.onosproject.net.newresource.ResourceService; 63 import org.onosproject.net.newresource.ResourceService;
64 import org.onosproject.net.newresource.Resources; 64 import org.onosproject.net.newresource.Resources;
65 -import org.onosproject.net.resource.device.IntentSetMultimap; 65 +import org.onosproject.net.intent.IntentSetMultimap;
66 import org.onosproject.net.resource.link.LinkResourceAllocations; 66 import org.onosproject.net.resource.link.LinkResourceAllocations;
67 import org.osgi.service.component.ComponentContext; 67 import org.osgi.service.component.ComponentContext;
68 import org.slf4j.Logger; 68 import org.slf4j.Logger;
......
...@@ -57,7 +57,7 @@ import org.onosproject.net.intent.Key; ...@@ -57,7 +57,7 @@ import org.onosproject.net.intent.Key;
57 import org.onosproject.net.intent.MockIdGenerator; 57 import org.onosproject.net.intent.MockIdGenerator;
58 import org.onosproject.net.intent.OpticalCircuitIntent; 58 import org.onosproject.net.intent.OpticalCircuitIntent;
59 import org.onosproject.net.provider.ProviderId; 59 import org.onosproject.net.provider.ProviderId;
60 -import org.onosproject.net.resource.device.IntentSetMultimap; 60 +import org.onosproject.net.intent.IntentSetMultimap;
61 import org.onosproject.net.behaviour.TributarySlotQuery; 61 import org.onosproject.net.behaviour.TributarySlotQuery;
62 import org.onosproject.net.device.DeviceServiceAdapter; 62 import org.onosproject.net.device.DeviceServiceAdapter;
63 import org.onosproject.net.driver.Behaviour; 63 import org.onosproject.net.driver.Behaviour;
......
1 /* 1 /*
2 - * Copyright 2015 Open Networking Laboratory 2 + * Copyright 2015-2016 Open Networking Laboratory
3 * 3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License. 5 * you may not use this file except in compliance with the License.
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.store.resource.impl; 16 +package org.onosproject.store.intent.impl;
17 17
18 import com.google.common.annotations.Beta; 18 import com.google.common.annotations.Beta;
19 import org.apache.felix.scr.annotations.Activate; 19 import org.apache.felix.scr.annotations.Activate;
...@@ -24,7 +24,7 @@ import org.apache.felix.scr.annotations.ReferenceCardinality; ...@@ -24,7 +24,7 @@ import org.apache.felix.scr.annotations.ReferenceCardinality;
24 import org.apache.felix.scr.annotations.Service; 24 import org.apache.felix.scr.annotations.Service;
25 import org.onosproject.net.device.DeviceService; 25 import org.onosproject.net.device.DeviceService;
26 import org.onosproject.net.intent.IntentId; 26 import org.onosproject.net.intent.IntentId;
27 -import org.onosproject.net.resource.device.IntentSetMultimap; 27 +import org.onosproject.net.intent.IntentSetMultimap;
28 import org.onosproject.store.serializers.KryoNamespaces; 28 import org.onosproject.store.serializers.KryoNamespaces;
29 import org.onosproject.store.service.ConsistentMap; 29 import org.onosproject.store.service.ConsistentMap;
30 import org.onosproject.store.service.Serializer; 30 import org.onosproject.store.service.Serializer;
......