ZLMServerConfig.java 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. package com.genersoft.iot.vmp.media.zlm;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. public class ZLMServerConfig {
  4. @JSONField(name = "api.apiDebug")
  5. private String apiDebug;
  6. @JSONField(name = "api.secret")
  7. private String apiSecret;
  8. @JSONField(name = "ffmpeg.bin")
  9. private String ffmpegBin;
  10. @JSONField(name = "ffmpeg.cmd")
  11. private String ffmpegCmd;
  12. @JSONField(name = "ffmpeg.log")
  13. private String ffmpegLog;
  14. @JSONField(name = "general.enableVhost")
  15. private String generalEnableVhost;
  16. @JSONField(name = "general.mediaServerId")
  17. private String generalMediaServerId;
  18. @JSONField(name = "general.flowThreshold")
  19. private String generalFlowThreshold;
  20. @JSONField(name = "general.maxStreamWaitMS")
  21. private String generalMaxStreamWaitMS;
  22. @JSONField(name = "general.streamNoneReaderDelayMS")
  23. private int generalStreamNoneReaderDelayMS;
  24. @JSONField(name = "ip")
  25. private String ip;
  26. private String sdpIp;
  27. private String streamIp;
  28. private String hookIp;
  29. private String updateTime;
  30. private String createTime;
  31. @JSONField(name = "hls.fileBufSize")
  32. private String hlsFileBufSize;
  33. @JSONField(name = "hls.filePath")
  34. private String hlsFilePath;
  35. @JSONField(name = "hls.segDur")
  36. private String hlsSegDur;
  37. @JSONField(name = "hls.segNum")
  38. private String hlsSegNum;
  39. @JSONField(name = "hook.access_file_except_hls")
  40. private String hookAccessFileExceptHLS;
  41. @JSONField(name = "hook.admin_params")
  42. private String hookAdminParams;
  43. @JSONField(name = "hook.alive_interval")
  44. private int hookAliveInterval;
  45. @JSONField(name = "hook.enable")
  46. private String hookEnable;
  47. @JSONField(name = "hook.on_flow_report")
  48. private String hookOnFlowReport;
  49. @JSONField(name = "hook.on_http_access")
  50. private String hookOnHttpAccess;
  51. @JSONField(name = "hook.on_play")
  52. private String hookOnPlay;
  53. @JSONField(name = "hook.on_publish")
  54. private String hookOnPublish;
  55. @JSONField(name = "hook.on_record_mp4")
  56. private String hookOnRecordMp4;
  57. @JSONField(name = "hook.on_rtsp_auth")
  58. private String hookOnRtspAuth;
  59. @JSONField(name = "hook.on_rtsp_realm")
  60. private String hookOnRtspRealm;
  61. @JSONField(name = "hook.on_shell_login")
  62. private String hookOnShellLogin;
  63. @JSONField(name = "hook.on_stream_changed")
  64. private String hookOnStreamChanged;
  65. @JSONField(name = "hook.on_stream_none_reader")
  66. private String hookOnStreamNoneReader;
  67. @JSONField(name = "hook.on_stream_not_found")
  68. private String hookOnStreamNotFound;
  69. @JSONField(name = "hook.timeoutSec")
  70. private String hookTimeoutSec;
  71. @JSONField(name = "http.charSet")
  72. private String httpCharSet;
  73. @JSONField(name = "http.keepAliveSecond")
  74. private String httpKeepAliveSecond;
  75. @JSONField(name = "http.maxReqCount")
  76. private String httpMaxReqCount;
  77. @JSONField(name = "http.maxReqSize")
  78. private String httpMaxReqSize;
  79. @JSONField(name = "http.notFound")
  80. private String httpNotFound;
  81. @JSONField(name = "http.port")
  82. private int httpPort;
  83. @JSONField(name = "http.rootPath")
  84. private String httpRootPath;
  85. @JSONField(name = "http.sendBufSize")
  86. private String httpSendBufSize;
  87. @JSONField(name = "http.sslport")
  88. private int httpSSLport;
  89. @JSONField(name = "multicast.addrMax")
  90. private String multicastAddrMax;
  91. @JSONField(name = "multicast.addrMin")
  92. private String multicastAddrMin;
  93. @JSONField(name = "multicast.udpTTL")
  94. private String multicastUdpTTL;
  95. @JSONField(name = "record.appName")
  96. private String recordAppName;
  97. @JSONField(name = "record.filePath")
  98. private String recordFilePath;
  99. @JSONField(name = "record.fileSecond")
  100. private String recordFileSecond;
  101. @JSONField(name = "record.sampleMS")
  102. private String recordFileSampleMS;
  103. @JSONField(name = "rtmp.handshakeSecond")
  104. private String rtmpHandshakeSecond;
  105. @JSONField(name = "rtmp.keepAliveSecond")
  106. private String rtmpKeepAliveSecond;
  107. @JSONField(name = "rtmp.modifyStamp")
  108. private String rtmpModifyStamp;
  109. @JSONField(name = "rtmp.port")
  110. private int rtmpPort;
  111. @JSONField(name = "rtmp.sslport")
  112. private int rtmpSslPort;
  113. @JSONField(name = "rtp.audioMtuSize")
  114. private String rtpAudioMtuSize;
  115. @JSONField(name = "rtp.clearCount")
  116. private String rtpClearCount;
  117. @JSONField(name = "rtp.cycleMS")
  118. private String rtpCycleMS;
  119. @JSONField(name = "rtp.maxRtpCount")
  120. private String rtpMaxRtpCount;
  121. @JSONField(name = "rtp.videoMtuSize")
  122. private String rtpVideoMtuSize;
  123. @JSONField(name = "rtp_proxy.checkSource")
  124. private String rtpProxyCheckSource;
  125. @JSONField(name = "rtp_proxy.dumpDir")
  126. private String rtpProxyDumpDir;
  127. @JSONField(name = "rtp_proxy.port")
  128. private int rtpProxyPort;
  129. @JSONField(name = "rtp_proxy.port_range")
  130. private String portRange;
  131. @JSONField(name = "rtp_proxy.timeoutSec")
  132. private String rtpProxyTimeoutSec;
  133. @JSONField(name = "rtsp.authBasic")
  134. private String rtspAuthBasic;
  135. @JSONField(name = "rtsp.handshakeSecond")
  136. private String rtspHandshakeSecond;
  137. @JSONField(name = "rtsp.keepAliveSecond")
  138. private String rtspKeepAliveSecond;
  139. @JSONField(name = "rtsp.port")
  140. private int rtspPort;
  141. @JSONField(name = "rtsp.sslport")
  142. private int rtspSSlport;
  143. @JSONField(name = "shell.maxReqSize")
  144. private String shellMaxReqSize;
  145. @JSONField(name = "shell.shell")
  146. private String shellPhell;
  147. public String getHookIp() {
  148. return hookIp;
  149. }
  150. public void setHookIp(String hookIp) {
  151. this.hookIp = hookIp;
  152. }
  153. public String getApiDebug() {
  154. return apiDebug;
  155. }
  156. public void setApiDebug(String apiDebug) {
  157. this.apiDebug = apiDebug;
  158. }
  159. public String getApiSecret() {
  160. return apiSecret;
  161. }
  162. public void setApiSecret(String apiSecret) {
  163. this.apiSecret = apiSecret;
  164. }
  165. public String getFfmpegBin() {
  166. return ffmpegBin;
  167. }
  168. public void setFfmpegBin(String ffmpegBin) {
  169. this.ffmpegBin = ffmpegBin;
  170. }
  171. public String getFfmpegCmd() {
  172. return ffmpegCmd;
  173. }
  174. public void setFfmpegCmd(String ffmpegCmd) {
  175. this.ffmpegCmd = ffmpegCmd;
  176. }
  177. public String getFfmpegLog() {
  178. return ffmpegLog;
  179. }
  180. public void setFfmpegLog(String ffmpegLog) {
  181. this.ffmpegLog = ffmpegLog;
  182. }
  183. public String getGeneralEnableVhost() {
  184. return generalEnableVhost;
  185. }
  186. public void setGeneralEnableVhost(String generalEnableVhost) {
  187. this.generalEnableVhost = generalEnableVhost;
  188. }
  189. public String getGeneralMediaServerId() {
  190. return generalMediaServerId;
  191. }
  192. public void setGeneralMediaServerId(String generalMediaServerId) {
  193. this.generalMediaServerId = generalMediaServerId;
  194. }
  195. public String getGeneralFlowThreshold() {
  196. return generalFlowThreshold;
  197. }
  198. public void setGeneralFlowThreshold(String generalFlowThreshold) {
  199. this.generalFlowThreshold = generalFlowThreshold;
  200. }
  201. public String getGeneralMaxStreamWaitMS() {
  202. return generalMaxStreamWaitMS;
  203. }
  204. public void setGeneralMaxStreamWaitMS(String generalMaxStreamWaitMS) {
  205. this.generalMaxStreamWaitMS = generalMaxStreamWaitMS;
  206. }
  207. public int getGeneralStreamNoneReaderDelayMS() {
  208. return generalStreamNoneReaderDelayMS;
  209. }
  210. public void setGeneralStreamNoneReaderDelayMS(int generalStreamNoneReaderDelayMS) {
  211. this.generalStreamNoneReaderDelayMS = generalStreamNoneReaderDelayMS;
  212. }
  213. public String getIp() {
  214. return ip;
  215. }
  216. public void setIp(String ip) {
  217. this.ip = ip;
  218. }
  219. public String getSdpIp() {
  220. return sdpIp;
  221. }
  222. public void setSdpIp(String sdpIp) {
  223. this.sdpIp = sdpIp;
  224. }
  225. public String getStreamIp() {
  226. return streamIp;
  227. }
  228. public void setStreamIp(String streamIp) {
  229. this.streamIp = streamIp;
  230. }
  231. public String getUpdateTime() {
  232. return updateTime;
  233. }
  234. public void setUpdateTime(String updateTime) {
  235. this.updateTime = updateTime;
  236. }
  237. public String getCreateTime() {
  238. return createTime;
  239. }
  240. public void setCreateTime(String createTime) {
  241. this.createTime = createTime;
  242. }
  243. public String getHlsFileBufSize() {
  244. return hlsFileBufSize;
  245. }
  246. public void setHlsFileBufSize(String hlsFileBufSize) {
  247. this.hlsFileBufSize = hlsFileBufSize;
  248. }
  249. public String getHlsFilePath() {
  250. return hlsFilePath;
  251. }
  252. public void setHlsFilePath(String hlsFilePath) {
  253. this.hlsFilePath = hlsFilePath;
  254. }
  255. public String getHlsSegDur() {
  256. return hlsSegDur;
  257. }
  258. public void setHlsSegDur(String hlsSegDur) {
  259. this.hlsSegDur = hlsSegDur;
  260. }
  261. public String getHlsSegNum() {
  262. return hlsSegNum;
  263. }
  264. public void setHlsSegNum(String hlsSegNum) {
  265. this.hlsSegNum = hlsSegNum;
  266. }
  267. public String getHookAccessFileExceptHLS() {
  268. return hookAccessFileExceptHLS;
  269. }
  270. public void setHookAccessFileExceptHLS(String hookAccessFileExceptHLS) {
  271. this.hookAccessFileExceptHLS = hookAccessFileExceptHLS;
  272. }
  273. public String getHookAdminParams() {
  274. return hookAdminParams;
  275. }
  276. public void setHookAdminParams(String hookAdminParams) {
  277. this.hookAdminParams = hookAdminParams;
  278. }
  279. public String getHookEnable() {
  280. return hookEnable;
  281. }
  282. public void setHookEnable(String hookEnable) {
  283. this.hookEnable = hookEnable;
  284. }
  285. public String getHookOnFlowReport() {
  286. return hookOnFlowReport;
  287. }
  288. public void setHookOnFlowReport(String hookOnFlowReport) {
  289. this.hookOnFlowReport = hookOnFlowReport;
  290. }
  291. public String getHookOnHttpAccess() {
  292. return hookOnHttpAccess;
  293. }
  294. public void setHookOnHttpAccess(String hookOnHttpAccess) {
  295. this.hookOnHttpAccess = hookOnHttpAccess;
  296. }
  297. public String getHookOnPlay() {
  298. return hookOnPlay;
  299. }
  300. public void setHookOnPlay(String hookOnPlay) {
  301. this.hookOnPlay = hookOnPlay;
  302. }
  303. public String getHookOnPublish() {
  304. return hookOnPublish;
  305. }
  306. public void setHookOnPublish(String hookOnPublish) {
  307. this.hookOnPublish = hookOnPublish;
  308. }
  309. public String getHookOnRecordMp4() {
  310. return hookOnRecordMp4;
  311. }
  312. public void setHookOnRecordMp4(String hookOnRecordMp4) {
  313. this.hookOnRecordMp4 = hookOnRecordMp4;
  314. }
  315. public String getHookOnRtspAuth() {
  316. return hookOnRtspAuth;
  317. }
  318. public void setHookOnRtspAuth(String hookOnRtspAuth) {
  319. this.hookOnRtspAuth = hookOnRtspAuth;
  320. }
  321. public String getHookOnRtspRealm() {
  322. return hookOnRtspRealm;
  323. }
  324. public void setHookOnRtspRealm(String hookOnRtspRealm) {
  325. this.hookOnRtspRealm = hookOnRtspRealm;
  326. }
  327. public String getHookOnShellLogin() {
  328. return hookOnShellLogin;
  329. }
  330. public void setHookOnShellLogin(String hookOnShellLogin) {
  331. this.hookOnShellLogin = hookOnShellLogin;
  332. }
  333. public String getHookOnStreamChanged() {
  334. return hookOnStreamChanged;
  335. }
  336. public void setHookOnStreamChanged(String hookOnStreamChanged) {
  337. this.hookOnStreamChanged = hookOnStreamChanged;
  338. }
  339. public String getHookOnStreamNoneReader() {
  340. return hookOnStreamNoneReader;
  341. }
  342. public void setHookOnStreamNoneReader(String hookOnStreamNoneReader) {
  343. this.hookOnStreamNoneReader = hookOnStreamNoneReader;
  344. }
  345. public String getHookOnStreamNotFound() {
  346. return hookOnStreamNotFound;
  347. }
  348. public void setHookOnStreamNotFound(String hookOnStreamNotFound) {
  349. this.hookOnStreamNotFound = hookOnStreamNotFound;
  350. }
  351. public String getHookTimeoutSec() {
  352. return hookTimeoutSec;
  353. }
  354. public void setHookTimeoutSec(String hookTimeoutSec) {
  355. this.hookTimeoutSec = hookTimeoutSec;
  356. }
  357. public String getHttpCharSet() {
  358. return httpCharSet;
  359. }
  360. public void setHttpCharSet(String httpCharSet) {
  361. this.httpCharSet = httpCharSet;
  362. }
  363. public String getHttpKeepAliveSecond() {
  364. return httpKeepAliveSecond;
  365. }
  366. public void setHttpKeepAliveSecond(String httpKeepAliveSecond) {
  367. this.httpKeepAliveSecond = httpKeepAliveSecond;
  368. }
  369. public String getHttpMaxReqCount() {
  370. return httpMaxReqCount;
  371. }
  372. public void setHttpMaxReqCount(String httpMaxReqCount) {
  373. this.httpMaxReqCount = httpMaxReqCount;
  374. }
  375. public String getHttpMaxReqSize() {
  376. return httpMaxReqSize;
  377. }
  378. public void setHttpMaxReqSize(String httpMaxReqSize) {
  379. this.httpMaxReqSize = httpMaxReqSize;
  380. }
  381. public String getHttpNotFound() {
  382. return httpNotFound;
  383. }
  384. public void setHttpNotFound(String httpNotFound) {
  385. this.httpNotFound = httpNotFound;
  386. }
  387. public int getHttpPort() {
  388. return httpPort;
  389. }
  390. public void setHttpPort(int httpPort) {
  391. this.httpPort = httpPort;
  392. }
  393. public String getHttpRootPath() {
  394. return httpRootPath;
  395. }
  396. public void setHttpRootPath(String httpRootPath) {
  397. this.httpRootPath = httpRootPath;
  398. }
  399. public String getHttpSendBufSize() {
  400. return httpSendBufSize;
  401. }
  402. public void setHttpSendBufSize(String httpSendBufSize) {
  403. this.httpSendBufSize = httpSendBufSize;
  404. }
  405. public int getHttpSSLport() {
  406. return httpSSLport;
  407. }
  408. public void setHttpSSLport(int httpSSLport) {
  409. this.httpSSLport = httpSSLport;
  410. }
  411. public String getMulticastAddrMax() {
  412. return multicastAddrMax;
  413. }
  414. public void setMulticastAddrMax(String multicastAddrMax) {
  415. this.multicastAddrMax = multicastAddrMax;
  416. }
  417. public String getMulticastAddrMin() {
  418. return multicastAddrMin;
  419. }
  420. public void setMulticastAddrMin(String multicastAddrMin) {
  421. this.multicastAddrMin = multicastAddrMin;
  422. }
  423. public String getMulticastUdpTTL() {
  424. return multicastUdpTTL;
  425. }
  426. public void setMulticastUdpTTL(String multicastUdpTTL) {
  427. this.multicastUdpTTL = multicastUdpTTL;
  428. }
  429. public String getRecordAppName() {
  430. return recordAppName;
  431. }
  432. public void setRecordAppName(String recordAppName) {
  433. this.recordAppName = recordAppName;
  434. }
  435. public String getRecordFilePath() {
  436. return recordFilePath;
  437. }
  438. public void setRecordFilePath(String recordFilePath) {
  439. this.recordFilePath = recordFilePath;
  440. }
  441. public String getRecordFileSecond() {
  442. return recordFileSecond;
  443. }
  444. public void setRecordFileSecond(String recordFileSecond) {
  445. this.recordFileSecond = recordFileSecond;
  446. }
  447. public String getRecordFileSampleMS() {
  448. return recordFileSampleMS;
  449. }
  450. public void setRecordFileSampleMS(String recordFileSampleMS) {
  451. this.recordFileSampleMS = recordFileSampleMS;
  452. }
  453. public String getRtmpHandshakeSecond() {
  454. return rtmpHandshakeSecond;
  455. }
  456. public void setRtmpHandshakeSecond(String rtmpHandshakeSecond) {
  457. this.rtmpHandshakeSecond = rtmpHandshakeSecond;
  458. }
  459. public String getRtmpKeepAliveSecond() {
  460. return rtmpKeepAliveSecond;
  461. }
  462. public void setRtmpKeepAliveSecond(String rtmpKeepAliveSecond) {
  463. this.rtmpKeepAliveSecond = rtmpKeepAliveSecond;
  464. }
  465. public String getRtmpModifyStamp() {
  466. return rtmpModifyStamp;
  467. }
  468. public void setRtmpModifyStamp(String rtmpModifyStamp) {
  469. this.rtmpModifyStamp = rtmpModifyStamp;
  470. }
  471. public int getRtmpPort() {
  472. return rtmpPort;
  473. }
  474. public void setRtmpPort(int rtmpPort) {
  475. this.rtmpPort = rtmpPort;
  476. }
  477. public int getRtmpSslPort() {
  478. return rtmpSslPort;
  479. }
  480. public void setRtmpSslPort(int rtmpSslPort) {
  481. this.rtmpSslPort = rtmpSslPort;
  482. }
  483. public String getRtpAudioMtuSize() {
  484. return rtpAudioMtuSize;
  485. }
  486. public void setRtpAudioMtuSize(String rtpAudioMtuSize) {
  487. this.rtpAudioMtuSize = rtpAudioMtuSize;
  488. }
  489. public String getRtpClearCount() {
  490. return rtpClearCount;
  491. }
  492. public void setRtpClearCount(String rtpClearCount) {
  493. this.rtpClearCount = rtpClearCount;
  494. }
  495. public String getRtpCycleMS() {
  496. return rtpCycleMS;
  497. }
  498. public void setRtpCycleMS(String rtpCycleMS) {
  499. this.rtpCycleMS = rtpCycleMS;
  500. }
  501. public String getRtpMaxRtpCount() {
  502. return rtpMaxRtpCount;
  503. }
  504. public void setRtpMaxRtpCount(String rtpMaxRtpCount) {
  505. this.rtpMaxRtpCount = rtpMaxRtpCount;
  506. }
  507. public String getRtpVideoMtuSize() {
  508. return rtpVideoMtuSize;
  509. }
  510. public void setRtpVideoMtuSize(String rtpVideoMtuSize) {
  511. this.rtpVideoMtuSize = rtpVideoMtuSize;
  512. }
  513. public String getRtpProxyCheckSource() {
  514. return rtpProxyCheckSource;
  515. }
  516. public void setRtpProxyCheckSource(String rtpProxyCheckSource) {
  517. this.rtpProxyCheckSource = rtpProxyCheckSource;
  518. }
  519. public String getRtpProxyDumpDir() {
  520. return rtpProxyDumpDir;
  521. }
  522. public void setRtpProxyDumpDir(String rtpProxyDumpDir) {
  523. this.rtpProxyDumpDir = rtpProxyDumpDir;
  524. }
  525. public int getRtpProxyPort() {
  526. return rtpProxyPort;
  527. }
  528. public void setRtpProxyPort(int rtpProxyPort) {
  529. this.rtpProxyPort = rtpProxyPort;
  530. }
  531. public String getRtpProxyTimeoutSec() {
  532. return rtpProxyTimeoutSec;
  533. }
  534. public void setRtpProxyTimeoutSec(String rtpProxyTimeoutSec) {
  535. this.rtpProxyTimeoutSec = rtpProxyTimeoutSec;
  536. }
  537. public String getRtspAuthBasic() {
  538. return rtspAuthBasic;
  539. }
  540. public void setRtspAuthBasic(String rtspAuthBasic) {
  541. this.rtspAuthBasic = rtspAuthBasic;
  542. }
  543. public String getRtspHandshakeSecond() {
  544. return rtspHandshakeSecond;
  545. }
  546. public void setRtspHandshakeSecond(String rtspHandshakeSecond) {
  547. this.rtspHandshakeSecond = rtspHandshakeSecond;
  548. }
  549. public String getRtspKeepAliveSecond() {
  550. return rtspKeepAliveSecond;
  551. }
  552. public void setRtspKeepAliveSecond(String rtspKeepAliveSecond) {
  553. this.rtspKeepAliveSecond = rtspKeepAliveSecond;
  554. }
  555. public int getRtspPort() {
  556. return rtspPort;
  557. }
  558. public void setRtspPort(int rtspPort) {
  559. this.rtspPort = rtspPort;
  560. }
  561. public int getRtspSSlport() {
  562. return rtspSSlport;
  563. }
  564. public void setRtspSSlport(int rtspSSlport) {
  565. this.rtspSSlport = rtspSSlport;
  566. }
  567. public String getShellMaxReqSize() {
  568. return shellMaxReqSize;
  569. }
  570. public void setShellMaxReqSize(String shellMaxReqSize) {
  571. this.shellMaxReqSize = shellMaxReqSize;
  572. }
  573. public String getShellPhell() {
  574. return shellPhell;
  575. }
  576. public void setShellPhell(String shellPhell) {
  577. this.shellPhell = shellPhell;
  578. }
  579. public int getHookAliveInterval() {
  580. return hookAliveInterval;
  581. }
  582. public void setHookAliveInterval(int hookAliveInterval) {
  583. this.hookAliveInterval = hookAliveInterval;
  584. }
  585. public String getPortRange() {
  586. return portRange;
  587. }
  588. public void setPortRange(String portRange) {
  589. this.portRange = portRange;
  590. }
  591. }