1 22 package fr.dyade.aaa.admin.cmd; 23 24 import java.io.*; 25 import java.util.*; 26 27 public class UnsetServerPropertyCmd extends UnsetPropertyCmd implements Serializable { 28 29 public String serverName = null; 30 31 38 public UnsetServerPropertyCmd(String serverName, 39 String name, 40 String value) { 41 super(name,value); 42 this.serverName = serverName; 43 } 44 45 public String toString() { 46 StringBuffer buf = new StringBuffer (); 47 buf.append("UnsetServerPropertyCmd("); 48 buf.append("serverName="); 49 buf.append(serverName); 50 buf.append(","); 51 buf.append(super.toString()); 52 buf.append(")"); 53 return buf.toString(); 54 } 55 } 56 | Popular Tags |