fa74af62a27bab4c8804b514f6a5c1ff265b82b1
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / sharding / messages / RemovePrefixShard.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.sharding.messages;
10
11 import com.google.common.base.Preconditions;
12 import org.opendaylight.controller.cluster.sharding.ShardedDataTreeActor;
13 import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier;
14
15 /**
16  * Sent to the local {@link ShardedDataTreeActor} to notify of a shard removal on the local node. The local actor
17  * should then notify the remote nodes of the Removal with {@link PrefixShardRemoved} message.
18  */
19 public class RemovePrefixShard {
20
21     private final DOMDataTreeIdentifier prefix;
22
23     public RemovePrefixShard(final DOMDataTreeIdentifier prefix) {
24
25         this.prefix = Preconditions.checkNotNull(prefix);
26     }
27
28     public DOMDataTreeIdentifier getPrefix() {
29         return prefix;
30     }
31 }