X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=netconf%2Fnetconf-topology-singleton%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Ftopology%2Fsingleton%2Fmessages%2FAskForMasterMountPoint.java;fp=netconf%2Fnetconf-topology-singleton%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Ftopology%2Fsingleton%2Fmessages%2FAskForMasterMountPoint.java;h=0000000000000000000000000000000000000000;hb=304f138a32b975ab0fb67356d0e90d3067935d9c;hp=7c7fa49b150b9a4f8a8022b1b5c110ae37b0e351;hpb=1d37ac583f3e2dd1f3886c31bf1407ca2eb13d53;p=netconf.git diff --git a/netconf/netconf-topology-singleton/src/main/java/org/opendaylight/netconf/topology/singleton/messages/AskForMasterMountPoint.java b/netconf/netconf-topology-singleton/src/main/java/org/opendaylight/netconf/topology/singleton/messages/AskForMasterMountPoint.java deleted file mode 100644 index 7c7fa49b15..0000000000 --- a/netconf/netconf-topology-singleton/src/main/java/org/opendaylight/netconf/topology/singleton/messages/AskForMasterMountPoint.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ - -package org.opendaylight.netconf.topology.singleton.messages; - -import akka.actor.ActorRef; -import java.io.Serializable; - -/** - * After master is connected, slaves send the message to master and master triggers registering slave mount point - * with reply 'RegisterMountPoint' which includes needed parameters. - */ -public class AskForMasterMountPoint implements Serializable { - private static final long serialVersionUID = 1L; - - private final ActorRef slaveActorRef; - - public AskForMasterMountPoint(ActorRef slaveActorRef) { - this.slaveActorRef = slaveActorRef; - } - - public ActorRef getSlaveActorRef() { - return slaveActorRef; - } - - @Override - public String toString() { - return "AskForMasterMountPoint [slaveActorRef=" + slaveActorRef + "]"; - } -}