Add serialVersionUID to Serializable classes
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / registry / RoutingTable.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 package org.opendaylight.controller.remote.rpc.registry;
9
10 import akka.actor.ActorRef;
11 import akka.japi.Option;
12 import akka.japi.Pair;
13 import org.opendaylight.controller.remote.rpc.registry.gossip.Copier;
14 import org.opendaylight.controller.sal.connector.api.RpcRouter;
15
16 import java.io.Serializable;
17 import java.util.HashMap;
18 import java.util.Map;
19
20 public class RoutingTable implements Copier<RoutingTable>, Serializable {
21     private static final long serialVersionUID = 1L;
22
23     private Map<RpcRouter.RouteIdentifier<?, ?, ?>, Long> table = new HashMap<>();
24     private ActorRef router;
25
26     @Override
27     public RoutingTable copy() {
28         RoutingTable copy = new RoutingTable();
29         copy.setTable(new HashMap<>(table));
30         copy.setRouter(this.getRouter());
31
32         return copy;
33     }
34
35     public Option<Pair<ActorRef, Long>> getRouterFor(RpcRouter.RouteIdentifier<?, ?, ?> routeId){
36         Long updatedTime = table.get(routeId);
37
38         if (updatedTime == null || router == null)
39             return Option.none();
40         else
41             return Option.option(new Pair<>(router, updatedTime));
42     }
43
44     public void addRoute(RpcRouter.RouteIdentifier<?,?,?> routeId){
45         table.put(routeId, System.currentTimeMillis());
46     }
47
48     public void removeRoute(RpcRouter.RouteIdentifier<?, ?, ?> routeId){
49         table.remove(routeId);
50     }
51
52     public Boolean contains(RpcRouter.RouteIdentifier<?, ?, ?> routeId){
53         return table.containsKey(routeId);
54     }
55
56     public Boolean isEmpty(){
57         return table.isEmpty();
58     }
59     ///
60     /// Getter, Setters
61     ///
62     //TODO: Remove public
63     public Map<RpcRouter.RouteIdentifier<?, ?, ?>, Long> getTable() {
64         return table;
65     }
66
67     void setTable(Map<RpcRouter.RouteIdentifier<?, ?, ?>, Long> table) {
68         this.table = table;
69     }
70
71     public ActorRef getRouter() {
72         return router;
73     }
74
75     public void setRouter(ActorRef router) {
76         this.router = router;
77     }
78
79     @Override
80     public String toString() {
81         return "RoutingTable{" +
82                 "table=" + table +
83                 ", router=" + router +
84                 '}';
85     }
86 }