1 23 24 package org.objectweb.clif.deploy; 25 26 import java.util.Map ; 27 28 29 33 public class DeployDefinition 34 { 35 private String servername; 36 private String adlDefinition; 37 private Map context; 38 private String argument; 39 private String comment; 40 41 42 52 public DeployDefinition( 53 String servername, 54 String adlDefinition, 55 Map context, 56 String argument, 57 String comment) 58 { 59 this.servername = servername; 60 this.adlDefinition = adlDefinition; 61 this.context = context; 62 this.argument = argument; 63 this.comment = comment; 64 } 65 66 67 70 public String getServerName() 71 { 72 return servername; 73 } 74 75 76 80 public String getAdlDefinition() 81 { 82 return adlDefinition; 83 } 84 85 86 89 public Map getContext() 90 { 91 return context; 92 } 93 94 95 98 public String getArgument() 99 { 100 return argument; 101 } 102 103 104 107 public String getComment() 108 { 109 return comment; 110 } 111 112 113 public String toString() 114 { 115 return 116 "server=" + servername 117 + ", ADL definition=" + adlDefinition 118 + ", context=" + context 119 + ", argument=" + argument 120 + ", comment=" + comment; 121 } 122 } 123 | Popular Tags |