1 19 20 package fr.dyade.aaa.agent; 21 22 import fr.dyade.aaa.admin.cmd.ExceptionCmd; 23 import fr.dyade.aaa.admin.script.*; 24 25 34 public class AdminReplyNot extends Notification { 35 36 37 public ExceptionCmd exc = null; 38 39 public StartScript startScript = null; 40 41 public StopScript stopScript = null; 42 43 public int status = 0; 44 45 public AdminReplyNot() {} 46 47 public AdminReplyNot(ExceptionCmd exc) { 48 this.exc = exc; 49 } 50 51 59 public StringBuffer toString(StringBuffer output) { 60 output.append('('); 61 super.toString(output); 62 output.append(",exc=").append(exc); 63 output.append(')'); 64 65 return output; 66 } 67 } 68 | Popular Tags |