Merge "BUG-190 Simplify reconnect logic in protocol-framework."
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / messages / GetRpcReply.java
1 package org.opendaylight.controller.remote.rpc.messages;
2
3 /*
4  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5  *
6  * This program and the accompanying materials are made available under the
7  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  * and is available at http://www.eclipse.org/legal/epl-v10.html
9  */
10
11 import java.io.Serializable;
12
13 public class GetRpcReply implements Serializable {
14
15   private final String routePath;
16
17   public GetRpcReply(final String routePath) {
18     this.routePath = routePath;
19   }
20
21   public String getRoutePath() {
22     return routePath;
23   }
24 }