848c7b9a46d42474d62391731788c9f3d8a019f3
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / sharding / messages / ProducerRemoved.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.util.Collection;
13 import org.opendaylight.controller.cluster.sharding.ShardedDataTreeActor;
14 import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier;
15
16 /**
17  * Message sent to local {@link ShardedDataTreeActor}'s when there was an
18  * attempt to close a producer on the local node.
19  */
20 @Beta
21 @Deprecated(forRemoval = true)
22 public class ProducerRemoved {
23
24     private final Collection<DOMDataTreeIdentifier> subtrees;
25
26     public ProducerRemoved(final Collection<DOMDataTreeIdentifier> subtrees) {
27         this.subtrees = subtrees;
28     }
29
30     public Collection<DOMDataTreeIdentifier> getSubtrees() {
31         return subtrees;
32     }
33 }