Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java examples to examples/java/.
[simgrid.git] / simgrid-java / examples / kademlia / FindNodeTask.java
diff --git a/simgrid-java/examples/kademlia/FindNodeTask.java b/simgrid-java/examples/kademlia/FindNodeTask.java
deleted file mode 100644 (file)
index 39e7941..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Copyright (c) 2012. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-package kademlia;
-
-/**
- * @brief Find node tasks sent by a node to another
- * "Find Node" task sent by a node to another. Ask him for
- * its closest nodes from a destination.
- */
-public class FindNodeTask extends KademliaTask {
-       /**
-        * Id of the node we are trying to find: the destination
-        */
-       private int destination;
-       /**
-        * Constructor
-        */
-       public FindNodeTask(int senderId, int destination) {
-               super(senderId);        
-               this.destination = destination;
-       }
-
-
-
-       public int getDestination() {
-               return destination;
-       }
-       
-}