1 22 package fr.dyade.aaa.admin.cmd; 23 24 import java.io.*; 25 import java.util.*; 26 27 public class NewServiceCmd extends ServiceCmd implements Serializable { 28 29 36 public NewServiceCmd(String serverName, String className, String args) { 37 super(serverName,className,args); 38 } 39 40 public String toString() { 41 return "NewServiceCmd" + super.toString(); 42 } 43 } 44 | Popular Tags |