Merge "Created Sample Feature Test Class for Base Feature Repository"
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / messages / RemoveRoutedRpc.java
1 /*
2  * Copyright (c) 2014 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.remote.rpc.messages;
10
11 import com.google.common.base.Preconditions;
12 import org.opendaylight.controller.sal.connector.api.RpcRouter;
13
14 import java.io.Serializable;
15 import java.util.Set;
16
17 public class RemoveRoutedRpc implements Serializable {
18
19   private final Set<RpcRouter.RouteIdentifier<?, ?, ?>> announcements;
20   private final String actorPath;
21
22   public RemoveRoutedRpc(final Set<RpcRouter.RouteIdentifier<?, ?, ?>> announcements, final String actorPath) {
23     Preconditions.checkNotNull(announcements, "Route identifier should not be null");
24     Preconditions.checkNotNull(actorPath, "Actor path should not be null");
25
26     this.announcements = announcements;
27     this.actorPath = actorPath;
28   }
29
30   public Set<RpcRouter.RouteIdentifier<?, ?, ?>> getAnnouncements() {
31     return announcements;
32   }
33
34   public String getActorPath() {
35     return actorPath;
36   }
37 }