1 23 24 package org.objectweb.clif.supervisor.api; 25 26 27 31 public class DeployDefinition 32 { 33 protected String servername; 34 protected String classname; 35 protected String argument; 36 protected String role; 37 38 39 48 public DeployDefinition(String servername, String classname, String argument, String role) 49 { 50 this.servername = servername; 51 this.classname = classname; 52 this.argument = argument; 53 this.role = role; 54 } 55 56 57 60 public String getServerName() 61 { 62 return servername; 63 } 64 65 66 69 public String getClassName() 70 { 71 return classname; 72 } 73 74 75 78 public String getArgument() 79 { 80 return argument; 81 } 82 83 84 87 public String getRole() 88 { 89 return role; 90 } 91 92 public String toString() 93 { 94 return 95 "server=" + servername 96 + ", class=" + classname 97 + ", argument=" + argument 98 + ", role=" + role; 99 } 100 } 101 | Popular Tags |