Pulling PartitionService into API and making IntentPerfInstaller configurable
Change-Id: I9fde28986b6714c0ca4d635d5a3699094e2f0081
Showing
4 changed files
with
3 additions
and
2 deletions
This diff is collapsed. Click to expand it.
... | @@ -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.store.intent.impl; | 16 | +package org.onosproject.net.intent; |
17 | 17 | ||
18 | import org.onosproject.cluster.NodeId; | 18 | import org.onosproject.cluster.NodeId; |
19 | -import org.onosproject.net.intent.Key; | ||
20 | 19 | ||
21 | /** | 20 | /** |
22 | * Service for interacting with the partition-to-instance assignments. | 21 | * Service for interacting with the partition-to-instance assignments. | ... | ... |
... | @@ -33,6 +33,7 @@ import org.onosproject.net.intent.IntentState; | ... | @@ -33,6 +33,7 @@ import org.onosproject.net.intent.IntentState; |
33 | import org.onosproject.net.intent.IntentStore; | 33 | import org.onosproject.net.intent.IntentStore; |
34 | import org.onosproject.net.intent.IntentStoreDelegate; | 34 | import org.onosproject.net.intent.IntentStoreDelegate; |
35 | import org.onosproject.net.intent.Key; | 35 | import org.onosproject.net.intent.Key; |
36 | +import org.onosproject.net.intent.PartitionService; | ||
36 | import org.onosproject.store.AbstractStore; | 37 | import org.onosproject.store.AbstractStore; |
37 | import org.onosproject.store.cluster.messaging.ClusterCommunicationService; | 38 | import org.onosproject.store.cluster.messaging.ClusterCommunicationService; |
38 | import org.onosproject.store.ecmap.EventuallyConsistentMap; | 39 | import org.onosproject.store.ecmap.EventuallyConsistentMap; | ... | ... |
... | @@ -31,6 +31,7 @@ import org.onosproject.cluster.LeadershipEventListener; | ... | @@ -31,6 +31,7 @@ import org.onosproject.cluster.LeadershipEventListener; |
31 | import org.onosproject.cluster.LeadershipService; | 31 | import org.onosproject.cluster.LeadershipService; |
32 | import org.onosproject.cluster.NodeId; | 32 | import org.onosproject.cluster.NodeId; |
33 | import org.onosproject.net.intent.Key; | 33 | import org.onosproject.net.intent.Key; |
34 | +import org.onosproject.net.intent.PartitionService; | ||
34 | import org.slf4j.Logger; | 35 | import org.slf4j.Logger; |
35 | import org.slf4j.LoggerFactory; | 36 | import org.slf4j.LoggerFactory; |
36 | 37 | ... | ... |
-
Please register or login to post a comment