1 31 package org.objectweb.proactive.ext.migration; 32 33 import java.io.Serializable ; 34 35 public class NodeDestination implements Destination, Serializable { 36 37 private String nodeURL; 38 private String methodName; 39 40 41 45 public NodeDestination(String nodeURL, String methodName) { 46 this.nodeURL = nodeURL; 47 this.methodName = methodName; 48 } 49 50 51 54 public String getDestination() { 55 return nodeURL; 56 } 57 58 59 62 public String getMethodName() { 63 return methodName; 64 } 65 66 67 } 68 | Popular Tags |