TelnetCommand.java
上传用户:sxqicai
上传日期:2021-04-19
资源大小:4k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Java

  1. package telnet;
  2. import java.util.Timer;
  3. public class TelnetCommand 
  4. {
  5. public String commandText; //命令
  6. public String commandOutput; //输出结果
  7. public int commandTimeLimit; //最长等待分钟数
  8. public int redoTimes ; //重做次数
  9. public String error_msg ;//指令执行错误信息
  10. public TelnetCommand (String commandText,String commandOutput)
  11. {
  12. this(commandText,commandOutput,1,1,"指令执行超时");
  13. }
  14. public TelnetCommand (String commandText,String commandOutput,int commandTimeLimit,int redoTimes,
  15. String error_msg )
  16. {
  17. this.commandText=commandText;
  18. this.commandOutput=commandOutput;
  19. this.commandTimeLimit=commandTimeLimit;
  20. this.redoTimes=redoTimes;
  21. this.error_msg=error_msg;
  22. }
  23. public TelnetCommand (String commandText,String commandOutput,int commandTimeLimit)
  24. {
  25. this.commandText=commandText;
  26. this.commandOutput=commandOutput;
  27. this.commandTimeLimit=commandTimeLimit;
  28. this.redoTimes=1;
  29. this.error_msg="指令执行超时";
  30. }
  31. public TelnetCommand()
  32. {
  33.   commandText="";
  34.   commandOutput="";
  35.   commandTimeLimit=1;
  36.   redoTimes=1;
  37.   error_msg="指令执行超时";
  38. }
  39. public TelnetCommand (String commandText,String commandOutput,String error_msg   )
  40. {
  41. this.commandText=commandText;
  42. this.commandOutput=commandOutput;
  43. this.commandTimeLimit=1;
  44. this.redoTimes=1;
  45. this.error_msg=error_msg;
  46. }
  47. }