5f840711b3f2d10f6eaa13c983527f6dffd6ad4a
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / sharding / messages / PrefixShardRemoved.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.annotations.Beta;
12 import java.io.Serializable;
13 import org.opendaylight.controller.cluster.sharding.ShardedDataTreeActor;
14 import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier;
15
16 /**
17  * Message sent to remote {@link ShardedDataTreeActor}'s when there is an
18  * attempt to remove a shard from the sharding service.
19  */
20 @Beta
21 public class PrefixShardRemoved implements Serializable {
22     private static final long serialVersionUID = 1L;
23
24     private final DOMDataTreeIdentifier prefix;
25
26     public PrefixShardRemoved(final DOMDataTreeIdentifier prefix) {
27         this.prefix = prefix;
28     }
29
30     public DOMDataTreeIdentifier getPrefix() {
31         return prefix;
32     }
33 }