From afee2acf8baa326665a3a3d7e10ab0f48cd06e2e Mon Sep 17 00:00:00 2001 From: huangxin Date: Wed, 22 Apr 2020 19:25:39 +0800 Subject: [PATCH] =?UTF-8?q?OCT=20REM:=201.=20=E8=A7=A3=E5=86=B3=E9=83=A8?= =?UTF-8?q?=E5=88=86SOAP=E6=A1=86=E6=9E=B6CheckStyle=E8=AD=A6=E5=91=8A=202?= =?UTF-8?q?.=20=E5=A2=9E=E5=8A=A0=E8=8E=B7=E5=8F=96=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E4=BF=A1=E6=81=AF=E6=8E=A5=E5=8F=A3=203.=20?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=8E=B7=E5=8F=96=E7=B3=BB=E7=BB=9F=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=204.=20=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95=E4=BD=BF=E7=94=A8T?= =?UTF-8?q?oken=E9=AA=8C=E8=AF=81=204.=20=E5=8D=95=E5=85=83=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E4=BD=BF=E7=94=A8=E7=94=A8=E6=88=B7=E6=9D=83=E9=99=90?= =?UTF-8?q?=E9=AA=8C=E8=AF=81=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/application-test.properties | 22 +- .../java/com/dispose/help/GetVersion.java | 16 + .../dispose/mapper/DisposeDeviceMapper.java | 7 - ...normalFlowCleaningServiceHttpPortImpl.java | 1290 +++++++--------- .../AbnormalFlowCleaningServicePortType.java | 1329 ++++++++++++++++- .../dispose/Global/InitTestEnvironment.java | 39 + .../TestSuit/AllDisposePlatformTest.java | 4 + .../java/com/dispose/config/MyConfigTest.java | 25 + .../controller/AuthControllerTest.java | 22 +- .../DeviceNodeInfoControllerTest.java | 94 +- .../DeviceNodeManagerControllerTest.java | 42 +- .../controller/TaskControllerTest.java | 22 +- .../dptech/DPTechInterfaceTestCase.java | 4 + .../java/com/dispose/help/GetVersionTest.java | 38 + .../manager/UserAccountManagerTest.java | 3 + .../dispose/mapper/UserAccountMapperTest.java | 2 + .../service/UserAccountServiceTest.java | 32 +- 17 files changed, 2157 insertions(+), 834 deletions(-) create mode 100644 src/main/java/com/dispose/help/GetVersion.java create mode 100644 src/test/java/com/dispose/config/MyConfigTest.java create mode 100644 src/test/java/com/dispose/help/GetVersionTest.java diff --git a/config/application-test.properties b/config/application-test.properties index 0611af5d..0089fcc6 100644 --- a/config/application-test.properties +++ b/config/application-test.properties @@ -2,10 +2,11 @@ server.port=9276 # 根据自身环境修改 server.tomcat.basedir=./basedir # 多个项目放在nginx下同个端口,通过该配置区分 -server.servlet.context-path=/phoenix +server.servlet.context-path=/dispose # 配置数据源 -spring.datasource.url=jdbc:mysql://172.28.72.118:33061/phoenix_local?serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull&useUnicode=true +spring.datasource.url=jdbc:mysql://172.28.72.118:33061/dispose_test?serverTimezone=Asia/Shanghai&zeroDateTimeBehavior\ + =convertToNull&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.username=phoenix spring.datasource.password=Hy@rfph32 @@ -33,18 +34,22 @@ logging.config=file:config/logback.xml #config tomcat server.tomcat.max-threads=128 +#Json sort +spring.jackson.mapper.sort-properties-alphabetically=true + #====custom config,begin with phoenix==== #test phoenix.system-name=phoenix framework #config the swagger api switch true:可访问;false:不可访问 phoenix.swagger-switch=true -#config which client to use in redis,jedis or redisson -phoenix.redis.type=redisson +#config which client to use in redis, +#jedis or redisson-sentinel,redisson-single +phoenix.redis.type=redisson-single #config redis info #jedis config example>redis://:dfu56li_jdo8pd@172.28.72.111:7379/0,多个用逗号分隔 #redisson sentinel config example>redis://172.28.72.104:28379,redis://172.28.72.124:28380,redis://172.28.72.124:28381 -phoenix.redis-server=redis://172.28.72.104:28379,redis://172.28.72.124:28380,redis://172.28.72.124:28381 -#redis://172.28.72.113:7379/2 +#redisson single config example>redis://172.28.72.104:8380 +phoenix.redis-server=redis://172.28.72.104:8380 phoenix.redis-redisson-sentinel-master-name=mymaster phoenix.redis-redisson-pwd=cmcc2019 #config request dec switch,true=dec,false=plain do nothing @@ -56,3 +61,8 @@ phoenix.aes-key=Wt4EJu6Rrq5udd/42bNpCQ== #====custom config,begin with phoenix==== + +#调试配置 +dispose.check-protocol-timeout=false +dispose.check-request-token=true +dispose.check-admin-permission=true diff --git a/src/main/java/com/dispose/help/GetVersion.java b/src/main/java/com/dispose/help/GetVersion.java new file mode 100644 index 00000000..1467806d --- /dev/null +++ b/src/main/java/com/dispose/help/GetVersion.java @@ -0,0 +1,16 @@ +package com.dispose.help; + +import lombok.Builder; +import lombok.Getter; +import lombok.Setter; + +@Setter +@Getter +@Builder +public class GetVersion { + private String commitId; + private String commitDescribe; + private String commitTime; + private String tagName; + private String tags; +} diff --git a/src/main/java/com/dispose/mapper/DisposeDeviceMapper.java b/src/main/java/com/dispose/mapper/DisposeDeviceMapper.java index f79a6fae..1264f818 100644 --- a/src/main/java/com/dispose/mapper/DisposeDeviceMapper.java +++ b/src/main/java/com/dispose/mapper/DisposeDeviceMapper.java @@ -55,11 +55,4 @@ public interface DisposeDeviceMapper extends Mapper, * @param ipAddr the ip addr */ void delDisposeDeviceByIp(String ipAddr); - - /** - * Del dispose device by ip. - * - * @param id the id - */ - void delDisposeDeviceByIp(Long id); } diff --git a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServiceHttpPortImpl.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServiceHttpPortImpl.java index e2e96df2..ac8a4026 100644 --- a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServiceHttpPortImpl.java +++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServiceHttpPortImpl.java @@ -1,8 +1,3 @@ -/** - * Please modify this class to meet your needs - * This class is not complete - */ - package com.dptech.dispose; import java.util.logging.Logger; @@ -22,6 +17,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea private static final Logger LOG = Logger.getLogger(AbnormalFlowCleaningServiceHttpPortImpl.class.getName()); + /** * Add dns sip custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -33,13 +29,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDnsSipCustomV4ForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String sipstart, java.lang.String sipend, java.lang.String protectthreshold, - * java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDnsSipCustomV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String sipstart, java.lang.String sipend, java.lang.String protectthreshold, + java.lang.String name, + java.lang.String sipstart, + java.lang.String sipend, + java.lang.String protectthreshold, java.lang.String action) { LOG.info("Executing operation addDnsSipCustomV4ForUMC"); System.out.println(objName); @@ -57,15 +51,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets dns sip custom v 4 from umc. * * @param objName the obj name * @return the dns sip custom v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDnsSipCustomV4FromUMC(java.lang.String objName)* - */ public com.dptech.dispose.ArrayOfDnsSipCustomV4ForService getDnsSipCustomV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDnsSipCustomV4FromUMC"); System.out.println(objName); @@ -78,16 +70,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global icmp payload from umc. * * @param objName the obj name * @return the ddos global icmp payload from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalIcmpPayloadFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalIcmpPayloadForService getDdosGlobalIcmpPayloadFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalIcmpPayloadFromUMC"); System.out.println(objName); @@ -100,6 +89,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Stop abnormal task with specific device for umc com . dptech . dispose . ntc request result info. * @@ -109,10 +99,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleanDeviceIps the clean device ips * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#stopAbnormalTaskWithSpecificDeviceForUMC(java.lang - * .String abnormalIp, int attackType, int direction, java.lang.String cleanDeviceIps)* - */ public com.dptech.dispose.NtcRequestResultInfo stopAbnormalTaskWithSpecificDeviceForUMC(java.lang.String abnormalIp, int attackType, int direction, java.lang.String cleanDeviceIps) { LOG.info("Executing operation stopAbnormalTaskWithSpecificDeviceForUMC"); System.out.println(abnormalIp); @@ -128,6 +114,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add dns sec domain custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -138,13 +125,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDnsSecDomainCustomV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDnsSecDomainCustomV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String domain, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation addDnsSecDomainCustomV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -160,6 +145,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod dns sip custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -171,13 +157,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDnsSipCustomV4ForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String sipstart, java.lang.String sipend, java.lang.String protectthreshold, - * java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDnsSipCustomV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String sipstart, java.lang.String sipend, java.lang.String protectthreshold, + java.lang.String name, + java.lang.String sipstart, + java.lang.String sipend, + java.lang.String protectthreshold, java.lang.String action) { LOG.info("Executing operation modDnsSipCustomV4ForUMC"); System.out.println(objName); @@ -195,6 +179,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add dns sec domain global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -204,12 +189,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDnsSecDomainGlobalV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDnsSecDomainGlobalV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation addDnsSecDomainGlobalV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -224,14 +207,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all complete anomaly detection strategy from umc. * * @return the all complete anomaly detection strategy from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllCompleteAnomalyDetectionStrategyFromUMC()* - */ public com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllCompleteAnomalyDetectionStrategyFromUMC() { LOG.info("Executing operation getAllCompleteAnomalyDetectionStrategyFromUMC"); try { @@ -243,14 +224,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all detect devices. * * @return the all detect devices */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllDetectDevices()* - */ public java.lang.String getAllDetectDevices() { LOG.info("Executing operation getAllDetectDevices"); try { @@ -262,16 +241,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Start black hole strategy for umc com . dptech . dispose . ntc request result info. * * @param policyName the policy name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#startBlackHoleStrategyForUMC(java.lang.String - * policyName)* - */ public com.dptech.dispose.NtcRequestResultInfo startBlackHoleStrategyForUMC(java.lang.String policyName) { LOG.info("Executing operation startBlackHoleStrategyForUMC"); System.out.println(policyName); @@ -284,16 +260,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos http get sip cus pro v 4 from umc. * * @param objName the obj name * @return the ddos http get sip cus pro v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosHttpGetSipCusProV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDdosHttpGetSipCusProV4ForService getDdosHttpGetSipCusProV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosHttpGetSipCusProV4FromUMC"); System.out.println(objName); @@ -306,16 +279,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos dns retry protect from umc. * * @param objName the obj name * @return the ddos dns retry protect from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosDnsRetryProtectFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDdosDnsRetryProtectForService getDdosDnsRetryProtectFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosDnsRetryProtectFromUMC"); System.out.println(objName); @@ -328,16 +298,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global tcp length from umc. * * @param objName the obj name * @return the ddos global tcp length from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpLengthFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalTcpLengthForService getDdosGlobalTcpLengthFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalTcpLengthFromUMC"); System.out.println(objName); @@ -350,16 +317,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos http get sip glo pro v 4 from umc. * * @param objName the obj name * @return the ddos http get sip glo pro v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosHttpGetSipGloProV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDdosHttpGetSipGloProV4ForService getDdosHttpGetSipGloProV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosHttpGetSipGloProV4FromUMC"); System.out.println(objName); @@ -372,14 +336,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all black and white list from umc. * * @return the all black and white list from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBlackAndWhiteListFromUMC()* - */ public com.dptech.dispose.ArrayOfBlackAndWhiteListDataForService getAllBlackAndWhiteListFromUMC() { LOG.info("Executing operation getAllBlackAndWhiteListFromUMC"); try { @@ -391,16 +353,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global udp payload from umc. * * @param objName the obj name * @return the ddos global udp payload from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalUdpPayloadFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalUdpPayloadForService getDdosGlobalUdpPayloadFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalUdpPayloadFromUMC"); System.out.println(objName); @@ -413,6 +372,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del ddos dns retry protect for umc com . dptech . dispose . ntc request result info. * @@ -420,10 +380,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDdosDnsRetryProtectForUMC(java.lang.String - * name, java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDdosDnsRetryProtectForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDdosDnsRetryProtectForUMC"); @@ -438,14 +394,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all bypass manual traction strategy from umc. * * @return the all bypass manual traction strategy from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBypassManualTractionStrategyFromUMC()* - */ public com.dptech.dispose.ArrayOfBypassManualTractionStrategyForService getAllBypassManualTractionStrategyFromUMC() { LOG.info("Executing operation getAllBypassManualTractionStrategyFromUMC"); try { @@ -457,6 +411,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Disable protection strategy template for umc com . dptech . dispose . ntc request result info. * @@ -464,10 +419,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param templateName the template name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#disableProtectionStrategyTemplateForUMC(java.lang - * .String protectName, java.lang.String templateName)* - */ public com.dptech.dispose.NtcRequestResultInfo disableProtectionStrategyTemplateForUMC(java.lang.String protectName, java.lang.String templateName) { LOG.info("Executing operation disableProtectionStrategyTemplateForUMC"); System.out.println(protectName); @@ -481,6 +432,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del fingerprint icmp for umc com . dptech . dispose . ntc request result info. * @@ -488,10 +440,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delFingerprintIcmpForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delFingerprintIcmpForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delFingerprintIcmpForUMC"); @@ -506,6 +454,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod dns domain global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -515,12 +464,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDnsDomainGlobalV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDnsDomainGlobalV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation modDnsDomainGlobalV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -535,6 +482,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Start abnormal task with specific device for umc com . dptech . dispose . ntc request result info. * @@ -544,10 +492,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleanDeviceIps the clean device ips * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#startAbnormalTaskWithSpecificDeviceForUMC(java - * .lang.String abnormalIp, int attackType, int direction, java.lang.String cleanDeviceIps)* - */ public com.dptech.dispose.NtcRequestResultInfo startAbnormalTaskWithSpecificDeviceForUMC(java.lang.String abnormalIp, int attackType, int direction, java.lang.String cleanDeviceIps) { LOG.info("Executing operation startAbnormalTaskWithSpecificDeviceForUMC"); System.out.println(abnormalIp); @@ -563,16 +507,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos c cuser group v 4 from umc. * * @param objName the obj name * @return the ddos c cuser group v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosCCuserGroupV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDdosCCuserGroupV4ForService getDdosCCuserGroupV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosCCuserGroupV4FromUMC"); System.out.println(objName); @@ -585,15 +526,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets fingerprint icmp from umc. * * @param objName the obj name * @return the fingerprint icmp from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getFingerprintIcmpFromUMC(java.lang.String objName)* - */ public com.dptech.dispose.ArrayOfFingerprintIcmpForService getFingerprintIcmpFromUMC(java.lang.String objName) { LOG.info("Executing operation getFingerprintIcmpFromUMC"); System.out.println(objName); @@ -606,6 +545,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del fingerprint tcp for umc com . dptech . dispose . ntc request result info. * @@ -613,10 +553,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delFingerprintTcpForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delFingerprintTcpForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delFingerprintTcpForUMC"); @@ -631,6 +567,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del dns sec domain global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -638,10 +575,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDnsSecDomainGlobalV4ForUMC(java.lang.String - * name, java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDnsSecDomainGlobalV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDnsSecDomainGlobalV4ForUMC"); @@ -656,6 +589,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del ddos http get uri cus pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -663,10 +597,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDdosHttpGetUriCusProV4ForUMC(java.lang.String - * name, java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetUriCusProV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDdosHttpGetUriCusProV4ForUMC"); @@ -681,6 +611,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add fingerprint tcp for umc com . dptech . dispose . ntc request result info. * @@ -717,26 +648,37 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addFingerprintTcpForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - * java.lang.String port1, java.lang.String flag1, java.lang.String ip1, java.lang.String mask1, java.lang.String - * enable1, java.lang.String custom1, java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String - * keylength2, java.lang.String port2, java.lang.String flag2, java.lang.String ip2, java.lang.String mask2, java - * .lang.String enable2, java.lang.String custom2, java.lang.String keytype3, java.lang.String keyoffset3, java - * .lang.String keylength3, java.lang.String port3, java.lang.String flag3, java.lang.String ip3, java.lang - * .String mask3, java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang - * .String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addFingerprintTcpForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String port1, java.lang.String flag1, java.lang.String ip1, java.lang.String mask1, - java.lang.String enable1, java.lang.String custom1, java.lang.String keytype2, java.lang.String keyoffset2, - java.lang.String keylength2, java.lang.String port2, java.lang.String flag2, java.lang.String ip2, - java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, - java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String port3, java.lang.String flag3, - java.lang.String ip3, java.lang.String mask3, java.lang.String enable3, java.lang.String custom3, - java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String port1, + java.lang.String flag1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, + java.lang.String custom1, + java.lang.String keytype2, + java.lang.String keyoffset2, + java.lang.String keylength2, + java.lang.String port2, + java.lang.String flag2, + java.lang.String ip2, + java.lang.String mask2, + java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, + java.lang.String keylength3, + java.lang.String port3, + java.lang.String flag3, + java.lang.String ip3, + java.lang.String mask3, + java.lang.String enable3, + java.lang.String custom3, + java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation addFingerprintTcpForUMC"); System.out.println(objName); System.out.println(name); @@ -778,14 +720,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all protection strategy template from umc. * * @return the all protection strategy template from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllProtectionStrategyTemplateFromUMC()* - */ public com.dptech.dispose.ArrayOfProtectionStrategyTemplateForService getAllProtectionStrategyTemplateFromUMC() { LOG.info("Executing operation getAllProtectionStrategyTemplateFromUMC"); try { @@ -797,6 +737,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add fingerprint icmp for umc com . dptech . dispose . ntc request result info. * @@ -827,22 +768,31 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addFingerprintIcmpForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - * java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, java.lang - * .String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, java.lang - * .String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, java.lang.String - * keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, java.lang.String - * enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addFingerprintIcmpForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, - java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, - java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, - java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, - java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, + java.lang.String custom1, + java.lang.String keytype2, + java.lang.String keyoffset2, + java.lang.String keylength2, + java.lang.String ip2, + java.lang.String mask2, + java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, + java.lang.String keylength3, + java.lang.String ip3, + java.lang.String mask3, + java.lang.String enable3, + java.lang.String custom3, + java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation addFingerprintIcmpForUMC"); System.out.println(objName); System.out.println(name); @@ -878,6 +828,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Modify detection object for umc com . dptech . dispose . ntc request result info. * @@ -887,12 +838,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleaningType the cleaning type * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modifyDetectionObjectForUMC(java.lang.String - * detectionName, java.lang.String ipSegment, int ipType, int cleaningType)* - */ public com.dptech.dispose.NtcRequestResultInfo modifyDetectionObjectForUMC(java.lang.String detectionName, - java.lang.String ipSegment, int ipType, int cleaningType) { + java.lang.String ipSegment, int ipType + , int cleaningType) { LOG.info("Executing operation modifyDetectionObjectForUMC"); System.out.println(detectionName); System.out.println(ipSegment); @@ -907,6 +855,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Delete protection object ip range for umc com . dptech . dispose . ntc request result info. * @@ -914,10 +863,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param ipRangeIDs the ip range i ds * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#deleteProtectionObjectIPRangeForUMC(java.lang - * .String protectionName, java.lang.String ipRangeIDs)* - */ public com.dptech.dispose.NtcRequestResultInfo deleteProtectionObjectIPRangeForUMC(java.lang.String protectionName, java.lang.String ipRangeIDs) { LOG.info("Executing operation deleteProtectionObjectIPRangeForUMC"); System.out.println(protectionName); @@ -931,6 +876,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod black hole auto strategy for umc com . dptech . dispose . ntc request result info. * @@ -940,12 +886,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param blackHoleTime the black hole time * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modBlackHoleAutoStrategyForUMC(java.lang.String - * policyName, int detectMode, int blackHoleThreshold, int blackHoleTime)* - */ public com.dptech.dispose.NtcRequestResultInfo modBlackHoleAutoStrategyForUMC(java.lang.String policyName, - int detectMode, int blackHoleThreshold, int blackHoleTime) { + int detectMode, + int blackHoleThreshold, + int blackHoleTime) { LOG.info("Executing operation modBlackHoleAutoStrategyForUMC"); System.out.println(policyName); System.out.println(detectMode); @@ -960,6 +904,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod ac protection for umc com . dptech . dispose . ntc request result info. * @@ -981,18 +926,22 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param threshold the threshold * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modACProtectionForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String fixString, java.lang.String startLocation, java.lang.String - * endLocation, java.lang.String regularExpression, java.lang.String acSip, java.lang.String acSmask, java.lang - * .String acDip, java.lang.String acDmask, java.lang.String protocol, java.lang.String srcPortMin, java.lang - * .String srcPortMax, java.lang.String dstPortMin, java.lang.String dstPortMax, java.lang.String threshold)* - */ public com.dptech.dispose.NtcRequestResultInfo modACProtectionForUMC(java.lang.String objName, - java.lang.String name, java.lang.String fixString, java.lang.String startLocation, java.lang.String endLocation, - java.lang.String regularExpression, java.lang.String acSip, java.lang.String acSmask, java.lang.String acDip, - java.lang.String acDmask, java.lang.String protocol, java.lang.String srcPortMin, java.lang.String srcPortMax, - java.lang.String dstPortMin, java.lang.String dstPortMax, java.lang.String threshold) { + java.lang.String name, + java.lang.String fixString, + java.lang.String startLocation, + java.lang.String endLocation, + java.lang.String regularExpression, + java.lang.String acSip, + java.lang.String acSmask, + java.lang.String acDip, + java.lang.String acDmask, + java.lang.String protocol, + java.lang.String srcPortMin, + java.lang.String srcPortMax, + java.lang.String dstPortMin, + java.lang.String dstPortMax, + java.lang.String threshold) { LOG.info("Executing operation modACProtectionForUMC"); System.out.println(objName); System.out.println(name); @@ -1019,6 +968,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod ddos http get uri cus pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1029,13 +979,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDdosHttpGetUriCusProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String uri, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetUriCusProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String uri, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String uri, + java.lang.String protectthreshold, java.lang.String action) { LOG.info("Executing operation modDdosHttpGetUriCusProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -1051,6 +998,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod ddos c cuser group v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1058,10 +1006,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param name the name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDdosCCuserGroupV4ForUMC(java.lang.String - * objName, java.lang.String name)* - */ public com.dptech.dispose.NtcRequestResultInfo modDdosCCuserGroupV4ForUMC(java.lang.String objName, java.lang.String name) { LOG.info("Executing operation modDdosCCuserGroupV4ForUMC"); @@ -1076,16 +1020,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global icmp frag from umc. * * @param objName the obj name * @return the ddos global icmp frag from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalIcmpFragFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalIcmpFragForService getDdosGlobalIcmpFragFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalIcmpFragFromUMC"); System.out.println(objName); @@ -1098,6 +1039,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod dns domain custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1108,13 +1050,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDnsDomainCustomV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDnsDomainCustomV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String domain, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation modDnsDomainCustomV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -1130,6 +1070,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod black hole manual strategy for umc com . dptech . dispose . ntc request result info. * @@ -1137,10 +1078,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param ipAddress the ip address * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modBlackHoleManualStrategyForUMC(java.lang.String - * policyName, java.lang.String ipAddress)* - */ public com.dptech.dispose.NtcRequestResultInfo modBlackHoleManualStrategyForUMC(java.lang.String policyName, java.lang.String ipAddress) { LOG.info("Executing operation modBlackHoleManualStrategyForUMC"); @@ -1155,14 +1092,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all black hole manual strategy from umc. * * @return the all black hole manual strategy from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBlackHoleManualStrategyFromUMC()* - */ public com.dptech.dispose.ArrayOfBlackHoleManualStrategyForService getAllBlackHoleManualStrategyFromUMC() { LOG.info("Executing operation getAllBlackHoleManualStrategyFromUMC"); try { @@ -1174,6 +1109,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod dns sip global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1183,12 +1119,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDnsSipGlobalV4ForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDnsSipGlobalV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation modDnsSipGlobalV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -1203,6 +1137,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add one key detection com . dptech . dispose . ntc request result info. * @@ -1213,12 +1148,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param business the business * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addOneKeyDetection(java.lang.String protectIp, - * java.lang.String attackType, java.lang.String direction, java.lang.String bandwidth, java.lang.String business)* - */ public com.dptech.dispose.NtcRequestResultInfo addOneKeyDetection(java.lang.String protectIp, - java.lang.String attackType, java.lang.String direction, java.lang.String bandwidth, java.lang.String business) { + java.lang.String attackType, + java.lang.String direction, + java.lang.String bandwidth, + java.lang.String business) { LOG.info("Executing operation addOneKeyDetection"); System.out.println(protectIp); System.out.println(attackType); @@ -1234,6 +1168,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add ddos http get uri glo pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1243,12 +1178,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDdosHttpGetUriGloProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetUriGloProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold + , java.lang.String action) { LOG.info("Executing operation addDdosHttpGetUriGloProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -1263,6 +1196,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add black hole manual strategy for umc com . dptech . dispose . ntc request result info. * @@ -1271,12 +1205,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param ipAddress the ip address * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addBlackHoleManualStrategyForUMC(java.lang.String - * policyName, java.lang.String detectName, java.lang.String ipAddress)* - */ public com.dptech.dispose.NtcRequestResultInfo addBlackHoleManualStrategyForUMC(java.lang.String policyName, - java.lang.String detectName, java.lang.String ipAddress) { + java.lang.String detectName, + java.lang.String ipAddress) { LOG.info("Executing operation addBlackHoleManualStrategyForUMC"); System.out.println(policyName); System.out.println(detectName); @@ -1290,6 +1221,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global udp length for umc. * @@ -1299,12 +1231,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param maxlength the maxlength * @return the ddos global udp length for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalUdpLengthForUMC(java.lang.String - * objName, java.lang.String lengthenable, java.lang.String minlength, java.lang.String maxlength)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalUdpLengthForUMC(java.lang.String objName, - java.lang.String lengthenable, java.lang.String minlength, java.lang.String maxlength) { + java.lang.String lengthenable, + java.lang.String minlength, + java.lang.String maxlength) { LOG.info("Executing operation setDdosGlobalUdpLengthForUMC"); System.out.println(objName); System.out.println(lengthenable); @@ -1319,6 +1249,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add one key restore com . dptech . dispose . ntc request result info. * @@ -1327,12 +1258,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param direction the direction * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addOneKeyRestore(java.lang.String protectIp, java - * .lang.String attackType, java.lang.String direction)* - */ public com.dptech.dispose.NtcRequestResultInfo addOneKeyRestore(java.lang.String protectIp, - java.lang.String attackType, java.lang.String direction) { + java.lang.String attackType, + java.lang.String direction) { LOG.info("Executing operation addOneKeyRestore"); System.out.println(protectIp); System.out.println(attackType); @@ -1346,16 +1274,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Ge dns domain custom v 4 t from umc com . dptech . dispose . array of dns domain custom v 4 for service. * * @param objName the obj name * @return the com . dptech . dispose . array of dns domain custom v 4 for service */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#geDnsDomainCustomV4TFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDnsDomainCustomV4ForService geDnsDomainCustomV4TFromUMC(java.lang.String objName) { LOG.info("Executing operation geDnsDomainCustomV4TFromUMC"); System.out.println(objName); @@ -1368,6 +1293,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add complete anomaly detection strategy for umc com . dptech . dispose . ntc request result info. * @@ -1397,15 +1323,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param bandWidthThreshold the band width threshold * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addCompleteAnomalyDetectionStrategyForUMC(java - * .lang.String strategyName, java.lang.String detectionObjName, int direction, int synFloodThreshold, int - * synFloodThresholdType, int udpFloodThreshold, int udpFloodThresholdType, int icmpFloodThreshold, int - * icmpFloodThresholdType, int synAckFloodThreshold, int synAckFloodThresholdType, int finFloodThreshold, int - * finFloodThresholdType, int ipFragmentFloodThreshold, int ipFragmentFloodThresholdType, int ackFloodThreshold, - * int ackFloodThresholdType, int httpFloodThreshold, int httpFloodThresholdType, int ccFloodThreshold, int - * ccFloodThresholdType, int dnsFloodThreshold, int dnsFloodThresholdType, int bandWidthThreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo addCompleteAnomalyDetectionStrategyForUMC(java.lang.String strategyName, java.lang.String detectionObjName, int direction, int synFloodThreshold, int synFloodThresholdType, int udpFloodThreshold, int udpFloodThresholdType, int icmpFloodThreshold, int icmpFloodThresholdType, int synAckFloodThreshold, int synAckFloodThresholdType, int finFloodThreshold, int finFloodThresholdType, int ipFragmentFloodThreshold, int ipFragmentFloodThresholdType, int ackFloodThreshold, int ackFloodThresholdType, int httpFloodThreshold, int httpFloodThresholdType, int ccFloodThreshold, int ccFloodThresholdType, int dnsFloodThreshold, int dnsFloodThresholdType, int bandWidthThreshold) { LOG.info("Executing operation addCompleteAnomalyDetectionStrategyForUMC"); System.out.println(strategyName); @@ -1441,6 +1358,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del dns sip custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1448,10 +1366,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDnsSipCustomV4ForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDnsSipCustomV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDnsSipCustomV4ForUMC"); @@ -1466,6 +1380,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod fingerprint udp for umc com . dptech . dispose . ntc request result info. * @@ -1499,24 +1414,34 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modFingerprintUdpForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - * java.lang.String port1, java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang - * .String custom1, java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java - * .lang.String port2, java.lang.String ip2, java.lang.String mask2, java.lang.String enable2, java.lang.String - * custom2, java.lang.String keytype3, java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String - * port3, java.lang.String ip3, java.lang.String mask3, java.lang.String enable3, java.lang.String custom3, java - * .lang.String threshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modFingerprintUdpForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String port1, java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, - java.lang.String custom1, java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, - java.lang.String port2, java.lang.String ip2, java.lang.String mask2, java.lang.String enable2, - java.lang.String custom2, java.lang.String keytype3, java.lang.String keyoffset3, - java.lang.String keylength3, java.lang.String port3, java.lang.String ip3, java.lang.String mask3, - java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String port1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, + java.lang.String custom1, + java.lang.String keytype2, +java.lang.String keyoffset2, + java.lang.String keylength2, + java.lang.String port2, + java.lang.String ip2, + java.lang.String mask2, +java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, + java.lang.String keylength3, + java.lang.String port3, + java.lang.String ip3, + java.lang.String mask3, + java.lang.String enable3, + java.lang.String custom3, +java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation modFingerprintUdpForUMC"); System.out.println(objName); System.out.println(name); @@ -1555,6 +1480,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global tcp frag for umc. * @@ -1563,12 +1489,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param tcpthreshold the tcpthreshold * @return the ddos global tcp frag for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalTcpFragForUMC(java.lang.String - * objName, java.lang.String tcpenable, java.lang.String tcpthreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpFragForUMC(java.lang.String objName, - java.lang.String tcpenable, java.lang.String tcpthreshold) { + java.lang.String tcpenable, + java.lang.String tcpthreshold) { LOG.info("Executing operation setDdosGlobalTcpFragForUMC"); System.out.println(objName); System.out.println(tcpenable); @@ -1582,16 +1505,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global tcp state from umc. * * @param objName the obj name * @return the ddos global tcp state from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpStateFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalTcpStateForService getDdosGlobalTcpStateFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalTcpStateFromUMC"); System.out.println(objName); @@ -1604,6 +1524,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod fingerprint tcp for umc com . dptech . dispose . ntc request result info. * @@ -1640,26 +1561,37 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modFingerprintTcpForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - * java.lang.String port1, java.lang.String flag1, java.lang.String ip1, java.lang.String mask1, java.lang.String - * enable1, java.lang.String custom1, java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String - * keylength2, java.lang.String port2, java.lang.String flag2, java.lang.String ip2, java.lang.String mask2, java - * .lang.String enable2, java.lang.String custom2, java.lang.String keytype3, java.lang.String keyoffset3, java - * .lang.String keylength3, java.lang.String port3, java.lang.String flag3, java.lang.String ip3, java.lang - * .String mask3, java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang - * .String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modFingerprintTcpForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String port1, java.lang.String flag1, java.lang.String ip1, java.lang.String mask1, - java.lang.String enable1, java.lang.String custom1, java.lang.String keytype2, java.lang.String keyoffset2, - java.lang.String keylength2, java.lang.String port2, java.lang.String flag2, java.lang.String ip2, - java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, - java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String port3, java.lang.String flag3, - java.lang.String ip3, java.lang.String mask3, java.lang.String enable3, java.lang.String custom3, - java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String port1, + java.lang.String flag1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, + java.lang.String custom1, + java.lang.String keytype2, + java.lang.String keyoffset2, + java.lang.String keylength2, + java.lang.String port2, + java.lang.String flag2, + java.lang.String ip2, + java.lang.String mask2, + java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, + java.lang.String keylength3, + java.lang.String port3, + java.lang.String flag3, + java.lang.String ip3, +java.lang.String mask3, + java.lang.String enable3, + java.lang.String custom3, + java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation modFingerprintTcpForUMC"); System.out.println(objName); System.out.println(name); @@ -1701,6 +1633,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add dns domain global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1710,12 +1643,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDnsDomainGlobalV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDnsDomainGlobalV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation addDnsDomainGlobalV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -1730,16 +1661,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del black and white list protection com . dptech . dispose . ntc request result info. * * @param name the name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delBlackAndWhiteListProtection(java.lang.String - * name)* - */ public com.dptech.dispose.NtcRequestResultInfo delBlackAndWhiteListProtection(java.lang.String name) { LOG.info("Executing operation delBlackAndWhiteListProtection"); System.out.println(name); @@ -1752,6 +1680,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global icmp frag for umc. * @@ -1760,12 +1689,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param icmpthreshold the icmpthreshold * @return the ddos global icmp frag for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalIcmpFragForUMC(java.lang.String - * objName, java.lang.String icmpenable, java.lang.String icmpthreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalIcmpFragForUMC(java.lang.String objName, - java.lang.String icmpenable, java.lang.String icmpthreshold) { + java.lang.String icmpenable, + java.lang.String icmpthreshold) { LOG.info("Executing operation setDdosGlobalIcmpFragForUMC"); System.out.println(objName); System.out.println(icmpenable); @@ -1779,16 +1705,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global tcp flag from umc. * * @param objName the obj name * @return the ddos global tcp flag from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpFlagFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalTcpFlagForService getDdosGlobalTcpFlagFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalTcpFlagFromUMC"); System.out.println(objName); @@ -1801,6 +1724,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Start bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. * @@ -1808,10 +1732,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleaningDevices the cleaning devices * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#startBypassManualTractionStrategyForUMC(java.lang - * .String policyName, java.lang.String cleaningDevices)* - */ public com.dptech.dispose.NtcRequestResultInfo startBypassManualTractionStrategyForUMC(java.lang.String policyName, java.lang.String cleaningDevices) { LOG.info("Executing operation startBypassManualTractionStrategyForUMC"); System.out.println(policyName); @@ -1825,6 +1745,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add fingerprint udp for umc com . dptech . dispose . ntc request result info. * @@ -1858,24 +1779,34 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addFingerprintUdpForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - * java.lang.String port1, java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang - * .String custom1, java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java - * .lang.String port2, java.lang.String ip2, java.lang.String mask2, java.lang.String enable2, java.lang.String - * custom2, java.lang.String keytype3, java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String - * port3, java.lang.String ip3, java.lang.String mask3, java.lang.String enable3, java.lang.String custom3, java - * .lang.String threshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addFingerprintUdpForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String port1, java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, - java.lang.String custom1, java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, - java.lang.String port2, java.lang.String ip2, java.lang.String mask2, java.lang.String enable2, - java.lang.String custom2, java.lang.String keytype3, java.lang.String keyoffset3, - java.lang.String keylength3, java.lang.String port3, java.lang.String ip3, java.lang.String mask3, - java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String port1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, + java.lang.String custom1, +java.lang.String keytype2, + java.lang.String keyoffset2, + java.lang.String keylength2, + java.lang.String port2, + java.lang.String ip2, +java.lang.String mask2, + java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, + java.lang.String keylength3, + java.lang.String port3, +java.lang.String ip3, + java.lang.String mask3, + java.lang.String enable3, + java.lang.String custom3, + java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation addFingerprintUdpForUMC"); System.out.println(objName); System.out.println(name); @@ -1914,6 +1845,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add ddos dns retry protect for umc com . dptech . dispose . ntc request result info. * @@ -1924,13 +1856,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param protectthreshold the protectthreshold * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDdosDnsRetryProtectForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String action, java.lang.String alertthreshold, java.lang.String - * protectthreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo addDdosDnsRetryProtectForUMC(java.lang.String objName, - java.lang.String name, java.lang.String action, java.lang.String alertthreshold, + java.lang.String name, + java.lang.String action, + java.lang.String alertthreshold, java.lang.String protectthreshold) { LOG.info("Executing operation addDdosDnsRetryProtectForUMC"); System.out.println(objName); @@ -1947,14 +1876,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all black hole auto strategy from umc. * * @return the all black hole auto strategy from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBlackHoleAutoStrategyFromUMC()* - */ public com.dptech.dispose.ArrayOfBlackHoleAutoStrategyForService getAllBlackHoleAutoStrategyFromUMC() { LOG.info("Executing operation getAllBlackHoleAutoStrategyFromUMC"); try { @@ -1966,16 +1893,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets dns domain global v 4 from umc. * * @param objName the obj name * @return the dns domain global v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDnsDomainGlobalV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDnsDomainGlobalV4ForService getDnsDomainGlobalV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDnsDomainGlobalV4FromUMC"); System.out.println(objName); @@ -1988,6 +1912,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del ddos http get sip glo pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -1995,10 +1920,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDdosHttpGetSipGloProV4ForUMC(java.lang.String - * name, java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetSipGloProV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDdosHttpGetSipGloProV4ForUMC"); @@ -2013,16 +1934,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets anomaly detection strategy from umc. * * @param strategyName the strategy name * @return the anomaly detection strategy from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAnomalyDetectionStrategyFromUMC(java.lang - * .String strategyName)* - */ public com.dptech.dispose.AnomalyDetectionStrategy getAnomalyDetectionStrategyFromUMC(java.lang.String strategyName) { LOG.info("Executing operation getAnomalyDetectionStrategyFromUMC"); System.out.println(strategyName); @@ -2035,6 +1953,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add ddos c cuser group v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2042,10 +1961,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param name the name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDdosCCuserGroupV4ForUMC(java.lang.String - * objName, java.lang.String name)* - */ public com.dptech.dispose.NtcRequestResultInfo addDdosCCuserGroupV4ForUMC(java.lang.String objName, java.lang.String name) { LOG.info("Executing operation addDdosCCuserGroupV4ForUMC"); @@ -2060,6 +1975,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod dns sec domain global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2069,12 +1985,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDnsSecDomainGlobalV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDnsSecDomainGlobalV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation modDnsSecDomainGlobalV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -2089,6 +2003,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add ddos http get sip cus pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2099,13 +2014,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDdosHttpGetSipCusProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String sip, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetSipCusProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String sip, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String sip, + java.lang.String protectthreshold, java.lang.String action) { LOG.info("Executing operation addDdosHttpGetSipCusProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -2121,16 +2033,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global ack payload from umc. * * @param objName the obj name * @return the ddos global ack payload from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalAckPayloadFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalAckPayloadForService getDdosGlobalAckPayloadFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalAckPayloadFromUMC"); System.out.println(objName); @@ -2143,16 +2052,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global tcp frag from umc. * * @param objName the obj name * @return the ddos global tcp frag from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpFragFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalTcpFragForService getDdosGlobalTcpFragFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalTcpFragFromUMC"); System.out.println(objName); @@ -2165,6 +2071,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Stop bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. * @@ -2172,10 +2079,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleaningDevices the cleaning devices * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#stopBypassManualTractionStrategyForUMC(java.lang - * .String policyName, java.lang.String cleaningDevices)* - */ public com.dptech.dispose.NtcRequestResultInfo stopBypassManualTractionStrategyForUMC(java.lang.String policyName , java.lang.String cleaningDevices) { LOG.info("Executing operation stopBypassManualTractionStrategyForUMC"); @@ -2190,6 +2093,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add fingerprint other for umc com . dptech . dispose . ntc request result info. * @@ -2220,22 +2124,31 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addFingerprintOtherForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String - * keylength1, java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, - * java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, - * java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, java - * .lang.String keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, java.lang - * .String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addFingerprintOtherForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, - java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, - java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, - java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, - java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, + java.lang.String custom1, + java.lang.String keytype2, + java.lang.String keyoffset2, + java.lang.String keylength2, + java.lang.String ip2, + java.lang.String mask2, + java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, + java.lang.String keylength3, + java.lang.String ip3, + java.lang.String mask3, + java.lang.String enable3, + java.lang.String custom3, + java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation addFingerprintOtherForUMC"); System.out.println(objName); System.out.println(name); @@ -2271,6 +2184,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod ddos http get sip glo pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2280,12 +2194,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDdosHttpGetSipGloProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetSipGloProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold + , java.lang.String action) { LOG.info("Executing operation modDdosHttpGetSipGloProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -2300,14 +2212,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all anomaly detection strategy from umc. * * @return the all anomaly detection strategy from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllAnomalyDetectionStrategyFromUMC()* - */ public com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllAnomalyDetectionStrategyFromUMC() { LOG.info("Executing operation getAllAnomalyDetectionStrategyFromUMC"); try { @@ -2319,6 +2229,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Start abnormal task for umc com . dptech . dispose . ntc request result info. * @@ -2327,10 +2238,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param direction the direction * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#startAbnormalTaskForUMC(java.lang.String - * abnormalIp, int attackType, int direction)* - */ public com.dptech.dispose.NtcRequestResultInfo startAbnormalTaskForUMC(java.lang.String abnormalIp, int attackType, int direction) { LOG.info("Executing operation startAbnormalTaskForUMC"); @@ -2346,6 +2253,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod black and white list protection com . dptech . dispose . ntc request result info. * @@ -2363,16 +2271,18 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param protectionType the protection type * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modBlackAndWhiteListProtection(java.lang.String - * name, java.lang.String sipType, java.lang.String sipStartIp, java.lang.String sipEndIp, java.lang.String - * dipType, java.lang.String dipStartIp, java.lang.String dipEndIp, java.lang.String timeType, java.lang.String - * hour, java.lang.String minute, java.lang.String second, java.lang.String protectionType)* - */ public com.dptech.dispose.NtcRequestResultInfo modBlackAndWhiteListProtection(java.lang.String name, - java.lang.String sipType, java.lang.String sipStartIp, java.lang.String sipEndIp, java.lang.String dipType, - java.lang.String dipStartIp, java.lang.String dipEndIp, java.lang.String timeType, java.lang.String hour, - java.lang.String minute, java.lang.String second, java.lang.String protectionType) { + java.lang.String sipType, + java.lang.String sipStartIp, + java.lang.String sipEndIp, + java.lang.String dipType, + java.lang.String dipStartIp, + java.lang.String dipEndIp, + java.lang.String timeType, + java.lang.String hour, + java.lang.String minute, + java.lang.String second, + java.lang.String protectionType) { LOG.info("Executing operation modBlackAndWhiteListProtection"); System.out.println(name); System.out.println(sipType); @@ -2395,6 +2305,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add dns sip global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2404,12 +2315,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDnsSipGlobalV4ForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDnsSipGlobalV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation addDnsSipGlobalV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -2424,6 +2333,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add anomaly detection strategy for umc com . dptech . dispose . ntc request result info. * @@ -2432,10 +2342,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param bandWidthThreshold the band width threshold * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addAnomalyDetectionStrategyForUMC(java.lang.String - * strategyName, java.lang.String detectionObjName, int bandWidthThreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo addAnomalyDetectionStrategyForUMC(java.lang.String strategyName, java.lang.String detectionObjName, int bandWidthThreshold) { LOG.info("Executing operation addAnomalyDetectionStrategyForUMC"); @@ -2451,6 +2357,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add ddos ac protection for umc com . dptech . dispose . ntc request result info. * @@ -2472,18 +2379,22 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param threshold the threshold * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDdosACProtectionForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String fixString, java.lang.String startLocation, java.lang.String - * endLocation, java.lang.String regularExpression, java.lang.String acSip, java.lang.String acSmask, java.lang - * .String acDip, java.lang.String acDmask, java.lang.String protocol, java.lang.String srcPortMin, java.lang - * .String srcPortMax, java.lang.String dstPortMin, java.lang.String dstPortMax, java.lang.String threshold)* - */ public com.dptech.dispose.NtcRequestResultInfo addDdosACProtectionForUMC(java.lang.String objName, - java.lang.String name, java.lang.String fixString, java.lang.String startLocation, java.lang.String endLocation, - java.lang.String regularExpression, java.lang.String acSip, java.lang.String acSmask, java.lang.String acDip, - java.lang.String acDmask, java.lang.String protocol, java.lang.String srcPortMin, java.lang.String srcPortMax, - java.lang.String dstPortMin, java.lang.String dstPortMax, java.lang.String threshold) { + java.lang.String name, + java.lang.String fixString, + java.lang.String startLocation, + java.lang.String endLocation, + java.lang.String regularExpression, + java.lang.String acSip, + java.lang.String acSmask, + java.lang.String acDip, + java.lang.String acDmask, + java.lang.String protocol, + java.lang.String srcPortMin, + java.lang.String srcPortMax, + java.lang.String dstPortMin, + java.lang.String dstPortMax, + java.lang.String threshold) { LOG.info("Executing operation addDdosACProtectionForUMC"); System.out.println(objName); System.out.println(name); @@ -2510,6 +2421,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del ddos http get sip cus pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2517,10 +2429,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDdosHttpGetSipCusProV4ForUMC(java.lang.String - * name, java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetSipCusProV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDdosHttpGetSipCusProV4ForUMC"); @@ -2535,16 +2443,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global udp length from umc. * * @param objName the obj name * @return the ddos global udp length from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalUdpLengthFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalUdpLengthForService getDdosGlobalUdpLengthFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalUdpLengthFromUMC"); System.out.println(objName); @@ -2557,6 +2462,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del ddos ac protection for umc com . dptech . dispose . ntc request result info. * @@ -2564,10 +2470,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDdosACProtectionForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDdosACProtectionForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDdosACProtectionForUMC"); @@ -2582,6 +2484,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod ddos http get uri glo pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2591,12 +2494,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDdosHttpGetUriGloProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetUriGloProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold + , java.lang.String action) { LOG.info("Executing operation modDdosHttpGetUriGloProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -2611,6 +2512,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del ddos http get uri glo pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2618,10 +2520,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDdosHttpGetUriGloProV4ForUMC(java.lang.String - * name, java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetUriGloProV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDdosHttpGetUriGloProV4ForUMC"); @@ -2636,6 +2534,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del dns domain global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2643,10 +2542,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDnsDomainGlobalV4ForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDnsDomainGlobalV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDnsDomainGlobalV4ForUMC"); @@ -2661,6 +2556,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del dns domain custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2668,10 +2564,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDnsDomainCustomV4ForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDnsDomainCustomV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDnsDomainCustomV4ForUMC"); @@ -2686,16 +2578,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets dns sec domain custom v 4 from umc. * * @param objName the obj name * @return the dns sec domain custom v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDnsSecDomainCustomV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDnsSecDomainCustomV4ForService getDnsSecDomainCustomV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDnsSecDomainCustomV4FromUMC"); System.out.println(objName); @@ -2708,14 +2597,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all protect devices. * * @return the all protect devices */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllProtectDevices()* - */ public java.lang.String getAllProtectDevices() { LOG.info("Executing operation getAllProtectDevices"); try { @@ -2727,16 +2614,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del anomaly detection strategy for umc com . dptech . dispose . ntc request result info. * * @param strategyName the strategy name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delAnomalyDetectionStrategyForUMC(java.lang.String - * strategyName)* - */ public com.dptech.dispose.NtcRequestResultInfo delAnomalyDetectionStrategyForUMC(java.lang.String strategyName) { LOG.info("Executing operation delAnomalyDetectionStrategyForUMC"); System.out.println(strategyName); @@ -2749,6 +2633,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Delete complete anomaly detection strategy for umc com . dptech . dispose . ntc request result info. * @@ -2756,10 +2641,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param direction the direction * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#deleteCompleteAnomalyDetectionStrategyForUMC(java - * .lang.String strategyName, int direction)* - */ public com.dptech.dispose.NtcRequestResultInfo deleteCompleteAnomalyDetectionStrategyForUMC(java.lang.String strategyName, int direction) { LOG.info("Executing operation deleteCompleteAnomalyDetectionStrategyForUMC"); System.out.println(strategyName); @@ -2773,6 +2654,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. * @@ -2781,12 +2663,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param ipRange the ip range * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modBypassManualTractionStrategyForUMC(java.lang - * .String policyName, java.lang.String protectName, java.lang.String ipRange)* - */ public com.dptech.dispose.NtcRequestResultInfo modBypassManualTractionStrategyForUMC(java.lang.String policyName, - java.lang.String protectName, java.lang.String ipRange) { + java.lang.String protectName + , java.lang.String ipRange) { LOG.info("Executing operation modBypassManualTractionStrategyForUMC"); System.out.println(policyName); System.out.println(protectName); @@ -2800,6 +2679,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del dns sec domain custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -2807,10 +2687,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDnsSecDomainCustomV4ForUMC(java.lang.String - * name, java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDnsSecDomainCustomV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDnsSecDomainCustomV4ForUMC"); @@ -2825,6 +2701,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global other frag for umc. * @@ -2833,12 +2710,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param otherthreshold the otherthreshold * @return the ddos global other frag for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalOtherFragForUMC(java.lang.String - * objName, java.lang.String otherenable, java.lang.String otherthreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalOtherFragForUMC(java.lang.String objName, - java.lang.String otherenable, java.lang.String otherthreshold) { + java.lang.String otherenable, + java.lang.String otherthreshold) { LOG.info("Executing operation setDdosGlobalOtherFragForUMC"); System.out.println(objName); System.out.println(otherenable); @@ -2852,6 +2726,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Link protection strategy template for umc com . dptech . dispose . ntc request result info. * @@ -2859,10 +2734,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param templateName the template name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#linkProtectionStrategyTemplateForUMC(java.lang - * .String protectName, java.lang.String templateName)* - */ public com.dptech.dispose.NtcRequestResultInfo linkProtectionStrategyTemplateForUMC(java.lang.String protectName, java.lang.String templateName) { LOG.info("Executing operation linkProtectionStrategyTemplateForUMC"); @@ -2877,15 +2748,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets fingerprint udp from umc. * * @param objName the obj name * @return the fingerprint udp from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getFingerprintUdpFromUMC(java.lang.String objName)* - */ public com.dptech.dispose.ArrayOfFingerprintUdpForService getFingerprintUdpFromUMC(java.lang.String objName) { LOG.info("Executing operation getFingerprintUdpFromUMC"); System.out.println(objName); @@ -2898,6 +2767,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global tcp length for umc. * @@ -2916,17 +2786,19 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param rstMax the rst max * @return the ddos global tcp length for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalTcpLengthForUMC(java.lang.String - * synenable, java.lang.String objName, java.lang.String synMin, java.lang.String synMax, java.lang.String - * synackenable, java.lang.String synackMin, java.lang.String synackMax, java.lang.String finenable, java.lang - * .String finMin, java.lang.String finMax, java.lang.String rstenable, java.lang.String rstMin, java.lang.String - * rstMax)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpLengthForUMC(java.lang.String synenable, - java.lang.String objName, java.lang.String synMin, java.lang.String synMax, java.lang.String synackenable, - java.lang.String synackMin, java.lang.String synackMax, java.lang.String finenable, java.lang.String finMin, - java.lang.String finMax, java.lang.String rstenable, java.lang.String rstMin, java.lang.String rstMax) { + java.lang.String objName, + java.lang.String synMin, + java.lang.String synMax, + java.lang.String synackenable, + java.lang.String synackMin, + java.lang.String synackMax, + java.lang.String finenable, + java.lang.String finMin, + java.lang.String finMax, + java.lang.String rstenable, + java.lang.String rstMin, + java.lang.String rstMax) { LOG.info("Executing operation setDdosGlobalTcpLengthForUMC"); System.out.println(synenable); System.out.println(objName); @@ -2950,6 +2822,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global icmp payload for umc. * @@ -2960,11 +2833,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param payloadOffsetMax the payload offset max * @return the ddos global icmp payload for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalIcmpPayloadForUMC(java.lang.String - * objName, java.lang.String payloadcontentenable, java.lang.String payloadThreshold, java.lang.String - * payloadOffsetMin, java.lang.String payloadOffsetMax)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalIcmpPayloadForUMC(java.lang.String objName, java.lang.String payloadcontentenable, java.lang.String payloadThreshold, java.lang.String payloadOffsetMin, java.lang.String payloadOffsetMax) { @@ -2983,16 +2851,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Delete protection object for umc com . dptech . dispose . ntc request result info. * * @param protectionName the protection name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#deleteProtectionObjectForUMC(java.lang.String - * protectionName)* - */ public com.dptech.dispose.NtcRequestResultInfo deleteProtectionObjectForUMC(java.lang.String protectionName) { LOG.info("Executing operation deleteProtectionObjectForUMC"); System.out.println(protectionName); @@ -3005,6 +2870,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del fingerprint other for umc com . dptech . dispose . ntc request result info. * @@ -3012,10 +2878,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delFingerprintOtherForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delFingerprintOtherForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delFingerprintOtherForUMC"); @@ -3030,16 +2892,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos http get uri glo pro v 4 from umc. * * @param objName the obj name * @return the ddos http get uri glo pro v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosHttpGetUriGloProV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDdosHttpGetUriGloProV4ForService getDdosHttpGetUriGloProV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosHttpGetUriGloProV4FromUMC"); System.out.println(objName); @@ -3052,15 +2911,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all protection target with strategy association relationship for umc. * * @return the all protection target with strategy association relationship for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose - * .AbnormalFlowCleaningServicePortType#getAllProtectionTargetWithStrategyAssociationRelationshipForUMC()* - */ public com.dptech.dispose.ArrayOfProtectionTargetWithStrategyForService getAllProtectionTargetWithStrategyAssociationRelationshipForUMC() { LOG.info("Executing operation getAllProtectionTargetWithStrategyAssociationRelationshipForUMC"); try { @@ -3072,6 +2928,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add detection object for umc com . dptech . dispose . ntc request result info. * @@ -3083,13 +2940,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleaningType the cleaning type * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDetectionObjectForUMC(java.lang.String - * detectionDevices, java.lang.String cleaningDevices, java.lang.String detectionName, java.lang.String - * ipSegment, int ipType, int cleaningType)* - */ public com.dptech.dispose.NtcRequestResultInfo addDetectionObjectForUMC(java.lang.String detectionDevices, - java.lang.String cleaningDevices, java.lang.String detectionName, java.lang.String ipSegment, int ipType, + java.lang.String cleaningDevices, + java.lang.String detectionName, + java.lang.String ipSegment, int ipType, int cleaningType) { LOG.info("Executing operation addDetectionObjectForUMC"); System.out.println(detectionDevices); @@ -3107,6 +2961,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Modify protection object for umc com . dptech . dispose . ntc request result info. * @@ -3116,12 +2971,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleaningType the cleaning type * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modifyProtectionObjectForUMC(java.lang.String - * protectionName, java.lang.String ipSegment, int ipType, int cleaningType)* - */ public com.dptech.dispose.NtcRequestResultInfo modifyProtectionObjectForUMC(java.lang.String protectionName, - java.lang.String ipSegment, int ipType, int cleaningType) { + java.lang.String ipSegment, + int ipType, int cleaningType) { LOG.info("Executing operation modifyProtectionObjectForUMC"); System.out.println(protectionName); System.out.println(ipSegment); @@ -3136,6 +2988,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global udp frag for umc. * @@ -3144,12 +2997,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param udpthreshold the udpthreshold * @return the ddos global udp frag for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalUdpFragForUMC(java.lang.String - * objName, java.lang.String udpenable, java.lang.String udpthreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalUdpFragForUMC(java.lang.String objName, - java.lang.String udpenable, java.lang.String udpthreshold) { + java.lang.String udpenable, + java.lang.String udpthreshold) { LOG.info("Executing operation setDdosGlobalUdpFragForUMC"); System.out.println(objName); System.out.println(udpenable); @@ -3163,6 +3013,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global icmp length for umc. * @@ -3172,12 +3023,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param maxlength the maxlength * @return the ddos global icmp length for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalIcmpLengthForUMC(java.lang.String - * objName, java.lang.String lengthenable, java.lang.String minlength, java.lang.String maxlength)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalIcmpLengthForUMC(java.lang.String objName, - java.lang.String lengthenable, java.lang.String minlength, java.lang.String maxlength) { + java.lang.String lengthenable, + java.lang.String minlength, + java.lang.String maxlength) { LOG.info("Executing operation setDdosGlobalIcmpLengthForUMC"); System.out.println(objName); System.out.println(lengthenable); @@ -3192,16 +3041,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global udp frag from umc. * * @param objName the obj name * @return the ddos global udp frag from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalUdpFragFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalUdpFragForService getDdosGlobalUdpFragFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalUdpFragFromUMC"); System.out.println(objName); @@ -3214,15 +3060,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets fingerprint tcp from umc. * * @param objName the obj name * @return the fingerprint tcp from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getFingerprintTcpFromUMC(java.lang.String objName)* - */ public com.dptech.dispose.ArrayOfFingerprintTcpForService getFingerprintTcpFromUMC(java.lang.String objName) { LOG.info("Executing operation getFingerprintTcpFromUMC"); System.out.println(objName); @@ -3235,6 +3079,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global tcp flag for umc. * @@ -3242,10 +3087,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param tcpFlagenable the tcp flagenable * @return the ddos global tcp flag for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalTcpFlagForUMC(java.lang.String - * objName, java.lang.String tcpFlagenable)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpFlagForUMC(java.lang.String objName, java.lang.String tcpFlagenable) { LOG.info("Executing operation setDdosGlobalTcpFlagForUMC"); @@ -3260,6 +3101,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add black hole auto strategy for umc com . dptech . dispose . ntc request result info. * @@ -3270,12 +3112,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param blackHoleTime the black hole time * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addBlackHoleAutoStrategyForUMC(java.lang.String - * policyName, java.lang.String detectName, int detectMode, int blackHoleThreshold, int blackHoleTime)* - */ public com.dptech.dispose.NtcRequestResultInfo addBlackHoleAutoStrategyForUMC(java.lang.String policyName, - java.lang.String detectName, int detectMode, int blackHoleThreshold, int blackHoleTime) { + java.lang.String detectName, + int detectMode, + int blackHoleThreshold, + int blackHoleTime) { LOG.info("Executing operation addBlackHoleAutoStrategyForUMC"); System.out.println(policyName); System.out.println(detectName); @@ -3291,6 +3132,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets complete anomaly detection strategy from umc. * @@ -3298,10 +3140,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param direction the direction * @return the complete anomaly detection strategy from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getCompleteAnomalyDetectionStrategyFromUMC(java - * .lang.String strategyName, int direction)* - */ public com.dptech.dispose.AnomalyDetectionStrategy getCompleteAnomalyDetectionStrategyFromUMC(java.lang.String strategyName, int direction) { LOG.info("Executing operation getCompleteAnomalyDetectionStrategyFromUMC"); System.out.println(strategyName); @@ -3315,6 +3153,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod fingerprint other for umc com . dptech . dispose . ntc request result info. * @@ -3345,22 +3184,31 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modFingerprintOtherForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String - * keylength1, java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, - * java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, - * java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, java - * .lang.String keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, java.lang - * .String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modFingerprintOtherForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, - java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, - java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, - java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, - java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, +java.lang.String custom1, + java.lang.String keytype2, + java.lang.String keyoffset2, + java.lang.String keylength2, + java.lang.String ip2, + java.lang.String mask2, + java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, +java.lang.String keylength3, + java.lang.String ip3, + java.lang.String mask3, + java.lang.String enable3, +java.lang.String custom3, + java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation modFingerprintOtherForUMC"); System.out.println(objName); System.out.println(name); @@ -3396,6 +3244,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add ddos http get uri cus pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -3406,13 +3255,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDdosHttpGetUriCusProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String uri, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetUriCusProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String uri, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String uri, + java.lang.String protectthreshold, java.lang.String action) { LOG.info("Executing operation addDdosHttpGetUriCusProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -3428,6 +3274,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. * @@ -3436,12 +3283,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param ipRange the ip range * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addBypassManualTractionStrategyForUMC(java.lang - * .String policyName, java.lang.String protectName, java.lang.String ipRange)* - */ public com.dptech.dispose.NtcRequestResultInfo addBypassManualTractionStrategyForUMC(java.lang.String policyName, - java.lang.String protectName, java.lang.String ipRange) { + java.lang.String protectName + , java.lang.String ipRange) { LOG.info("Executing operation addBypassManualTractionStrategyForUMC"); System.out.println(policyName); System.out.println(protectName); @@ -3455,14 +3299,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all detection object from umc. * * @return the all detection object from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllDetectionObjectFromUMC()* - */ public com.dptech.dispose.ArrayOfDetectionObjectDataForService getAllDetectionObjectFromUMC() { LOG.info("Executing operation getAllDetectionObjectFromUMC"); try { @@ -3474,6 +3316,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod ddos http get sip cus pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -3484,13 +3327,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDdosHttpGetSipCusProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String sip, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetSipCusProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String sip, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String sip, + java.lang.String protectthreshold, java.lang.String action) { LOG.info("Executing operation modDdosHttpGetSipCusProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -3506,16 +3346,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets dns sec domain global v 4 from umc. * * @param objName the obj name * @return the dns sec domain global v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDnsSecDomainGlobalV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDnsSecDomainGlobalV4ForService getDnsSecDomainGlobalV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDnsSecDomainGlobalV4FromUMC"); System.out.println(objName); @@ -3528,6 +3365,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del ddos c cuser group v 4 for umc com . dptech . dispose . ntc request result info. * @@ -3535,10 +3373,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDdosCCuserGroupV4ForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDdosCCuserGroupV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDdosCCuserGroupV4ForUMC"); @@ -3553,16 +3387,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global other frag from umc. * * @param objName the obj name * @return the ddos global other frag from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalOtherFragFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalOtherFragForService getDdosGlobalOtherFragFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalOtherFragFromUMC"); System.out.println(objName); @@ -3575,6 +3406,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod fingerprint icmp for umc com . dptech . dispose . ntc request result info. * @@ -3605,22 +3437,31 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modFingerprintIcmpForUMC(java.lang.String objName, - * java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - * java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, java.lang - * .String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, java.lang - * .String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, java.lang.String - * keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, java.lang.String - * enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo modFingerprintIcmpForUMC(java.lang.String objName, - java.lang.String name, java.lang.String keytype1, java.lang.String keyoffset1, java.lang.String keylength1, - java.lang.String ip1, java.lang.String mask1, java.lang.String enable1, java.lang.String custom1, - java.lang.String keytype2, java.lang.String keyoffset2, java.lang.String keylength2, java.lang.String ip2, - java.lang.String mask2, java.lang.String enable2, java.lang.String custom2, java.lang.String keytype3, - java.lang.String keyoffset3, java.lang.String keylength3, java.lang.String ip3, java.lang.String mask3, - java.lang.String enable3, java.lang.String custom3, java.lang.String threshold, java.lang.String action) { + java.lang.String name, + java.lang.String keytype1, + java.lang.String keyoffset1, + java.lang.String keylength1, + java.lang.String ip1, + java.lang.String mask1, + java.lang.String enable1, + java.lang.String custom1, + java.lang.String keytype2, + java.lang.String keyoffset2, + java.lang.String keylength2, +java.lang.String ip2, + java.lang.String mask2, + java.lang.String enable2, + java.lang.String custom2, + java.lang.String keytype3, + java.lang.String keyoffset3, + java.lang.String keylength3, + java.lang.String ip3, + java.lang.String mask3, + java.lang.String enable3, + java.lang.String custom3, + java.lang.String threshold, + java.lang.String action) { LOG.info("Executing operation modFingerprintIcmpForUMC"); System.out.println(objName); System.out.println(name); @@ -3656,16 +3497,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Stop black hole strategy for umc com . dptech . dispose . ntc request result info. * * @param policyName the policy name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#stopBlackHoleStrategyForUMC(java.lang.String - * policyName)* - */ public com.dptech.dispose.NtcRequestResultInfo stopBlackHoleStrategyForUMC(java.lang.String policyName) { LOG.info("Executing operation stopBlackHoleStrategyForUMC"); System.out.println(policyName); @@ -3678,15 +3516,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets dns sip global v 4 from umc. * * @param objName the obj name * @return the dns sip global v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDnsSipGlobalV4FromUMC(java.lang.String objName)* - */ public com.dptech.dispose.ArrayOfDnsSipGlobalV4ForService getDnsSipGlobalV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDnsSipGlobalV4FromUMC"); System.out.println(objName); @@ -3699,14 +3535,12 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets all protection object from umc. * * @return the all protection object from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllProtectionObjectFromUMC()* - */ public com.dptech.dispose.ArrayOfProtectionObjectDataForService getAllProtectionObjectFromUMC() { LOG.info("Executing operation getAllProtectionObjectFromUMC"); try { @@ -3718,6 +3552,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global udp payload for umc. * @@ -3729,14 +3564,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param payloadOffsetMax the payload offset max * @return the ddos global udp payload for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalUdpPayloadForUMC(java.lang.String - * objName, java.lang.String payloademptyenable, java.lang.String payloadcontentenable, java.lang.String - * payloadThreshold, java.lang.String payloadOffsetMin, java.lang.String payloadOffsetMax)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalUdpPayloadForUMC(java.lang.String objName, - java.lang.String payloademptyenable, java.lang.String payloadcontentenable, java.lang.String payloadThreshold, - java.lang.String payloadOffsetMin, java.lang.String payloadOffsetMax) { + java.lang.String payloademptyenable, + java.lang.String payloadcontentenable, java.lang.String payloadThreshold, + java.lang.String payloadOffsetMin, + java.lang.String payloadOffsetMax) { LOG.info("Executing operation setDdosGlobalUdpPayloadForUMC"); System.out.println(objName); System.out.println(payloademptyenable); @@ -3753,16 +3585,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos http get uri cus pro v 4 from umc. * * @param objName the obj name * @return the ddos http get uri cus pro v 4 from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosHttpGetUriCusProV4FromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.ArrayOfDdosHttpGetUriCusProV4ForService getDdosHttpGetUriCusProV4FromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosHttpGetUriCusProV4FromUMC"); System.out.println(objName); @@ -3775,16 +3604,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. * * @param policyName the policy name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delBypassManualTractionStrategyForUMC(java.lang - * .String policyName)* - */ public com.dptech.dispose.NtcRequestResultInfo delBypassManualTractionStrategyForUMC(java.lang.String policyName) { LOG.info("Executing operation delBypassManualTractionStrategyForUMC"); System.out.println(policyName); @@ -3797,15 +3623,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets fingerprint other from umc. * * @param objName the obj name * @return the fingerprint other from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getFingerprintOtherFromUMC(java.lang.String objName)* - */ public com.dptech.dispose.ArrayOfFingerprintOtherForService getFingerprintOtherFromUMC(java.lang.String objName) { LOG.info("Executing operation getFingerprintOtherFromUMC"); System.out.println(objName); @@ -3818,6 +3642,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Stop abnormal task for umc com . dptech . dispose . ntc request result info. * @@ -3826,10 +3651,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param direction the direction * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#stopAbnormalTaskForUMC(java.lang.String - * abnormalIp, int attackType, int direction)* - */ public com.dptech.dispose.NtcRequestResultInfo stopAbnormalTaskForUMC(java.lang.String abnormalIp, int attackType , int direction) { LOG.info("Executing operation stopAbnormalTaskForUMC"); @@ -3845,6 +3666,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add ddos http get sip glo pro v 4 for umc com . dptech . dispose . ntc request result info. * @@ -3854,12 +3676,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDdosHttpGetSipGloProV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetSipGloProV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String protectthreshold + , java.lang.String action) { LOG.info("Executing operation addDdosHttpGetSipGloProV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -3874,6 +3694,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global tcp state for umc. * @@ -3882,12 +3703,9 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param chosen the chosen * @return the ddos global tcp state for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalTcpStateForUMC(java.lang.String - * objName, java.lang.String statenable, java.lang.String chosen)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpStateForUMC(java.lang.String objName, - java.lang.String statenable, java.lang.String chosen) { + java.lang.String statenable, +java.lang.String chosen) { LOG.info("Executing operation setDdosGlobalTcpStateForUMC"); System.out.println(objName); System.out.println(statenable); @@ -3901,6 +3719,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add protection object for umc com . dptech . dispose . ntc request result info. * @@ -3912,13 +3731,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param cleaningType the cleaning type * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addProtectionObjectForUMC(java.lang.String - * detectionDevices, java.lang.String cleaningDevices, java.lang.String protectionName, java.lang.String - * ipSegment, int ipType, int cleaningType)* - */ public com.dptech.dispose.NtcRequestResultInfo addProtectionObjectForUMC(java.lang.String detectionDevices, - java.lang.String cleaningDevices, java.lang.String protectionName, java.lang.String ipSegment, int ipType, + java.lang.String cleaningDevices, + java.lang.String protectionName, +java.lang.String ipSegment, int ipType, int cleaningType) { LOG.info("Executing operation addProtectionObjectForUMC"); System.out.println(detectionDevices); @@ -3936,6 +3752,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod dns sec domain custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -3946,13 +3763,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDnsSecDomainCustomV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo modDnsSecDomainCustomV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String domain, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation modDnsSecDomainCustomV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -3968,16 +3783,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Delete detection object for umc com . dptech . dispose . ntc request result info. * * @param detectionName the detection name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#deleteDetectionObjectForUMC(java.lang.String - * detectionName)* - */ public com.dptech.dispose.NtcRequestResultInfo deleteDetectionObjectForUMC(java.lang.String detectionName) { LOG.info("Executing operation deleteDetectionObjectForUMC"); System.out.println(detectionName); @@ -3990,6 +3802,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del fingerprint udp for umc com . dptech . dispose . ntc request result info. * @@ -3997,10 +3810,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delFingerprintUdpForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delFingerprintUdpForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delFingerprintUdpForUMC"); @@ -4015,6 +3824,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global ack payload for umc. * @@ -4025,11 +3835,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param payloadOffsetMax the payload offset max * @return the ddos global ack payload for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalAckPayloadForUMC(java.lang.String - * objName, java.lang.String payloadcontentenable, java.lang.String payloadThreshold, java.lang.String - * payloadOffsetMin, java.lang.String payloadOffsetMax)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalAckPayloadForUMC(java.lang.String objName, java.lang.String payloadcontentenable, java.lang.String payloadThreshold, java.lang.String payloadOffsetMin, java.lang.String payloadOffsetMax) { @@ -4048,6 +3853,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Mod ddos dns retry protect for umc com . dptech . dispose . ntc request result info. * @@ -4058,13 +3864,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param protectthreshold the protectthreshold * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#modDdosDnsRetryProtectForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String action, java.lang.String alertthreshold, java.lang.String - * protectthreshold)* - */ public com.dptech.dispose.NtcRequestResultInfo modDdosDnsRetryProtectForUMC(java.lang.String objName, - java.lang.String name, java.lang.String action, java.lang.String alertthreshold, + java.lang.String name, + java.lang.String action, + java.lang.String alertthreshold, java.lang.String protectthreshold) { LOG.info("Executing operation modDdosDnsRetryProtectForUMC"); System.out.println(objName); @@ -4081,6 +3884,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add dns domain custom v 4 for umc com . dptech . dispose . ntc request result info. * @@ -4091,13 +3895,11 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param action the action * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addDnsDomainCustomV4ForUMC(java.lang.String - * objName, java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String - * action)* - */ public com.dptech.dispose.NtcRequestResultInfo addDnsDomainCustomV4ForUMC(java.lang.String objName, - java.lang.String name, java.lang.String domain, java.lang.String protectthreshold, java.lang.String action) { + java.lang.String name, + java.lang.String domain, + java.lang.String protectthreshold, + java.lang.String action) { LOG.info("Executing operation addDnsDomainCustomV4ForUMC"); System.out.println(objName); System.out.println(name); @@ -4113,6 +3915,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Sets ddos global syn flood for umc. * @@ -4122,12 +3925,10 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param type the type * @return the ddos global syn flood for umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#setDdosGlobalSynFloodForUMC(java.lang.String - * enable, java.lang.String objName, java.lang.String threshold, java.lang.String type)* - */ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalSynFloodForUMC(java.lang.String enable, - java.lang.String objName, java.lang.String threshold, java.lang.String type) { + java.lang.String objName, + java.lang.String threshold, + java.lang.String type) { LOG.info("Executing operation setDdosGlobalSynFloodForUMC"); System.out.println(enable); System.out.println(objName); @@ -4142,6 +3943,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Add black and white list protection com . dptech . dispose . ntc request result info. * @@ -4159,16 +3961,18 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param protectionType the protection type * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#addBlackAndWhiteListProtection(java.lang.String - * name, java.lang.String sipType, java.lang.String sipStartIp, java.lang.String sipEndIp, java.lang.String - * dipType, java.lang.String dipStartIp, java.lang.String dipEndIp, java.lang.String timeType, java.lang.String - * hour, java.lang.String minute, java.lang.String second, java.lang.String protectionType)* - */ public com.dptech.dispose.NtcRequestResultInfo addBlackAndWhiteListProtection(java.lang.String name, - java.lang.String sipType, java.lang.String sipStartIp, java.lang.String sipEndIp, java.lang.String dipType, - java.lang.String dipStartIp, java.lang.String dipEndIp, java.lang.String timeType, java.lang.String hour, - java.lang.String minute, java.lang.String second, java.lang.String protectionType) { + java.lang.String sipType, + java.lang.String sipStartIp, + java.lang.String sipEndIp, + java.lang.String dipType, + java.lang.String dipStartIp, +java.lang.String dipEndIp, + java.lang.String timeType, + java.lang.String hour, + java.lang.String minute, + java.lang.String second, + java.lang.String protectionType) { LOG.info("Executing operation addBlackAndWhiteListProtection"); System.out.println(name); System.out.println(sipType); @@ -4191,6 +3995,7 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del dns sip global v 4 for umc com . dptech . dispose . ntc request result info. * @@ -4198,10 +4003,6 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea * @param objName the obj name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delDnsSipGlobalV4ForUMC(java.lang.String name, - * java.lang.String objName)* - */ public com.dptech.dispose.NtcRequestResultInfo delDnsSipGlobalV4ForUMC(java.lang.String name, java.lang.String objName) { LOG.info("Executing operation delDnsSipGlobalV4ForUMC"); @@ -4216,16 +4017,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global icmp length from umc. * * @param objName the obj name * @return the ddos global icmp length from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalIcmpLengthFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalIcmpLengthForService getDdosGlobalIcmpLengthFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalIcmpLengthFromUMC"); System.out.println(objName); @@ -4238,15 +4036,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos ac protection from umc. * * @param objName the obj name * @return the ddos ac protection from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosACProtectionFromUMC(java.lang.String objName)* - */ public com.dptech.dispose.ArrayOfDdosACProtectionForService getDdosACProtectionFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosACProtectionFromUMC"); System.out.println(objName); @@ -4259,16 +4055,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Del black hole strategy for umc com . dptech . dispose . ntc request result info. * * @param policyName the policy name * @return the com . dptech . dispose . ntc request result info */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#delBlackHoleStrategyForUMC(java.lang.String - * policyName)* - */ public com.dptech.dispose.NtcRequestResultInfo delBlackHoleStrategyForUMC(java.lang.String policyName) { LOG.info("Executing operation delBlackHoleStrategyForUMC"); System.out.println(policyName); @@ -4281,16 +4074,13 @@ public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowClea } } + /** * Gets ddos global syn flood from umc. * * @param objName the obj name * @return the ddos global syn flood from umc */ - /* (non-Javadoc) - * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getDdosGlobalSynFloodFromUMC(java.lang.String - * objName)* - */ public com.dptech.dispose.DdosGlobalSynFloodForService getDdosGlobalSynFloodFromUMC(java.lang.String objName) { LOG.info("Executing operation getDdosGlobalSynFloodFromUMC"); System.out.println(objName); diff --git a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType.java index c04df925..9d32ac4e 100644 --- a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType.java +++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType.java @@ -8,15 +8,25 @@ import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.ws.RequestWrapper; import javax.xml.ws.ResponseWrapper; + /** - * This class was generated by Apache CXF 3.3.6 - * 2020-04-15T11:47:54.588+08:00 - * Generated source version: 3.3.6 + * The interface Abnormal flow cleaning service port type. */ @WebService(targetNamespace = "http://service.ntc.dp.com", name = "AbnormalFlowCleaningServicePortType") @XmlSeeAlso({ObjectFactory.class}) public interface AbnormalFlowCleaningServicePortType { + /** + * Add dns sip custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param sipstart the sipstart + * @param sipend the sipend + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDnsSipCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSipCustomV4ForUMC") @ResponseWrapper(localName = "addDnsSipCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSipCustomV4ForUMCResponse") @@ -37,6 +47,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Gets dns sip custom v 4 from umc. + * + * @param objName the obj name + * @return the dns sip custom v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDnsSipCustomV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSipCustomV4FromUMC") @ResponseWrapper(localName = "getDnsSipCustomV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSipCustomV4FromUMCResponse") @@ -47,6 +63,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos global icmp payload from umc. + * + * @param objName the obj name + * @return the ddos global icmp payload from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalIcmpPayloadFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalIcmpPayloadFromUMC") @ResponseWrapper(localName = "getDdosGlobalIcmpPayloadFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalIcmpPayloadFromUMCResponse") @@ -57,6 +79,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Stop abnormal task with specific device for umc com . dptech . dispose . ntc request result info. + * + * @param abnormalIp the abnormal ip + * @param attackType the attack type + * @param direction the direction + * @param cleanDeviceIps the clean device ips + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "stopAbnormalTaskWithSpecificDeviceForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopAbnormalTaskWithSpecificDeviceForUMC") @ResponseWrapper(localName = "stopAbnormalTaskWithSpecificDeviceForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopAbnormalTaskWithSpecificDeviceForUMCResponse") @@ -73,6 +104,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String cleanDeviceIps ); + /** + * Add dns sec domain custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param domain the domain + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDnsSecDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSecDomainCustomV4ForUMC") @ResponseWrapper(localName = "addDnsSecDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSecDomainCustomV4ForUMCResponse") @@ -91,6 +132,17 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Mod dns sip custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param sipstart the sipstart + * @param sipend the sipend + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDnsSipCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSipCustomV4ForUMC") @ResponseWrapper(localName = "modDnsSipCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSipCustomV4ForUMCResponse") @@ -111,6 +163,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add dns sec domain global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDnsSecDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSecDomainGlobalV4ForUMC") @ResponseWrapper(localName = "addDnsSecDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSecDomainGlobalV4ForUMCResponse") @@ -127,6 +188,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Gets all complete anomaly detection strategy from umc. + * + * @return the all complete anomaly detection strategy from umc + */ @WebMethod @RequestWrapper(localName = "getAllCompleteAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllCompleteAnomalyDetectionStrategyFromUMC") @ResponseWrapper(localName = "getAllCompleteAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllCompleteAnomalyDetectionStrategyFromUMCResponse") @@ -134,6 +200,11 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllCompleteAnomalyDetectionStrategyFromUMC() ; + /** + * Gets all detect devices. + * + * @return the all detect devices + */ @WebMethod @RequestWrapper(localName = "getAllDetectDevices", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllDetectDevices") @ResponseWrapper(localName = "getAllDetectDevicesResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllDetectDevicesResponse") @@ -141,6 +212,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String getAllDetectDevices() ; + /** + * Start black hole strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "startBlackHoleStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartBlackHoleStrategyForUMC") @ResponseWrapper(localName = "startBlackHoleStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartBlackHoleStrategyForUMCResponse") @@ -151,6 +228,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String policyName ); + /** + * Gets ddos http get sip cus pro v 4 from umc. + * + * @param objName the obj name + * @return the ddos http get sip cus pro v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDdosHttpGetSipCusProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetSipCusProV4FromUMC") @ResponseWrapper(localName = "getDdosHttpGetSipCusProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetSipCusProV4FromUMCResponse") @@ -161,6 +244,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos dns retry protect from umc. + * + * @param objName the obj name + * @return the ddos dns retry protect from umc + */ @WebMethod @RequestWrapper(localName = "getDdosDnsRetryProtectFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosDnsRetryProtectFromUMC") @ResponseWrapper(localName = "getDdosDnsRetryProtectFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosDnsRetryProtectFromUMCResponse") @@ -171,6 +260,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos global tcp length from umc. + * + * @param objName the obj name + * @return the ddos global tcp length from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalTcpLengthFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpLengthFromUMC") @ResponseWrapper(localName = "getDdosGlobalTcpLengthFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpLengthFromUMCResponse") @@ -181,6 +276,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos http get sip glo pro v 4 from umc. + * + * @param objName the obj name + * @return the ddos http get sip glo pro v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDdosHttpGetSipGloProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetSipGloProV4FromUMC") @ResponseWrapper(localName = "getDdosHttpGetSipGloProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetSipGloProV4FromUMCResponse") @@ -191,6 +292,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets all black and white list from umc. + * + * @return the all black and white list from umc + */ @WebMethod @RequestWrapper(localName = "getAllBlackAndWhiteListFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBlackAndWhiteListFromUMC") @ResponseWrapper(localName = "getAllBlackAndWhiteListFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBlackAndWhiteListFromUMCResponse") @@ -198,6 +304,12 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfBlackAndWhiteListDataForService getAllBlackAndWhiteListFromUMC() ; + /** + * Gets ddos global udp payload from umc. + * + * @param objName the obj name + * @return the ddos global udp payload from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalUdpPayloadFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalUdpPayloadFromUMC") @ResponseWrapper(localName = "getDdosGlobalUdpPayloadFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalUdpPayloadFromUMCResponse") @@ -208,6 +320,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del ddos dns retry protect for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDdosDnsRetryProtectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosDnsRetryProtectForUMC") @ResponseWrapper(localName = "delDdosDnsRetryProtectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosDnsRetryProtectForUMCResponse") @@ -220,6 +339,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets all bypass manual traction strategy from umc. + * + * @return the all bypass manual traction strategy from umc + */ @WebMethod @RequestWrapper(localName = "getAllBypassManualTractionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBypassManualTractionStrategyFromUMC") @ResponseWrapper(localName = "getAllBypassManualTractionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBypassManualTractionStrategyFromUMCResponse") @@ -227,6 +351,13 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfBypassManualTractionStrategyForService getAllBypassManualTractionStrategyFromUMC() ; + /** + * Disable protection strategy template for umc com . dptech . dispose . ntc request result info. + * + * @param protectName the protect name + * @param templateName the template name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "disableProtectionStrategyTemplateForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DisableProtectionStrategyTemplateForUMC") @ResponseWrapper(localName = "disableProtectionStrategyTemplateForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DisableProtectionStrategyTemplateForUMCResponse") @@ -239,6 +370,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String templateName ); + /** + * Del fingerprint icmp for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delFingerprintIcmpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintIcmpForUMC") @ResponseWrapper(localName = "delFingerprintIcmpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintIcmpForUMCResponse") @@ -251,6 +389,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Mod dns domain global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDnsDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsDomainGlobalV4ForUMC") @ResponseWrapper(localName = "modDnsDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsDomainGlobalV4ForUMCResponse") @@ -267,6 +414,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Start abnormal task with specific device for umc com . dptech . dispose . ntc request result info. + * + * @param abnormalIp the abnormal ip + * @param attackType the attack type + * @param direction the direction + * @param cleanDeviceIps the clean device ips + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "startAbnormalTaskWithSpecificDeviceForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartAbnormalTaskWithSpecificDeviceForUMC") @ResponseWrapper(localName = "startAbnormalTaskWithSpecificDeviceForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartAbnormalTaskWithSpecificDeviceForUMCResponse") @@ -283,6 +439,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String cleanDeviceIps ); + /** + * Gets ddos c cuser group v 4 from umc. + * + * @param objName the obj name + * @return the ddos c cuser group v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDdosCCuserGroupV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosCCuserGroupV4FromUMC") @ResponseWrapper(localName = "getDdosCCuserGroupV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosCCuserGroupV4FromUMCResponse") @@ -293,6 +455,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets fingerprint icmp from umc. + * + * @param objName the obj name + * @return the fingerprint icmp from umc + */ @WebMethod @RequestWrapper(localName = "getFingerprintIcmpFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintIcmpFromUMC") @ResponseWrapper(localName = "getFingerprintIcmpFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintIcmpFromUMCResponse") @@ -303,6 +471,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del fingerprint tcp for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delFingerprintTcpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintTcpForUMC") @ResponseWrapper(localName = "delFingerprintTcpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintTcpForUMCResponse") @@ -315,6 +490,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del dns sec domain global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDnsSecDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSecDomainGlobalV4ForUMC") @ResponseWrapper(localName = "delDnsSecDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSecDomainGlobalV4ForUMCResponse") @@ -327,6 +509,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del ddos http get uri cus pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDdosHttpGetUriCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetUriCusProV4ForUMC") @ResponseWrapper(localName = "delDdosHttpGetUriCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetUriCusProV4ForUMCResponse") @@ -339,6 +528,42 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Add fingerprint tcp for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param port1 the port 1 + * @param flag1 the flag 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param port2 the port 2 + * @param flag2 the flag 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param port3 the port 3 + * @param flag3 the flag 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addFingerprintTcpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintTcpForUMC") @ResponseWrapper(localName = "addFingerprintTcpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintTcpForUMCResponse") @@ -409,6 +634,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Gets all protection strategy template from umc. + * + * @return the all protection strategy template from umc + */ @WebMethod @RequestWrapper(localName = "getAllProtectionStrategyTemplateFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectionStrategyTemplateFromUMC") @ResponseWrapper(localName = "getAllProtectionStrategyTemplateFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectionStrategyTemplateFromUMCResponse") @@ -416,6 +646,36 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfProtectionStrategyTemplateForService getAllProtectionStrategyTemplateFromUMC() ; + /** + * Add fingerprint icmp for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addFingerprintIcmpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintIcmpForUMC") @ResponseWrapper(localName = "addFingerprintIcmpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintIcmpForUMCResponse") @@ -474,6 +734,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Modify detection object for umc com . dptech . dispose . ntc request result info. + * + * @param detectionName the detection name + * @param ipSegment the ip segment + * @param ipType the ip type + * @param cleaningType the cleaning type + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modifyDetectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModifyDetectionObjectForUMC") @ResponseWrapper(localName = "modifyDetectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModifyDetectionObjectForUMCResponse") @@ -490,6 +759,13 @@ public interface AbnormalFlowCleaningServicePortType { int cleaningType ); + /** + * Delete protection object ip range for umc com . dptech . dispose . ntc request result info. + * + * @param protectionName the protection name + * @param ipRangeIDs the ip range i ds + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "deleteProtectionObjectIPRangeForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteProtectionObjectIPRangeForUMC") @ResponseWrapper(localName = "deleteProtectionObjectIPRangeForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteProtectionObjectIPRangeForUMCResponse") @@ -502,6 +778,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String ipRangeIDs ); + /** + * Mod black hole auto strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param detectMode the detect mode + * @param blackHoleThreshold the black hole threshold + * @param blackHoleTime the black hole time + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modBlackHoleAutoStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBlackHoleAutoStrategyForUMC") @ResponseWrapper(localName = "modBlackHoleAutoStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBlackHoleAutoStrategyForUMCResponse") @@ -518,6 +803,27 @@ public interface AbnormalFlowCleaningServicePortType { int blackHoleTime ); + /** + * Mod ac protection for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param fixString the fix string + * @param startLocation the start location + * @param endLocation the end location + * @param regularExpression the regular expression + * @param acSip the ac sip + * @param acSmask the ac smask + * @param acDip the ac dip + * @param acDmask the ac dmask + * @param protocol the protocol + * @param srcPortMin the src port min + * @param srcPortMax the src port max + * @param dstPortMin the dst port min + * @param dstPortMax the dst port max + * @param threshold the threshold + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modACProtectionForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModACProtectionForUMC") @ResponseWrapper(localName = "modACProtectionForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModACProtectionForUMCResponse") @@ -558,6 +864,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String threshold ); + /** + * Mod ddos http get uri cus pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param uri the uri + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDdosHttpGetUriCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetUriCusProV4ForUMC") @ResponseWrapper(localName = "modDdosHttpGetUriCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetUriCusProV4ForUMCResponse") @@ -576,6 +892,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Mod ddos c cuser group v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDdosCCuserGroupV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosCCuserGroupV4ForUMC") @ResponseWrapper(localName = "modDdosCCuserGroupV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosCCuserGroupV4ForUMCResponse") @@ -588,6 +911,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String name ); + /** + * Gets ddos global icmp frag from umc. + * + * @param objName the obj name + * @return the ddos global icmp frag from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalIcmpFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalIcmpFragFromUMC") @ResponseWrapper(localName = "getDdosGlobalIcmpFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalIcmpFragFromUMCResponse") @@ -598,6 +927,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Mod dns domain custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param domain the domain + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDnsDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsDomainCustomV4ForUMC") @ResponseWrapper(localName = "modDnsDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsDomainCustomV4ForUMCResponse") @@ -616,6 +955,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Mod black hole manual strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param ipAddress the ip address + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modBlackHoleManualStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBlackHoleManualStrategyForUMC") @ResponseWrapper(localName = "modBlackHoleManualStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBlackHoleManualStrategyForUMCResponse") @@ -628,6 +974,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String ipAddress ); + /** + * Gets all black hole manual strategy from umc. + * + * @return the all black hole manual strategy from umc + */ @WebMethod @RequestWrapper(localName = "getAllBlackHoleManualStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBlackHoleManualStrategyFromUMC") @ResponseWrapper(localName = "getAllBlackHoleManualStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBlackHoleManualStrategyFromUMCResponse") @@ -635,6 +986,15 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfBlackHoleManualStrategyForService getAllBlackHoleManualStrategyFromUMC() ; + /** + * Mod dns sip global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDnsSipGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSipGlobalV4ForUMC") @ResponseWrapper(localName = "modDnsSipGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSipGlobalV4ForUMCResponse") @@ -651,6 +1011,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add one key detection com . dptech . dispose . ntc request result info. + * + * @param protectIp the protect ip + * @param attackType the attack type + * @param direction the direction + * @param bandwidth the bandwidth + * @param business the business + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addOneKeyDetection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddOneKeyDetection") @ResponseWrapper(localName = "addOneKeyDetectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddOneKeyDetectionResponse") @@ -669,6 +1039,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String business ); + /** + * Add ddos http get uri glo pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDdosHttpGetUriGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetUriGloProV4ForUMC") @ResponseWrapper(localName = "addDdosHttpGetUriGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetUriGloProV4ForUMCResponse") @@ -685,6 +1064,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add black hole manual strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param detectName the detect name + * @param ipAddress the ip address + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addBlackHoleManualStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBlackHoleManualStrategyForUMC") @ResponseWrapper(localName = "addBlackHoleManualStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBlackHoleManualStrategyForUMCResponse") @@ -699,6 +1086,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String ipAddress ); + /** + * Sets ddos global udp length for umc. + * + * @param objName the obj name + * @param lengthenable the lengthenable + * @param minlength the minlength + * @param maxlength the maxlength + * @return the ddos global udp length for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalUdpLengthForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalUdpLengthForUMC") @ResponseWrapper(localName = "setDdosGlobalUdpLengthForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalUdpLengthForUMCResponse") @@ -715,6 +1111,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String maxlength ); + /** + * Add one key restore com . dptech . dispose . ntc request result info. + * + * @param protectIp the protect ip + * @param attackType the attack type + * @param direction the direction + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addOneKeyRestore", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddOneKeyRestore") @ResponseWrapper(localName = "addOneKeyRestoreResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddOneKeyRestoreResponse") @@ -729,6 +1133,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String direction ); + /** + * Ge dns domain custom v 4 t from umc com . dptech . dispose . array of dns domain custom v 4 for service. + * + * @param objName the obj name + * @return the com . dptech . dispose . array of dns domain custom v 4 for service + */ @WebMethod(operationName = "geDnsDomainCustomV4tFromUMC") @RequestWrapper(localName = "geDnsDomainCustomV4tFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GeDnsDomainCustomV4TFromUMC") @ResponseWrapper(localName = "geDnsDomainCustomV4tFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GeDnsDomainCustomV4TFromUMCResponse") @@ -739,6 +1149,35 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Add complete anomaly detection strategy for umc com . dptech . dispose . ntc request result info. + * + * @param strategyName the strategy name + * @param detectionObjName the detection obj name + * @param direction the direction + * @param synFloodThreshold the syn flood threshold + * @param synFloodThresholdType the syn flood threshold type + * @param udpFloodThreshold the udp flood threshold + * @param udpFloodThresholdType the udp flood threshold type + * @param icmpFloodThreshold the icmp flood threshold + * @param icmpFloodThresholdType the icmp flood threshold type + * @param synAckFloodThreshold the syn ack flood threshold + * @param synAckFloodThresholdType the syn ack flood threshold type + * @param finFloodThreshold the fin flood threshold + * @param finFloodThresholdType the fin flood threshold type + * @param ipFragmentFloodThreshold the ip fragment flood threshold + * @param ipFragmentFloodThresholdType the ip fragment flood threshold type + * @param ackFloodThreshold the ack flood threshold + * @param ackFloodThresholdType the ack flood threshold type + * @param httpFloodThreshold the http flood threshold + * @param httpFloodThresholdType the http flood threshold type + * @param ccFloodThreshold the cc flood threshold + * @param ccFloodThresholdType the cc flood threshold type + * @param dnsFloodThreshold the dns flood threshold + * @param dnsFloodThresholdType the dns flood threshold type + * @param bandWidthThreshold the band width threshold + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addCompleteAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddCompleteAnomalyDetectionStrategyForUMC") @ResponseWrapper(localName = "addCompleteAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddCompleteAnomalyDetectionStrategyForUMCResponse") @@ -795,6 +1234,13 @@ public interface AbnormalFlowCleaningServicePortType { int bandWidthThreshold ); + /** + * Del dns sip custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDnsSipCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSipCustomV4ForUMC") @ResponseWrapper(localName = "delDnsSipCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSipCustomV4ForUMCResponse") @@ -807,6 +1253,39 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Mod fingerprint udp for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param port1 the port 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param port2 the port 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param port3 the port 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modFingerprintUdpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintUdpForUMC") @ResponseWrapper(localName = "modFingerprintUdpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintUdpForUMCResponse") @@ -871,6 +1350,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Sets ddos global tcp frag for umc. + * + * @param objName the obj name + * @param tcpenable the tcpenable + * @param tcpthreshold the tcpthreshold + * @return the ddos global tcp frag for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalTcpFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpFragForUMC") @ResponseWrapper(localName = "setDdosGlobalTcpFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpFragForUMCResponse") @@ -885,6 +1372,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String tcpthreshold ); + /** + * Gets ddos global tcp state from umc. + * + * @param objName the obj name + * @return the ddos global tcp state from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalTcpStateFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpStateFromUMC") @ResponseWrapper(localName = "getDdosGlobalTcpStateFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpStateFromUMCResponse") @@ -895,6 +1388,42 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Mod fingerprint tcp for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param port1 the port 1 + * @param flag1 the flag 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param port2 the port 2 + * @param flag2 the flag 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param port3 the port 3 + * @param flag3 the flag 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modFingerprintTcpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintTcpForUMC") @ResponseWrapper(localName = "modFingerprintTcpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintTcpForUMCResponse") @@ -965,6 +1494,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add dns domain global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDnsDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsDomainGlobalV4ForUMC") @ResponseWrapper(localName = "addDnsDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsDomainGlobalV4ForUMCResponse") @@ -981,6 +1519,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Del black and white list protection com . dptech . dispose . ntc request result info. + * + * @param name the name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delBlackAndWhiteListProtection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelBlackAndWhiteListProtection") @ResponseWrapper(localName = "delBlackAndWhiteListProtectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelBlackAndWhiteListProtectionResponse") @@ -991,6 +1535,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String name ); + /** + * Sets ddos global icmp frag for umc. + * + * @param objName the obj name + * @param icmpenable the icmpenable + * @param icmpthreshold the icmpthreshold + * @return the ddos global icmp frag for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalIcmpFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalIcmpFragForUMC") @ResponseWrapper(localName = "setDdosGlobalIcmpFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalIcmpFragForUMCResponse") @@ -1005,6 +1557,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String icmpthreshold ); + /** + * Gets ddos global tcp flag from umc. + * + * @param objName the obj name + * @return the ddos global tcp flag from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalTcpFlagFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpFlagFromUMC") @ResponseWrapper(localName = "getDdosGlobalTcpFlagFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpFlagFromUMCResponse") @@ -1015,6 +1573,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Start bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param cleaningDevices the cleaning devices + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "startBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartBypassManualTractionStrategyForUMC") @ResponseWrapper(localName = "startBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartBypassManualTractionStrategyForUMCResponse") @@ -1027,6 +1592,39 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String cleaningDevices ); + /** + * Add fingerprint udp for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param port1 the port 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param port2 the port 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param port3 the port 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addFingerprintUdpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintUdpForUMC") @ResponseWrapper(localName = "addFingerprintUdpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintUdpForUMCResponse") @@ -1091,6 +1689,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add ddos dns retry protect for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param action the action + * @param alertthreshold the alertthreshold + * @param protectthreshold the protectthreshold + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDdosDnsRetryProtectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosDnsRetryProtectForUMC") @ResponseWrapper(localName = "addDdosDnsRetryProtectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosDnsRetryProtectForUMCResponse") @@ -1109,6 +1717,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String protectthreshold ); + /** + * Gets all black hole auto strategy from umc. + * + * @return the all black hole auto strategy from umc + */ @WebMethod @RequestWrapper(localName = "getAllBlackHoleAutoStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBlackHoleAutoStrategyFromUMC") @ResponseWrapper(localName = "getAllBlackHoleAutoStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllBlackHoleAutoStrategyFromUMCResponse") @@ -1116,6 +1729,12 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfBlackHoleAutoStrategyForService getAllBlackHoleAutoStrategyFromUMC() ; + /** + * Gets dns domain global v 4 from umc. + * + * @param objName the obj name + * @return the dns domain global v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDnsDomainGlobalV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsDomainGlobalV4FromUMC") @ResponseWrapper(localName = "getDnsDomainGlobalV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsDomainGlobalV4FromUMCResponse") @@ -1126,6 +1745,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del ddos http get sip glo pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDdosHttpGetSipGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetSipGloProV4ForUMC") @ResponseWrapper(localName = "delDdosHttpGetSipGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetSipGloProV4ForUMCResponse") @@ -1138,6 +1764,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets anomaly detection strategy from umc. + * + * @param strategyName the strategy name + * @return the anomaly detection strategy from umc + */ @WebMethod @RequestWrapper(localName = "getAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAnomalyDetectionStrategyFromUMC") @ResponseWrapper(localName = "getAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAnomalyDetectionStrategyFromUMCResponse") @@ -1148,6 +1780,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String strategyName ); + /** + * Add ddos c cuser group v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDdosCCuserGroupV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosCCuserGroupV4ForUMC") @ResponseWrapper(localName = "addDdosCCuserGroupV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosCCuserGroupV4ForUMCResponse") @@ -1160,6 +1799,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String name ); + /** + * Mod dns sec domain global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDnsSecDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSecDomainGlobalV4ForUMC") @ResponseWrapper(localName = "modDnsSecDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSecDomainGlobalV4ForUMCResponse") @@ -1176,6 +1824,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add ddos http get sip cus pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param sip the sip + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDdosHttpGetSipCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetSipCusProV4ForUMC") @ResponseWrapper(localName = "addDdosHttpGetSipCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetSipCusProV4ForUMCResponse") @@ -1194,6 +1852,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Gets ddos global ack payload from umc. + * + * @param objName the obj name + * @return the ddos global ack payload from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalAckPayloadFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalAckPayloadFromUMC") @ResponseWrapper(localName = "getDdosGlobalAckPayloadFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalAckPayloadFromUMCResponse") @@ -1204,6 +1868,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos global tcp frag from umc. + * + * @param objName the obj name + * @return the ddos global tcp frag from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalTcpFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpFragFromUMC") @ResponseWrapper(localName = "getDdosGlobalTcpFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalTcpFragFromUMCResponse") @@ -1214,6 +1884,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Stop bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param cleaningDevices the cleaning devices + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "stopBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopBypassManualTractionStrategyForUMC") @ResponseWrapper(localName = "stopBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopBypassManualTractionStrategyForUMCResponse") @@ -1226,6 +1903,36 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String cleaningDevices ); + /** + * Add fingerprint other for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addFingerprintOtherForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintOtherForUMC") @ResponseWrapper(localName = "addFingerprintOtherForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddFingerprintOtherForUMCResponse") @@ -1284,6 +1991,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Mod ddos http get sip glo pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDdosHttpGetSipGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetSipGloProV4ForUMC") @ResponseWrapper(localName = "modDdosHttpGetSipGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetSipGloProV4ForUMCResponse") @@ -1300,6 +2016,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Gets all anomaly detection strategy from umc. + * + * @return the all anomaly detection strategy from umc + */ @WebMethod @RequestWrapper(localName = "getAllAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllAnomalyDetectionStrategyFromUMC") @ResponseWrapper(localName = "getAllAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllAnomalyDetectionStrategyFromUMCResponse") @@ -1307,6 +2028,14 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllAnomalyDetectionStrategyFromUMC() ; + /** + * Start abnormal task for umc com . dptech . dispose . ntc request result info. + * + * @param abnormalIp the abnormal ip + * @param attackType the attack type + * @param direction the direction + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "startAbnormalTaskForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartAbnormalTaskForUMC") @ResponseWrapper(localName = "startAbnormalTaskForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StartAbnormalTaskForUMCResponse") @@ -1321,6 +2050,23 @@ public interface AbnormalFlowCleaningServicePortType { int direction ); + /** + * Mod black and white list protection com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param sipType the sip type + * @param sipStartIp the sip start ip + * @param sipEndIp the sip end ip + * @param dipType the dip type + * @param dipStartIp the dip start ip + * @param dipEndIp the dip end ip + * @param timeType the time type + * @param hour the hour + * @param minute the minute + * @param second the second + * @param protectionType the protection type + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modBlackAndWhiteListProtection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBlackAndWhiteListProtection") @ResponseWrapper(localName = "modBlackAndWhiteListProtectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBlackAndWhiteListProtectionResponse") @@ -1353,6 +2099,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String protectionType ); + /** + * Add dns sip global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDnsSipGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSipGlobalV4ForUMC") @ResponseWrapper(localName = "addDnsSipGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsSipGlobalV4ForUMCResponse") @@ -1369,6 +2124,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add anomaly detection strategy for umc com . dptech . dispose . ntc request result info. + * + * @param strategyName the strategy name + * @param detectionObjName the detection obj name + * @param bandWidthThreshold the band width threshold + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddAnomalyDetectionStrategyForUMC") @ResponseWrapper(localName = "addAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddAnomalyDetectionStrategyForUMCResponse") @@ -1383,6 +2146,27 @@ public interface AbnormalFlowCleaningServicePortType { int bandWidthThreshold ); + /** + * Add ddos ac protection for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param fixString the fix string + * @param startLocation the start location + * @param endLocation the end location + * @param regularExpression the regular expression + * @param acSip the ac sip + * @param acSmask the ac smask + * @param acDip the ac dip + * @param acDmask the ac dmask + * @param protocol the protocol + * @param srcPortMin the src port min + * @param srcPortMax the src port max + * @param dstPortMin the dst port min + * @param dstPortMax the dst port max + * @param threshold the threshold + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDdosACProtectionForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosACProtectionForUMC") @ResponseWrapper(localName = "addDdosACProtectionForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosACProtectionForUMCResponse") @@ -1423,6 +2207,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String threshold ); + /** + * Del ddos http get sip cus pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDdosHttpGetSipCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetSipCusProV4ForUMC") @ResponseWrapper(localName = "delDdosHttpGetSipCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetSipCusProV4ForUMCResponse") @@ -1435,6 +2226,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos global udp length from umc. + * + * @param objName the obj name + * @return the ddos global udp length from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalUdpLengthFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalUdpLengthFromUMC") @ResponseWrapper(localName = "getDdosGlobalUdpLengthFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalUdpLengthFromUMCResponse") @@ -1445,6 +2242,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del ddos ac protection for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDdosACProtectionForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosACProtectionForUMC") @ResponseWrapper(localName = "delDdosACProtectionForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosACProtectionForUMCResponse") @@ -1457,6 +2261,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Mod ddos http get uri glo pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDdosHttpGetUriGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetUriGloProV4ForUMC") @ResponseWrapper(localName = "modDdosHttpGetUriGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetUriGloProV4ForUMCResponse") @@ -1473,6 +2286,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Del ddos http get uri glo pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDdosHttpGetUriGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetUriGloProV4ForUMC") @ResponseWrapper(localName = "delDdosHttpGetUriGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosHttpGetUriGloProV4ForUMCResponse") @@ -1485,6 +2305,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del dns domain global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDnsDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsDomainGlobalV4ForUMC") @ResponseWrapper(localName = "delDnsDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsDomainGlobalV4ForUMCResponse") @@ -1497,6 +2324,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del dns domain custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDnsDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsDomainCustomV4ForUMC") @ResponseWrapper(localName = "delDnsDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsDomainCustomV4ForUMCResponse") @@ -1509,6 +2343,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets dns sec domain custom v 4 from umc. + * + * @param objName the obj name + * @return the dns sec domain custom v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDnsSecDomainCustomV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSecDomainCustomV4FromUMC") @ResponseWrapper(localName = "getDnsSecDomainCustomV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSecDomainCustomV4FromUMCResponse") @@ -1519,6 +2359,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets all protect devices. + * + * @return the all protect devices + */ @WebMethod @RequestWrapper(localName = "getAllProtectDevices", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectDevices") @ResponseWrapper(localName = "getAllProtectDevicesResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectDevicesResponse") @@ -1526,6 +2371,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String getAllProtectDevices() ; + /** + * Del anomaly detection strategy for umc com . dptech . dispose . ntc request result info. + * + * @param strategyName the strategy name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelAnomalyDetectionStrategyForUMC") @ResponseWrapper(localName = "delAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelAnomalyDetectionStrategyForUMCResponse") @@ -1536,6 +2387,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String strategyName ); + /** + * Delete complete anomaly detection strategy for umc com . dptech . dispose . ntc request result info. + * + * @param strategyName the strategy name + * @param direction the direction + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "deleteCompleteAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteCompleteAnomalyDetectionStrategyForUMC") @ResponseWrapper(localName = "deleteCompleteAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteCompleteAnomalyDetectionStrategyForUMCResponse") @@ -1548,6 +2406,14 @@ public interface AbnormalFlowCleaningServicePortType { int direction ); + /** + * Mod bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param protectName the protect name + * @param ipRange the ip range + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBypassManualTractionStrategyForUMC") @ResponseWrapper(localName = "modBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModBypassManualTractionStrategyForUMCResponse") @@ -1562,6 +2428,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String ipRange ); + /** + * Del dns sec domain custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDnsSecDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSecDomainCustomV4ForUMC") @ResponseWrapper(localName = "delDnsSecDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSecDomainCustomV4ForUMCResponse") @@ -1574,6 +2447,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Sets ddos global other frag for umc. + * + * @param objName the obj name + * @param otherenable the otherenable + * @param otherthreshold the otherthreshold + * @return the ddos global other frag for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalOtherFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalOtherFragForUMC") @ResponseWrapper(localName = "setDdosGlobalOtherFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalOtherFragForUMCResponse") @@ -1588,6 +2469,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String otherthreshold ); + /** + * Link protection strategy template for umc com . dptech . dispose . ntc request result info. + * + * @param protectName the protect name + * @param templateName the template name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "linkProtectionStrategyTemplateForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.LinkProtectionStrategyTemplateForUMC") @ResponseWrapper(localName = "linkProtectionStrategyTemplateForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.LinkProtectionStrategyTemplateForUMCResponse") @@ -1600,6 +2488,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String templateName ); + /** + * Gets fingerprint udp from umc. + * + * @param objName the obj name + * @return the fingerprint udp from umc + */ @WebMethod @RequestWrapper(localName = "getFingerprintUdpFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintUdpFromUMC") @ResponseWrapper(localName = "getFingerprintUdpFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintUdpFromUMCResponse") @@ -1610,6 +2504,24 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Sets ddos global tcp length for umc. + * + * @param synenable the synenable + * @param objName the obj name + * @param synMin the syn min + * @param synMax the syn max + * @param synackenable the synackenable + * @param synackMin the synack min + * @param synackMax the synack max + * @param finenable the finenable + * @param finMin the fin min + * @param finMax the fin max + * @param rstenable the rstenable + * @param rstMin the rst min + * @param rstMax the rst max + * @return the ddos global tcp length for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalTcpLengthForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpLengthForUMC") @ResponseWrapper(localName = "setDdosGlobalTcpLengthForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpLengthForUMCResponse") @@ -1644,6 +2556,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String rstMax ); + /** + * Sets ddos global icmp payload for umc. + * + * @param objName the obj name + * @param payloadcontentenable the payloadcontentenable + * @param payloadThreshold the payload threshold + * @param payloadOffsetMin the payload offset min + * @param payloadOffsetMax the payload offset max + * @return the ddos global icmp payload for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalIcmpPayloadForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalIcmpPayloadForUMC") @ResponseWrapper(localName = "setDdosGlobalIcmpPayloadForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalIcmpPayloadForUMCResponse") @@ -1662,6 +2584,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String payloadOffsetMax ); + /** + * Delete protection object for umc com . dptech . dispose . ntc request result info. + * + * @param protectionName the protection name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "deleteProtectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteProtectionObjectForUMC") @ResponseWrapper(localName = "deleteProtectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteProtectionObjectForUMCResponse") @@ -1672,6 +2600,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String protectionName ); + /** + * Del fingerprint other for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delFingerprintOtherForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintOtherForUMC") @ResponseWrapper(localName = "delFingerprintOtherForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintOtherForUMCResponse") @@ -1684,6 +2619,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos http get uri glo pro v 4 from umc. + * + * @param objName the obj name + * @return the ddos http get uri glo pro v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDdosHttpGetUriGloProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetUriGloProV4FromUMC") @ResponseWrapper(localName = "getDdosHttpGetUriGloProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetUriGloProV4FromUMCResponse") @@ -1694,6 +2635,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets all protection target with strategy association relationship for umc. + * + * @return the all protection target with strategy association relationship for umc + */ @WebMethod @RequestWrapper(localName = "getAllProtectionTargetWithStrategyAssociationRelationshipForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC") @ResponseWrapper(localName = "getAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse") @@ -1701,6 +2647,17 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfProtectionTargetWithStrategyForService getAllProtectionTargetWithStrategyAssociationRelationshipForUMC() ; + /** + * Add detection object for umc com . dptech . dispose . ntc request result info. + * + * @param detectionDevices the detection devices + * @param cleaningDevices the cleaning devices + * @param detectionName the detection name + * @param ipSegment the ip segment + * @param ipType the ip type + * @param cleaningType the cleaning type + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDetectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDetectionObjectForUMC") @ResponseWrapper(localName = "addDetectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDetectionObjectForUMCResponse") @@ -1721,6 +2678,15 @@ public interface AbnormalFlowCleaningServicePortType { int cleaningType ); + /** + * Modify protection object for umc com . dptech . dispose . ntc request result info. + * + * @param protectionName the protection name + * @param ipSegment the ip segment + * @param ipType the ip type + * @param cleaningType the cleaning type + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modifyProtectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModifyProtectionObjectForUMC") @ResponseWrapper(localName = "modifyProtectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModifyProtectionObjectForUMCResponse") @@ -1737,6 +2703,14 @@ public interface AbnormalFlowCleaningServicePortType { int cleaningType ); + /** + * Sets ddos global udp frag for umc. + * + * @param objName the obj name + * @param udpenable the udpenable + * @param udpthreshold the udpthreshold + * @return the ddos global udp frag for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalUdpFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalUdpFragForUMC") @ResponseWrapper(localName = "setDdosGlobalUdpFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalUdpFragForUMCResponse") @@ -1751,6 +2725,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String udpthreshold ); + /** + * Sets ddos global icmp length for umc. + * + * @param objName the obj name + * @param lengthenable the lengthenable + * @param minlength the minlength + * @param maxlength the maxlength + * @return the ddos global icmp length for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalIcmpLengthForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalIcmpLengthForUMC") @ResponseWrapper(localName = "setDdosGlobalIcmpLengthForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalIcmpLengthForUMCResponse") @@ -1767,6 +2750,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String maxlength ); + /** + * Gets ddos global udp frag from umc. + * + * @param objName the obj name + * @return the ddos global udp frag from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalUdpFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalUdpFragFromUMC") @ResponseWrapper(localName = "getDdosGlobalUdpFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalUdpFragFromUMCResponse") @@ -1777,6 +2766,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets fingerprint tcp from umc. + * + * @param objName the obj name + * @return the fingerprint tcp from umc + */ @WebMethod @RequestWrapper(localName = "getFingerprintTcpFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintTcpFromUMC") @ResponseWrapper(localName = "getFingerprintTcpFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintTcpFromUMCResponse") @@ -1787,6 +2782,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Sets ddos global tcp flag for umc. + * + * @param objName the obj name + * @param tcpFlagenable the tcp flagenable + * @return the ddos global tcp flag for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalTcpFlagForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpFlagForUMC") @ResponseWrapper(localName = "setDdosGlobalTcpFlagForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpFlagForUMCResponse") @@ -1799,6 +2801,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String tcpFlagenable ); + /** + * Add black hole auto strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param detectName the detect name + * @param detectMode the detect mode + * @param blackHoleThreshold the black hole threshold + * @param blackHoleTime the black hole time + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addBlackHoleAutoStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBlackHoleAutoStrategyForUMC") @ResponseWrapper(localName = "addBlackHoleAutoStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBlackHoleAutoStrategyForUMCResponse") @@ -1817,6 +2829,13 @@ public interface AbnormalFlowCleaningServicePortType { int blackHoleTime ); + /** + * Gets complete anomaly detection strategy from umc. + * + * @param strategyName the strategy name + * @param direction the direction + * @return the complete anomaly detection strategy from umc + */ @WebMethod @RequestWrapper(localName = "getCompleteAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetCompleteAnomalyDetectionStrategyFromUMC") @ResponseWrapper(localName = "getCompleteAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetCompleteAnomalyDetectionStrategyFromUMCResponse") @@ -1829,6 +2848,36 @@ public interface AbnormalFlowCleaningServicePortType { int direction ); + /** + * Mod fingerprint other for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modFingerprintOtherForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintOtherForUMC") @ResponseWrapper(localName = "modFingerprintOtherForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintOtherForUMCResponse") @@ -1887,6 +2936,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add ddos http get uri cus pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param uri the uri + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDdosHttpGetUriCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetUriCusProV4ForUMC") @ResponseWrapper(localName = "addDdosHttpGetUriCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetUriCusProV4ForUMCResponse") @@ -1905,6 +2964,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Add bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @param protectName the protect name + * @param ipRange the ip range + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBypassManualTractionStrategyForUMC") @ResponseWrapper(localName = "addBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBypassManualTractionStrategyForUMCResponse") @@ -1919,6 +2986,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String ipRange ); + /** + * Gets all detection object from umc. + * + * @return the all detection object from umc + */ @WebMethod @RequestWrapper(localName = "getAllDetectionObjectFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllDetectionObjectFromUMC") @ResponseWrapper(localName = "getAllDetectionObjectFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllDetectionObjectFromUMCResponse") @@ -1926,6 +2998,16 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfDetectionObjectDataForService getAllDetectionObjectFromUMC() ; + /** + * Mod ddos http get sip cus pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param sip the sip + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDdosHttpGetSipCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetSipCusProV4ForUMC") @ResponseWrapper(localName = "modDdosHttpGetSipCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosHttpGetSipCusProV4ForUMCResponse") @@ -1944,6 +3026,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Gets dns sec domain global v 4 from umc. + * + * @param objName the obj name + * @return the dns sec domain global v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDnsSecDomainGlobalV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSecDomainGlobalV4FromUMC") @ResponseWrapper(localName = "getDnsSecDomainGlobalV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSecDomainGlobalV4FromUMCResponse") @@ -1954,6 +3042,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del ddos c cuser group v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDdosCCuserGroupV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosCCuserGroupV4ForUMC") @ResponseWrapper(localName = "delDdosCCuserGroupV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDdosCCuserGroupV4ForUMCResponse") @@ -1966,6 +3061,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos global other frag from umc. + * + * @param objName the obj name + * @return the ddos global other frag from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalOtherFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalOtherFragFromUMC") @ResponseWrapper(localName = "getDdosGlobalOtherFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalOtherFragFromUMCResponse") @@ -1976,6 +3077,36 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Mod fingerprint icmp for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param keytype1 the keytype 1 + * @param keyoffset1 the keyoffset 1 + * @param keylength1 the keylength 1 + * @param ip1 the ip 1 + * @param mask1 the mask 1 + * @param enable1 the enable 1 + * @param custom1 the custom 1 + * @param keytype2 the keytype 2 + * @param keyoffset2 the keyoffset 2 + * @param keylength2 the keylength 2 + * @param ip2 the ip 2 + * @param mask2 the mask 2 + * @param enable2 the enable 2 + * @param custom2 the custom 2 + * @param keytype3 the keytype 3 + * @param keyoffset3 the keyoffset 3 + * @param keylength3 the keylength 3 + * @param ip3 the ip 3 + * @param mask3 the mask 3 + * @param enable3 the enable 3 + * @param custom3 the custom 3 + * @param threshold the threshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modFingerprintIcmpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintIcmpForUMC") @ResponseWrapper(localName = "modFingerprintIcmpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModFingerprintIcmpForUMCResponse") @@ -2034,6 +3165,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Stop black hole strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "stopBlackHoleStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopBlackHoleStrategyForUMC") @ResponseWrapper(localName = "stopBlackHoleStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopBlackHoleStrategyForUMCResponse") @@ -2044,6 +3181,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String policyName ); + /** + * Gets dns sip global v 4 from umc. + * + * @param objName the obj name + * @return the dns sip global v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDnsSipGlobalV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSipGlobalV4FromUMC") @ResponseWrapper(localName = "getDnsSipGlobalV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDnsSipGlobalV4FromUMCResponse") @@ -2054,6 +3197,11 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets all protection object from umc. + * + * @return the all protection object from umc + */ @WebMethod @RequestWrapper(localName = "getAllProtectionObjectFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectionObjectFromUMC") @ResponseWrapper(localName = "getAllProtectionObjectFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetAllProtectionObjectFromUMCResponse") @@ -2061,6 +3209,17 @@ public interface AbnormalFlowCleaningServicePortType { com.dptech.dispose.ArrayOfProtectionObjectDataForService getAllProtectionObjectFromUMC() ; + /** + * Sets ddos global udp payload for umc. + * + * @param objName the obj name + * @param payloademptyenable the payloademptyenable + * @param payloadcontentenable the payloadcontentenable + * @param payloadThreshold the payload threshold + * @param payloadOffsetMin the payload offset min + * @param payloadOffsetMax the payload offset max + * @return the ddos global udp payload for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalUdpPayloadForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalUdpPayloadForUMC") @ResponseWrapper(localName = "setDdosGlobalUdpPayloadForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalUdpPayloadForUMCResponse") @@ -2081,6 +3240,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String payloadOffsetMax ); + /** + * Gets ddos http get uri cus pro v 4 from umc. + * + * @param objName the obj name + * @return the ddos http get uri cus pro v 4 from umc + */ @WebMethod @RequestWrapper(localName = "getDdosHttpGetUriCusProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetUriCusProV4FromUMC") @ResponseWrapper(localName = "getDdosHttpGetUriCusProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosHttpGetUriCusProV4FromUMCResponse") @@ -2091,6 +3256,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del bypass manual traction strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelBypassManualTractionStrategyForUMC") @ResponseWrapper(localName = "delBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelBypassManualTractionStrategyForUMCResponse") @@ -2101,6 +3272,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String policyName ); + /** + * Gets fingerprint other from umc. + * + * @param objName the obj name + * @return the fingerprint other from umc + */ @WebMethod @RequestWrapper(localName = "getFingerprintOtherFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintOtherFromUMC") @ResponseWrapper(localName = "getFingerprintOtherFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetFingerprintOtherFromUMCResponse") @@ -2111,6 +3288,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Stop abnormal task for umc com . dptech . dispose . ntc request result info. + * + * @param abnormalIp the abnormal ip + * @param attackType the attack type + * @param direction the direction + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "stopAbnormalTaskForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopAbnormalTaskForUMC") @ResponseWrapper(localName = "stopAbnormalTaskForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.StopAbnormalTaskForUMCResponse") @@ -2125,6 +3310,15 @@ public interface AbnormalFlowCleaningServicePortType { int direction ); + /** + * Add ddos http get sip glo pro v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDdosHttpGetSipGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetSipGloProV4ForUMC") @ResponseWrapper(localName = "addDdosHttpGetSipGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDdosHttpGetSipGloProV4ForUMCResponse") @@ -2141,6 +3335,14 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Sets ddos global tcp state for umc. + * + * @param objName the obj name + * @param statenable the statenable + * @param chosen the chosen + * @return the ddos global tcp state for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalTcpStateForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpStateForUMC") @ResponseWrapper(localName = "setDdosGlobalTcpStateForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalTcpStateForUMCResponse") @@ -2155,6 +3357,17 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String chosen ); + /** + * Add protection object for umc com . dptech . dispose . ntc request result info. + * + * @param detectionDevices the detection devices + * @param cleaningDevices the cleaning devices + * @param protectionName the protection name + * @param ipSegment the ip segment + * @param ipType the ip type + * @param cleaningType the cleaning type + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addProtectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddProtectionObjectForUMC") @ResponseWrapper(localName = "addProtectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddProtectionObjectForUMCResponse") @@ -2175,6 +3388,16 @@ public interface AbnormalFlowCleaningServicePortType { int cleaningType ); + /** + * Mod dns sec domain custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param domain the domain + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDnsSecDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSecDomainCustomV4ForUMC") @ResponseWrapper(localName = "modDnsSecDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDnsSecDomainCustomV4ForUMCResponse") @@ -2193,6 +3416,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Delete detection object for umc com . dptech . dispose . ntc request result info. + * + * @param detectionName the detection name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "deleteDetectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteDetectionObjectForUMC") @ResponseWrapper(localName = "deleteDetectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DeleteDetectionObjectForUMCResponse") @@ -2203,6 +3432,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String detectionName ); + /** + * Del fingerprint udp for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delFingerprintUdpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintUdpForUMC") @ResponseWrapper(localName = "delFingerprintUdpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelFingerprintUdpForUMCResponse") @@ -2215,6 +3451,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Sets ddos global ack payload for umc. + * + * @param objName the obj name + * @param payloadcontentenable the payloadcontentenable + * @param payloadThreshold the payload threshold + * @param payloadOffsetMin the payload offset min + * @param payloadOffsetMax the payload offset max + * @return the ddos global ack payload for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalAckPayloadForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalAckPayloadForUMC") @ResponseWrapper(localName = "setDdosGlobalAckPayloadForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalAckPayloadForUMCResponse") @@ -2233,6 +3479,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String payloadOffsetMax ); + /** + * Mod ddos dns retry protect for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param action the action + * @param alertthreshold the alertthreshold + * @param protectthreshold the protectthreshold + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "modDdosDnsRetryProtectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosDnsRetryProtectForUMC") @ResponseWrapper(localName = "modDdosDnsRetryProtectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.ModDdosDnsRetryProtectForUMCResponse") @@ -2251,6 +3507,16 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String protectthreshold ); + /** + * Add dns domain custom v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param objName the obj name + * @param name the name + * @param domain the domain + * @param protectthreshold the protectthreshold + * @param action the action + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addDnsDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsDomainCustomV4ForUMC") @ResponseWrapper(localName = "addDnsDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddDnsDomainCustomV4ForUMCResponse") @@ -2269,6 +3535,15 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String action ); + /** + * Sets ddos global syn flood for umc. + * + * @param enable the enable + * @param objName the obj name + * @param threshold the threshold + * @param type the type + * @return the ddos global syn flood for umc + */ @WebMethod @RequestWrapper(localName = "setDdosGlobalSynFloodForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalSynFloodForUMC") @ResponseWrapper(localName = "setDdosGlobalSynFloodForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.SetDdosGlobalSynFloodForUMCResponse") @@ -2285,6 +3560,23 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String type ); + /** + * Add black and white list protection com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param sipType the sip type + * @param sipStartIp the sip start ip + * @param sipEndIp the sip end ip + * @param dipType the dip type + * @param dipStartIp the dip start ip + * @param dipEndIp the dip end ip + * @param timeType the time type + * @param hour the hour + * @param minute the minute + * @param second the second + * @param protectionType the protection type + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "addBlackAndWhiteListProtection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBlackAndWhiteListProtection") @ResponseWrapper(localName = "addBlackAndWhiteListProtectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.AddBlackAndWhiteListProtectionResponse") @@ -2317,6 +3609,13 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String protectionType ); + /** + * Del dns sip global v 4 for umc com . dptech . dispose . ntc request result info. + * + * @param name the name + * @param objName the obj name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delDnsSipGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSipGlobalV4ForUMC") @ResponseWrapper(localName = "delDnsSipGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelDnsSipGlobalV4ForUMCResponse") @@ -2329,6 +3628,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos global icmp length from umc. + * + * @param objName the obj name + * @return the ddos global icmp length from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalIcmpLengthFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalIcmpLengthFromUMC") @ResponseWrapper(localName = "getDdosGlobalIcmpLengthFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalIcmpLengthFromUMCResponse") @@ -2339,6 +3644,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Gets ddos ac protection from umc. + * + * @param objName the obj name + * @return the ddos ac protection from umc + */ @WebMethod @RequestWrapper(localName = "getDdosACProtectionFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosACProtectionFromUMC") @ResponseWrapper(localName = "getDdosACProtectionFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosACProtectionFromUMCResponse") @@ -2349,6 +3660,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String objName ); + /** + * Del black hole strategy for umc com . dptech . dispose . ntc request result info. + * + * @param policyName the policy name + * @return the com . dptech . dispose . ntc request result info + */ @WebMethod @RequestWrapper(localName = "delBlackHoleStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelBlackHoleStrategyForUMC") @ResponseWrapper(localName = "delBlackHoleStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.DelBlackHoleStrategyForUMCResponse") @@ -2359,6 +3676,12 @@ public interface AbnormalFlowCleaningServicePortType { java.lang.String policyName ); + /** + * Gets ddos global syn flood from umc. + * + * @param objName the obj name + * @return the ddos global syn flood from umc + */ @WebMethod @RequestWrapper(localName = "getDdosGlobalSynFloodFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalSynFloodFromUMC") @ResponseWrapper(localName = "getDdosGlobalSynFloodFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.dispose.GetDdosGlobalSynFloodFromUMCResponse") diff --git a/src/test/java/com/dispose/Global/InitTestEnvironment.java b/src/test/java/com/dispose/Global/InitTestEnvironment.java index b6757dc3..a4bb6680 100644 --- a/src/test/java/com/dispose/Global/InitTestEnvironment.java +++ b/src/test/java/com/dispose/Global/InitTestEnvironment.java @@ -1,18 +1,57 @@ package com.dispose.Global; +import com.dispose.common.ErrorCode; import com.dispose.common.GlobalVar; +import com.dispose.pojo.po.MReturnType; +import com.dispose.service.UserAccountService; +import javax.annotation.PostConstruct; +import javax.annotation.Resource; import lombok.Getter; import lombok.extern.slf4j.Slf4j; +import org.junit.Assert; +import org.junit.Before; import org.junit.BeforeClass; +import org.springframework.context.annotation.Profile; +import org.springframework.test.context.ActiveProfiles; /** * The type Init test environment. */ @Slf4j @Getter +@ActiveProfiles("test") public class InitTestEnvironment { private final String USER_NAME = "admin"; private final String PASSWORD = "c3855e6b6bb120450f160ba91134522868f89d36062f2061ebeefd80817e1d58"; + private static String logToken = "45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122"; + + @Resource + private UserAccountService userAccountService; + + /** + * User login. + * + * @throws Exception the exception + */ + @Before + public void userLogin() throws Exception { + MReturnType ret = userAccountService.loginService(getUSER_NAME(), getPASSWORD()); + + Assert.assertEquals(ret.getFirstParam(), ErrorCode.ERR_OK); + logToken = ret.getSecondParam(); + + Assert.assertNotNull(logToken); + Assert.assertNotEquals(logToken.length(), 0); + } + + /** + * Gets log token. + * + * @return the log token + */ + public String getLogToken() { + return logToken; + } /** * Init virtual device. diff --git a/src/test/java/com/dispose/TestSuit/AllDisposePlatformTest.java b/src/test/java/com/dispose/TestSuit/AllDisposePlatformTest.java index aaad1f29..04f86f62 100644 --- a/src/test/java/com/dispose/TestSuit/AllDisposePlatformTest.java +++ b/src/test/java/com/dispose/TestSuit/AllDisposePlatformTest.java @@ -1,11 +1,13 @@ package com.dispose.TestSuit; +import com.dispose.config.MyConfigTest; import com.dispose.controller.AuthControllerTest; import com.dispose.controller.DeviceNodeInfoControllerTest; import com.dispose.controller.DeviceNodeManagerControllerTest; import com.dispose.controller.TaskControllerTest; import com.dispose.dptech.DPTechInterfaceTestCase; +import com.dispose.help.GetVersionTest; import com.dispose.manager.UserAccountManagerTest; import com.dispose.mapper.DisposeDeviceMapperTest; import com.dispose.mapper.UserAccountMapperTest; @@ -18,6 +20,8 @@ import org.junit.runners.Suite; */ @RunWith(Suite.class) @Suite.SuiteClasses({ + MyConfigTest.class, + GetVersionTest.class, DPTechInterfaceTestCase.class, UserAccountMapperTest.class, UserAccountManagerTest.class, diff --git a/src/test/java/com/dispose/config/MyConfigTest.java b/src/test/java/com/dispose/config/MyConfigTest.java new file mode 100644 index 00000000..85b78682 --- /dev/null +++ b/src/test/java/com/dispose/config/MyConfigTest.java @@ -0,0 +1,25 @@ +package com.dispose.config; + +import javax.annotation.Resource; +import lombok.extern.slf4j.Slf4j; +import org.junit.Assert; +import org.junit.FixMethodOrder; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.MethodSorters; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@Slf4j +@SpringBootTest +@FixMethodOrder(MethodSorters.NAME_ASCENDING) +public class MyConfigTest { + @Resource + private MyConfig myConfig; + + @Test + public void t1_myConfigTest() { + Assert.assertNotNull(myConfig); + } +} diff --git a/src/test/java/com/dispose/controller/AuthControllerTest.java b/src/test/java/com/dispose/controller/AuthControllerTest.java index ccdbdf03..32e766df 100644 --- a/src/test/java/com/dispose/controller/AuthControllerTest.java +++ b/src/test/java/com/dispose/controller/AuthControllerTest.java @@ -36,24 +36,10 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers. @DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD) @Slf4j public class AuthControllerTest extends InitTestEnvironment { - private static String logToken = ""; @Resource private MockMvc mockMvc; @Resource private ObjectMapper objectMapper; - @Resource - private UserAccountService userAccountService; - - @Before - public void userLogin() throws Exception { - MReturnType ret = userAccountService.loginService(getUSER_NAME(), getPASSWORD()); - - Assert.assertEquals(ret.getFirstParam(), ErrorCode.ERR_OK); - logToken = ret.getSecondParam(); - - Assert.assertNotNull(logToken); - Assert.assertNotEquals(logToken.length(), 0); - } /** * Login 1. @@ -63,8 +49,8 @@ public class AuthControllerTest extends InitTestEnvironment { @Test public void login1() throws Exception { LoginReq logReq = LoginReq.builder() - .userName("admin") - .password("c3855e6b6bb120450f160ba91134522868f89d36062f2061ebeefd80817e1d58") + .userName(getUSER_NAME()) + .password(getPASSWORD()) .build(); ProtocolReqDTO reqInfo = new ProtocolReqDTO(); @@ -86,7 +72,7 @@ public class AuthControllerTest extends InitTestEnvironment { ProtocolRespDTO rspInfo = objectMapper.readValue(ret, ProtocolRespDTO.class); LoginRsp logRsp = objectMapper.readValue(rspInfo.getMsgContent(), LoginRsp.class); - Assert.assertEquals(logToken, logRsp.getToken()); + Assert.assertEquals(getLogToken(), logRsp.getToken()); } /** @@ -109,7 +95,7 @@ public class AuthControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/auth/logout") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer " + logToken) + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) diff --git a/src/test/java/com/dispose/controller/DeviceNodeInfoControllerTest.java b/src/test/java/com/dispose/controller/DeviceNodeInfoControllerTest.java index cad96653..7f8df052 100644 --- a/src/test/java/com/dispose/controller/DeviceNodeInfoControllerTest.java +++ b/src/test/java/com/dispose/controller/DeviceNodeInfoControllerTest.java @@ -2,13 +2,18 @@ package com.dispose.controller; import com.dispose.Global.InitTestEnvironment; import com.dispose.common.ConstValue; +import com.dispose.common.ErrorCode; import com.dispose.mapper.DisposeDeviceMapper; import com.dispose.pojo.dto.ProtocolReqDTO; import com.dispose.pojo.entity.DisposeDevice; +import com.dispose.pojo.po.MReturnType; import com.dispose.pojo.vo.common.IDArrayReq; +import com.dispose.service.UserAccountService; import com.fasterxml.jackson.databind.ObjectMapper; import java.util.List; import javax.annotation.Resource; +import org.junit.Assert; +import org.junit.Before; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runner.RunWith; @@ -42,6 +47,9 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { @Resource private DisposeDeviceMapper disposeDeviceMapper; + @Resource + private UserAccountService userAccountService; + private Long getExistsDeviceId() { List dp = disposeDeviceMapper.selectAll(); @@ -73,7 +81,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/version") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -90,7 +98,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/version") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -119,7 +127,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/version") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -148,7 +156,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/deviceinfo") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -177,7 +185,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/deviceinfo") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -206,7 +214,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/capacity") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -235,7 +243,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/capacity") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -250,7 +258,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { * @throws Exception the exception */ @Test - public void t3_getDeviceProtectedIp() throws Exception { + public void t4_getDeviceProtectedIp() throws Exception { IDArrayReq reqData = IDArrayReq.builder() .id(new String[]{String.valueOf(getExistsDeviceId()), "123"}) .build(); @@ -264,7 +272,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/protected_ip") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -279,7 +287,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { * @throws Exception the exception */ @Test - public void t3_getDeviceProtectedIpAll() throws Exception { + public void t4_getDeviceProtectedIpAll() throws Exception { IDArrayReq reqData = IDArrayReq.builder() .id(new String[]{}) .build(); @@ -293,7 +301,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/protected_ip") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -308,7 +316,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { * @throws Exception the exception */ @Test - public void t3_getDisposeNodeList() throws Exception { + public void t5_getDisposeNodeList() throws Exception { IDArrayReq reqData = IDArrayReq.builder() .id(new String[]{String.valueOf(getExistsDeviceId()), "123"}) .build(); @@ -322,7 +330,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/node_list") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -337,7 +345,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { * @throws Exception the exception */ @Test - public void t3_getDisposeNodeListAll() throws Exception { + public void t5_getDisposeNodeListAll() throws Exception { IDArrayReq reqData = IDArrayReq.builder() .id(new String[]{}) .build(); @@ -351,7 +359,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/node_list") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -366,7 +374,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { * @throws Exception the exception */ @Test - public void t3_getDisposeNodeDetails() throws Exception { + public void t6_getDisposeNodeDetails() throws Exception { IDArrayReq reqData = IDArrayReq.builder() .id(new String[]{String.valueOf(getExistsDeviceId()), "123"}) .build(); @@ -380,7 +388,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/node_details") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -395,7 +403,7 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { * @throws Exception the exception */ @Test - public void t3_getDisposeNodeDetailsAll() throws Exception { + public void t6_getDisposeNodeDetailsAll() throws Exception { IDArrayReq reqData = IDArrayReq.builder() .id(new String[]{}) .build(); @@ -409,7 +417,55 @@ public class DeviceNodeInfoControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/information/node_details") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) + .content(objectMapper.writeValueAsString(reqInfo))) + .andDo(print()).andExpect(status().isOk()) + .andExpect(jsonPath("$.code").value(200)) + .andReturn() + .getResponse() + .getContentAsString(); + } + + @Test + public void t7_getLinkStatus() throws Exception { + IDArrayReq reqData = IDArrayReq.builder() + .id(new String[]{String.valueOf(getExistsDeviceId()), "123"}) + .build(); + + ProtocolReqDTO reqInfo = new ProtocolReqDTO(); + reqInfo.setVer(ConstValue.Protocol.VERSION); + reqInfo.setCryptoType(ConstValue.Protocol.CRYPTO_NONE); + reqInfo.setTimeStamp(System.currentTimeMillis()); + reqInfo.setMsgContent(objectMapper.writeValueAsString(reqData)); + + mockMvc.perform(MockMvcRequestBuilders + .post("/information/linkstatus") + .contentType(MediaType.APPLICATION_JSON) + .header("Authorization", "Bearer " + getLogToken()) + .content(objectMapper.writeValueAsString(reqInfo))) + .andDo(print()).andExpect(status().isOk()) + .andExpect(jsonPath("$.code").value(200)) + .andReturn() + .getResponse() + .getContentAsString(); + } + + @Test + public void t7_getLinkStatusAll() throws Exception { + IDArrayReq reqData = IDArrayReq.builder() + .id(new String[]{}) + .build(); + + ProtocolReqDTO reqInfo = new ProtocolReqDTO(); + reqInfo.setVer(ConstValue.Protocol.VERSION); + reqInfo.setCryptoType(ConstValue.Protocol.CRYPTO_NONE); + reqInfo.setTimeStamp(System.currentTimeMillis()); + reqInfo.setMsgContent(objectMapper.writeValueAsString(reqData)); + + mockMvc.perform(MockMvcRequestBuilders + .post("/information/linkstatus") + .contentType(MediaType.APPLICATION_JSON) + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) diff --git a/src/test/java/com/dispose/controller/DeviceNodeManagerControllerTest.java b/src/test/java/com/dispose/controller/DeviceNodeManagerControllerTest.java index c21474d1..78792ee9 100644 --- a/src/test/java/com/dispose/controller/DeviceNodeManagerControllerTest.java +++ b/src/test/java/com/dispose/controller/DeviceNodeManagerControllerTest.java @@ -61,18 +61,6 @@ public class DeviceNodeManagerControllerTest extends InitTestEnvironment { .readme("实验室测试设备") .build()); - addReq.getItems().add(NewNodeInfo.builder() - .id("1") - .ipAddr("107.212.70.4") - .type(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode()) - .areaCode(0) - .name("无效设备") - .manufacturer("浩瀚") - .model("清洗") - .version("3.1.1") - .readme("实验室测试设备") - .build()); - ProtocolReqDTO reqInfo = new ProtocolReqDTO(); reqInfo.setVer(ConstValue.Protocol.VERSION); reqInfo.setCryptoType(ConstValue.Protocol.CRYPTO_NONE); @@ -82,7 +70,7 @@ public class DeviceNodeManagerControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .put("/manager/device") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -113,7 +101,7 @@ public class DeviceNodeManagerControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .delete("/manager/device") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -122,4 +110,30 @@ public class DeviceNodeManagerControllerTest extends InitTestEnvironment { .getContentAsString(); } + @Test + public void t3_delDeviceErr1() throws Exception { + IDArrayReq reqData = IDArrayReq.builder() + .id(new String[]{"0", "1", "2"}) + .build(); + + ProtocolReqDTO reqInfo = new ProtocolReqDTO(); + reqInfo.setVer(ConstValue.Protocol.VERSION); + reqInfo.setCryptoType(ConstValue.Protocol.CRYPTO_NONE); + reqInfo.setTimeStamp(System.currentTimeMillis()); + reqInfo.setMsgContent(objectMapper.writeValueAsString(reqData)); + + log.info("Request Json:" + objectMapper.writeValueAsString(reqInfo)); + + mockMvc.perform(MockMvcRequestBuilders + .delete("/manager/device") + .contentType(MediaType.APPLICATION_JSON) + .header("Authorization", "Bearer " + getLogToken()) + .content(objectMapper.writeValueAsString(reqInfo))) + .andDo(print()).andExpect(status().isOk()) + .andExpect(jsonPath("$.code").value(525)) + .andReturn() + .getResponse() + .getContentAsString(); + } + } diff --git a/src/test/java/com/dispose/controller/TaskControllerTest.java b/src/test/java/com/dispose/controller/TaskControllerTest.java index b1f34163..ac4d120b 100644 --- a/src/test/java/com/dispose/controller/TaskControllerTest.java +++ b/src/test/java/com/dispose/controller/TaskControllerTest.java @@ -2,14 +2,19 @@ package com.dispose.controller; import com.dispose.Global.InitTestEnvironment; import com.dispose.common.ConstValue; +import com.dispose.common.ErrorCode; import com.dispose.pojo.dto.ProtocolReqDTO; +import com.dispose.pojo.po.MReturnType; import com.dispose.pojo.vo.common.IDArrayReq; import com.dispose.pojo.vo.task.StartTaskReq; import com.dispose.pojo.vo.task.StopTaskData; import com.dispose.pojo.vo.task.StopTaskReq; +import com.dispose.service.UserAccountService; import com.fasterxml.jackson.databind.ObjectMapper; import java.util.ArrayList; import javax.annotation.Resource; +import org.junit.Assert; +import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; @@ -37,6 +42,9 @@ public class TaskControllerTest extends InitTestEnvironment { @Resource private ObjectMapper objectMapper; + @Resource + private UserAccountService userAccountService; + /** * T 1 start task. * @@ -59,7 +67,7 @@ public class TaskControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/task/start") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -88,7 +96,7 @@ public class TaskControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/task/stop") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -124,7 +132,7 @@ public class TaskControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/task/stop_ip") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -159,7 +167,7 @@ public class TaskControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/task/stop_node") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -193,7 +201,7 @@ public class TaskControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/task/stop_all") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -222,7 +230,7 @@ public class TaskControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/task/get_node") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) @@ -251,7 +259,7 @@ public class TaskControllerTest extends InitTestEnvironment { mockMvc.perform(MockMvcRequestBuilders .post("/task/get") .contentType(MediaType.APPLICATION_JSON) - .header("Authorization", "Bearer 45509b805d955cfd5ef7093e27a8bb99b3733d9a7bf90e88ba528bcbd29c6122") + .header("Authorization", "Bearer " + getLogToken()) .content(objectMapper.writeValueAsString(reqInfo))) .andDo(print()).andExpect(status().isOk()) .andExpect(jsonPath("$.code").value(200)) diff --git a/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java b/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java index 33dada66..5cc2a561 100644 --- a/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java +++ b/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java @@ -27,6 +27,10 @@ import org.springframework.test.context.junit4.SpringRunner; @SpringBootTest @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class DPTechInterfaceTestCase extends InitTestEnvironment { + + @Override + public void userLogin() {} + /** * T 1 get all detection object from umc. */ diff --git a/src/test/java/com/dispose/help/GetVersionTest.java b/src/test/java/com/dispose/help/GetVersionTest.java new file mode 100644 index 00000000..b6d55088 --- /dev/null +++ b/src/test/java/com/dispose/help/GetVersionTest.java @@ -0,0 +1,38 @@ +package com.dispose.help; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import javax.annotation.Resource; +import lombok.extern.slf4j.Slf4j; +import org.junit.Assert; +import org.junit.FixMethodOrder; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.MethodSorters; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.context.annotation.PropertySource; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@Slf4j +@SpringBootTest +@FixMethodOrder(MethodSorters.NAME_ASCENDING) +@PropertySource("classpath:git.properties") +public class GetVersionTest { + @Resource + private GitInformation gitInformation; + + @Test + public void t1_getVersionTest() throws JsonProcessingException { + GetVersion ver = GetVersion.builder().commitId(gitInformation.getCommit_id()) + .commitDescribe(gitInformation.getCommit_describe()) + .commitTime(gitInformation.getCommit_time()) + .tagName(gitInformation.getTag_name()) + .tags(gitInformation.getTags()) + .build(); + + log.info(new ObjectMapper().writeValueAsString(ver)); + + Assert.assertNotNull(ver); + } +} diff --git a/src/test/java/com/dispose/manager/UserAccountManagerTest.java b/src/test/java/com/dispose/manager/UserAccountManagerTest.java index 96e2901c..557b9665 100644 --- a/src/test/java/com/dispose/manager/UserAccountManagerTest.java +++ b/src/test/java/com/dispose/manager/UserAccountManagerTest.java @@ -78,6 +78,8 @@ public class UserAccountManagerTest extends InitTestEnvironment { @Test public void t4_verifyUserLoginTest() { Assert.assertEquals(userAccountCacheManager.verifyUserLogin(getUSER_NAME(), userToken), ErrorCode.ERR_OK); + Assert.assertEquals(userAccountCacheManager.verifyUserLogin(getUSER_NAME() + "3213", userToken), + ErrorCode.ERR_LOGOUT); } /** @@ -131,6 +133,7 @@ public class UserAccountManagerTest extends InitTestEnvironment { @Test public void t99_cleanUserTokenTest() { userAccountCacheManager.cleanUserToken(getUSER_NAME()); + userAccountCacheManager.cleanUserToken(getUSER_NAME() + "234"); Assert.assertEquals(userAccountCacheManager.verifyToken(userToken), ErrorCode.ERR_LOGOUT); } } diff --git a/src/test/java/com/dispose/mapper/UserAccountMapperTest.java b/src/test/java/com/dispose/mapper/UserAccountMapperTest.java index 00df7aa4..df14a590 100644 --- a/src/test/java/com/dispose/mapper/UserAccountMapperTest.java +++ b/src/test/java/com/dispose/mapper/UserAccountMapperTest.java @@ -56,6 +56,8 @@ public class UserAccountMapperTest extends InitTestEnvironment { UserAccount user = userAccountMapper.getUserByName("admin"); Assert.assertEquals(new Long(user.getStatus()), new Long(ConstValue.UserAccountStatus.LOCKED)); log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(user)); + + userAccountMapper.unlockUserAccount("admin"); } diff --git a/src/test/java/com/dispose/service/UserAccountServiceTest.java b/src/test/java/com/dispose/service/UserAccountServiceTest.java index ea106408..54e62351 100644 --- a/src/test/java/com/dispose/service/UserAccountServiceTest.java +++ b/src/test/java/com/dispose/service/UserAccountServiceTest.java @@ -26,9 +26,9 @@ public class UserAccountServiceTest extends InitTestEnvironment { private UserAccountService userAccountService; @Before - public void userLogin() throws NoSuchAlgorithmException { - MReturnType ret = userAccountService.loginService("admin", - "c3855e6b6bb120450f160ba91134522868f89d36062f2061ebeefd80817e1d58"); + public void userLoginTest() throws NoSuchAlgorithmException { + MReturnType ret = userAccountService.loginService(getUSER_NAME(), + getPASSWORD()); if (ret.getFirstParam() == ErrorCode.ERR_OK) { UserAccountServiceTest.token = ret.getSecondParam(); @@ -36,25 +36,37 @@ public class UserAccountServiceTest extends InitTestEnvironment { } @Test - public void t1_logService() throws NoSuchAlgorithmException { - MReturnType ret = userAccountService.loginService("admin", - "c3855e6b6bb120450f160ba91134522868f89d36062f2061ebeefd80817e1d58"); + public void t1_logServiceTest() throws NoSuchAlgorithmException { + MReturnType ret = userAccountService.loginService(getUSER_NAME(), + getPASSWORD()); Assert.assertEquals(ret.getFirstParam(), ErrorCode.ERR_OK); Assert.assertNotNull(ret.getSecondParam()); Assert.assertEquals(ret.getSecondParam(), UserAccountServiceTest.token); + + ret = userAccountService.loginService(null, null); + + Assert.assertEquals(ret.getFirstParam(), ErrorCode.ERR_USERNOTFOUND); + + ret = userAccountService.loginService(getUSER_NAME(), "12345"); + Assert.assertEquals(ret.getFirstParam(), ErrorCode.ERR_PASSWORD); } @Test - public void t2_logoutService() { - ErrorCode err = userAccountService.logoutService("admin", token); + public void t2_logoutServiceTest() { + ErrorCode err = userAccountService.logoutService(getUSER_NAME(), token); Assert.assertEquals(err, ErrorCode.ERR_OK); } @Test - public void t3_getUserByToken() { + public void t3_getUserByTokenTest() { UserAccount username = userAccountService.getUserByToken(UserAccountServiceTest.token); - Assert.assertEquals(username.getUsername(), "admin"); + Assert.assertEquals(username.getUsername(), getUSER_NAME()); + } + + @Test + public void t4_authTokenCheckTest() { + Assert.assertEquals(userAccountService.authTokenCheck(token), ErrorCode.ERR_OK); } }