void put(String key, T v, int seconds);
/**
- *
+ *
* @Description: TODO(这里用一句话描述这个方法的作用)
* @param key
* @return
*/
boolean setLock(String key);
-
+
/**
- *
+ *
* @Description: TODO(这里用一句话描述这个方法的作用)
* @param key
*/
diff --git a/src/main/java/com/cmcc/hy/phoenix/redis/jedis/RedisClientJedisImpl.java b/src/main/java/com/dispose/redis/jedis/RedisClientJedisImpl.java
similarity index 97%
rename from src/main/java/com/cmcc/hy/phoenix/redis/jedis/RedisClientJedisImpl.java
rename to src/main/java/com/dispose/redis/jedis/RedisClientJedisImpl.java
index d0563eee..7c190319 100644
--- a/src/main/java/com/cmcc/hy/phoenix/redis/jedis/RedisClientJedisImpl.java
+++ b/src/main/java/com/dispose/redis/jedis/RedisClientJedisImpl.java
@@ -1,4 +1,4 @@
-package com.cmcc.hy.phoenix.redis.jedis;
+package com.dispose.redis.jedis;
import java.io.Serializable;
import java.nio.charset.StandardCharsets;
@@ -9,8 +9,8 @@ import javax.annotation.Resource;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.stereotype.Component;
-import com.cmcc.hy.phoenix.redis.ProtobufSerializer;
-import com.cmcc.hy.phoenix.redis.RedisClient;
+import com.dispose.redis.ProtobufSerializer;
+import com.dispose.redis.RedisClient;
import lombok.extern.slf4j.Slf4j;
import redis.clients.jedis.Jedis;
@@ -19,8 +19,8 @@ import redis.clients.jedis.ShardedJedisPool;
import redis.clients.jedis.params.SetParams;
/**
- *
- *
+ *
+ *
* @author phoenix
* @date 2020年2月8日
*/
diff --git a/src/main/java/com/cmcc/hy/phoenix/redis/redisson/RedisClientRedissonImpl.java b/src/main/java/com/dispose/redis/redisson/RedisClientRedissonImpl.java
similarity index 95%
rename from src/main/java/com/cmcc/hy/phoenix/redis/redisson/RedisClientRedissonImpl.java
rename to src/main/java/com/dispose/redis/redisson/RedisClientRedissonImpl.java
index 68945673..e5a885bc 100644
--- a/src/main/java/com/cmcc/hy/phoenix/redis/redisson/RedisClientRedissonImpl.java
+++ b/src/main/java/com/dispose/redis/redisson/RedisClientRedissonImpl.java
@@ -1,4 +1,4 @@
-package com.cmcc.hy.phoenix.redis.redisson;
+package com.dispose.redis.redisson;
import java.io.Serializable;
import java.util.concurrent.TimeUnit;
@@ -16,14 +16,14 @@ import org.redisson.api.RedissonClient;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.stereotype.Component;
-import com.cmcc.hy.phoenix.redis.ProtobufSerializer;
-import com.cmcc.hy.phoenix.redis.RedisClient;
+import com.dispose.redis.ProtobufSerializer;
+import com.dispose.redis.RedisClient;
import lombok.extern.slf4j.Slf4j;
/**
- *
- *
+ *
+ *
* @author phoenix
* @date 2020年3月10日
*/
diff --git a/src/main/java/com/cmcc/hy/phoenix/session/MyCookie.java b/src/main/java/com/dispose/session/MyCookie.java
similarity index 98%
rename from src/main/java/com/cmcc/hy/phoenix/session/MyCookie.java
rename to src/main/java/com/dispose/session/MyCookie.java
index 388aaebf..9523ba04 100644
--- a/src/main/java/com/cmcc/hy/phoenix/session/MyCookie.java
+++ b/src/main/java/com/dispose/session/MyCookie.java
@@ -1,12 +1,12 @@
-package com.cmcc.hy.phoenix.session;
+package com.dispose.session;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
- *
- *
+ *
+ *
* @author phoenix
* @date 2020年2月24日
*/
diff --git a/src/main/java/com/cmcc/hy/phoenix/swagger/Swagger2Config.java b/src/main/java/com/dispose/swagger/Swagger2Config.java
similarity index 94%
rename from src/main/java/com/cmcc/hy/phoenix/swagger/Swagger2Config.java
rename to src/main/java/com/dispose/swagger/Swagger2Config.java
index b0428cfc..f985f10a 100644
--- a/src/main/java/com/cmcc/hy/phoenix/swagger/Swagger2Config.java
+++ b/src/main/java/com/dispose/swagger/Swagger2Config.java
@@ -1,4 +1,4 @@
-package com.cmcc.hy.phoenix.swagger;
+package com.dispose.swagger;
import java.util.Collections;
@@ -7,7 +7,7 @@ import javax.annotation.Resource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
-import com.cmcc.hy.phoenix.config.MyConfig;
+import com.dispose.config.MyConfig;
import com.google.common.base.Predicates;
import springfox.documentation.builders.PathSelectors;
@@ -19,8 +19,8 @@ import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
- *
- *
+ *
+ *
* @author phoenix
* @date 2020年2月10日
*/
diff --git a/src/main/java/com/cmcc/hy/phoenix/task/MyTask.java b/src/main/java/com/dispose/task/MyTask.java
similarity index 86%
rename from src/main/java/com/cmcc/hy/phoenix/task/MyTask.java
rename to src/main/java/com/dispose/task/MyTask.java
index c96a0088..353ff52e 100644
--- a/src/main/java/com/cmcc/hy/phoenix/task/MyTask.java
+++ b/src/main/java/com/dispose/task/MyTask.java
@@ -1,25 +1,14 @@
-package com.cmcc.hy.phoenix.task;
-
-import java.util.List;
-import java.util.Map;
+package com.dispose.task;
import javax.annotation.Resource;
-import org.apache.commons.lang3.StringUtils;
+import com.dispose.common.DateUtil;
+import com.dispose.redis.RedisClient;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
-import com.alibaba.fastjson.JSON;
-import com.alibaba.fastjson.JSONArray;
-import com.alibaba.fastjson.JSONObject;
-import com.cmcc.hy.phoenix.common.DateUtil;
-import com.cmcc.hy.phoenix.common.GlobalVar;
-import com.cmcc.hy.phoenix.common.Http;
-import com.cmcc.hy.phoenix.common.Utils;
-import com.cmcc.hy.phoenix.config.MyConfig;
-import com.cmcc.hy.phoenix.redis.RedisClient;
-import com.google.common.collect.Maps;
+import com.dispose.config.MyConfig;
import lombok.extern.slf4j.Slf4j;
diff --git a/src/main/java/com/cmcc/hy/phoenix/thread/ThreadPoolConfig.java b/src/main/java/com/dispose/thread/ThreadPoolConfig.java
similarity index 95%
rename from src/main/java/com/cmcc/hy/phoenix/thread/ThreadPoolConfig.java
rename to src/main/java/com/dispose/thread/ThreadPoolConfig.java
index a941ec4d..373d82dd 100644
--- a/src/main/java/com/cmcc/hy/phoenix/thread/ThreadPoolConfig.java
+++ b/src/main/java/com/dispose/thread/ThreadPoolConfig.java
@@ -1,4 +1,4 @@
-package com.cmcc.hy.phoenix.thread;
+package com.dispose.thread;
import java.util.concurrent.Executor;
@@ -7,8 +7,8 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
/**
- *
- *
+ *
+ *
* @author phoenix
* @date 2020年2月5日
*/
diff --git a/src/main/java/com/dptech/umc/AbnormalFlowCleaningService.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java
similarity index 98%
rename from src/main/java/com/dptech/umc/AbnormalFlowCleaningService.java
rename to src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java
index 3330b938..eb0ebd38 100644
--- a/src/main/java/com/dptech/umc/AbnormalFlowCleaningService.java
+++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java
@@ -1,4 +1,4 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.net.MalformedURLException;
import java.net.URL;
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
/**
* This class was generated by Apache CXF 3.3.6
- * 2020-04-07T14:05:09.102+08:00
+ * 2020-04-15T11:47:54.615+08:00
* Generated source version: 3.3.6
*
*/
diff --git a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServiceHttpPortImpl.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServiceHttpPortImpl.java
new file mode 100644
index 00000000..1681e296
--- /dev/null
+++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServiceHttpPortImpl.java
@@ -0,0 +1,2638 @@
+
+/**
+ * Please modify this class to meet your needs
+ * This class is not complete
+ */
+
+package com.dptech.dispose;
+
+import java.util.logging.Logger;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+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.532+08:00
+ * Generated source version: 3.3.6
+ *
+ */
+
+@javax.jws.WebService(
+ serviceName = "AbnormalFlowCleaningService",
+ portName = "AbnormalFlowCleaningServiceHttpPort",
+ targetNamespace = "http://service.ntc.dp.com",
+ wsdlLocation = "file:/C:/Users/xajhu/AppData/Local/Temp/tempdir5796574219958168688.tmp/view-source_10.88.77.15_UMC_service_AbnormalFlowCleaningService_wsdl_1.wsdl",
+ endpointInterface = "com.dptech.dispose.AbnormalFlowCleaningServicePortType")
+
+public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowCleaningServicePortType {
+
+ private static final Logger LOG = Logger.getLogger(AbnormalFlowCleaningServiceHttpPortImpl.class.getName());
+
+ /* (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 action) {
+ LOG.info("Executing operation addDnsSipCustomV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(sipstart);
+ System.out.println(sipend);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDnsSipCustomV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalIcmpPayloadForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(attackType);
+ System.out.println(direction);
+ System.out.println(cleanDeviceIps);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDnsSecDomainCustomV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(domain);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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 action) {
+ LOG.info("Executing operation modDnsSipCustomV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(sipstart);
+ System.out.println(sipend);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDnsSecDomainGlobalV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllCompleteAnomalyDetectionStrategyFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllCompleteAnomalyDetectionStrategyFromUMC() {
+ LOG.info("Executing operation getAllCompleteAnomalyDetectionStrategyFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfAnomalyDetectionStrategy _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllDetectDevices()*
+ */
+ public java.lang.String getAllDetectDevices() {
+ LOG.info("Executing operation getAllDetectDevices");
+ try {
+ java.lang.String _return = "";
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDdosHttpGetSipCusProV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDdosDnsRetryProtectForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalTcpLengthForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDdosHttpGetSipGloProV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBlackAndWhiteListFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfBlackAndWhiteListDataForService getAllBlackAndWhiteListFromUMC() {
+ LOG.info("Executing operation getAllBlackAndWhiteListFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfBlackAndWhiteListDataForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalUdpPayloadForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBypassManualTractionStrategyFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfBypassManualTractionStrategyForService getAllBypassManualTractionStrategyFromUMC() {
+ LOG.info("Executing operation getAllBypassManualTractionStrategyFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfBypassManualTractionStrategyForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(templateName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDnsDomainGlobalV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(attackType);
+ System.out.println(direction);
+ System.out.println(cleanDeviceIps);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDdosCCuserGroupV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfFingerprintIcmpForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addFingerprintTcpForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(port1);
+ System.out.println(flag1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(port2);
+ System.out.println(flag2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(port3);
+ System.out.println(flag3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllProtectionStrategyTemplateFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfProtectionStrategyTemplateForService getAllProtectionStrategyTemplateFromUMC() {
+ LOG.info("Executing operation getAllProtectionStrategyTemplateFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfProtectionStrategyTemplateForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addFingerprintIcmpForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modifyDetectionObjectForUMC");
+ System.out.println(detectionName);
+ System.out.println(ipSegment);
+ System.out.println(ipType);
+ System.out.println(cleaningType);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(ipRangeIDs);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modBlackHoleAutoStrategyForUMC");
+ System.out.println(policyName);
+ System.out.println(detectMode);
+ System.out.println(blackHoleThreshold);
+ System.out.println(blackHoleTime);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modACProtectionForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(fixString);
+ System.out.println(startLocation);
+ System.out.println(endLocation);
+ System.out.println(regularExpression);
+ System.out.println(acSip);
+ System.out.println(acSmask);
+ System.out.println(acDip);
+ System.out.println(acDmask);
+ System.out.println(protocol);
+ System.out.println(srcPortMin);
+ System.out.println(srcPortMax);
+ System.out.println(dstPortMin);
+ System.out.println(dstPortMax);
+ System.out.println(threshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDdosHttpGetUriCusProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(uri);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(objName);
+ System.out.println(name);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalIcmpFragForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDnsDomainCustomV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(domain);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(policyName);
+ System.out.println(ipAddress);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBlackHoleManualStrategyFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfBlackHoleManualStrategyForService getAllBlackHoleManualStrategyFromUMC() {
+ LOG.info("Executing operation getAllBlackHoleManualStrategyFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfBlackHoleManualStrategyForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDnsSipGlobalV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addOneKeyDetection");
+ System.out.println(protectIp);
+ System.out.println(attackType);
+ System.out.println(direction);
+ System.out.println(bandwidth);
+ System.out.println(business);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDdosHttpGetUriGloProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addBlackHoleManualStrategyForUMC");
+ System.out.println(policyName);
+ System.out.println(detectName);
+ System.out.println(ipAddress);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalUdpLengthForUMC");
+ System.out.println(objName);
+ System.out.println(lengthenable);
+ System.out.println(minlength);
+ System.out.println(maxlength);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addOneKeyRestore");
+ System.out.println(protectIp);
+ System.out.println(attackType);
+ System.out.println(direction);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDnsDomainCustomV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(detectionObjName);
+ System.out.println(direction);
+ System.out.println(synFloodThreshold);
+ System.out.println(synFloodThresholdType);
+ System.out.println(udpFloodThreshold);
+ System.out.println(udpFloodThresholdType);
+ System.out.println(icmpFloodThreshold);
+ System.out.println(icmpFloodThresholdType);
+ System.out.println(synAckFloodThreshold);
+ System.out.println(synAckFloodThresholdType);
+ System.out.println(finFloodThreshold);
+ System.out.println(finFloodThresholdType);
+ System.out.println(ipFragmentFloodThreshold);
+ System.out.println(ipFragmentFloodThresholdType);
+ System.out.println(ackFloodThreshold);
+ System.out.println(ackFloodThresholdType);
+ System.out.println(httpFloodThreshold);
+ System.out.println(httpFloodThresholdType);
+ System.out.println(ccFloodThreshold);
+ System.out.println(ccFloodThresholdType);
+ System.out.println(dnsFloodThreshold);
+ System.out.println(dnsFloodThresholdType);
+ System.out.println(bandWidthThreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modFingerprintUdpForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(port1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(port2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(port3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalTcpFragForUMC");
+ System.out.println(objName);
+ System.out.println(tcpenable);
+ System.out.println(tcpthreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalTcpStateForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modFingerprintTcpForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(port1);
+ System.out.println(flag1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(port2);
+ System.out.println(flag2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(port3);
+ System.out.println(flag3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDnsDomainGlobalV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalIcmpFragForUMC");
+ System.out.println(objName);
+ System.out.println(icmpenable);
+ System.out.println(icmpthreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalTcpFlagForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(cleaningDevices);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addFingerprintUdpForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(port1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(port2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(port3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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 protectthreshold) {
+ LOG.info("Executing operation addDdosDnsRetryProtectForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(action);
+ System.out.println(alertthreshold);
+ System.out.println(protectthreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllBlackHoleAutoStrategyFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfBlackHoleAutoStrategyForService getAllBlackHoleAutoStrategyFromUMC() {
+ LOG.info("Executing operation getAllBlackHoleAutoStrategyFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfBlackHoleAutoStrategyForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDnsDomainGlobalV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.AnomalyDetectionStrategy _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(objName);
+ System.out.println(name);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDnsSecDomainGlobalV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDdosHttpGetSipCusProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(sip);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalAckPayloadForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalTcpFragForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(policyName);
+ System.out.println(cleaningDevices);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addFingerprintOtherForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDdosHttpGetSipGloProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllAnomalyDetectionStrategyFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllAnomalyDetectionStrategyFromUMC() {
+ LOG.info("Executing operation getAllAnomalyDetectionStrategyFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfAnomalyDetectionStrategy _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(abnormalIp);
+ System.out.println(attackType);
+ System.out.println(direction);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modBlackAndWhiteListProtection");
+ System.out.println(name);
+ System.out.println(sipType);
+ System.out.println(sipStartIp);
+ System.out.println(sipEndIp);
+ System.out.println(dipType);
+ System.out.println(dipStartIp);
+ System.out.println(dipEndIp);
+ System.out.println(timeType);
+ System.out.println(hour);
+ System.out.println(minute);
+ System.out.println(second);
+ System.out.println(protectionType);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDnsSipGlobalV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(strategyName);
+ System.out.println(detectionObjName);
+ System.out.println(bandWidthThreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDdosACProtectionForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(fixString);
+ System.out.println(startLocation);
+ System.out.println(endLocation);
+ System.out.println(regularExpression);
+ System.out.println(acSip);
+ System.out.println(acSmask);
+ System.out.println(acDip);
+ System.out.println(acDmask);
+ System.out.println(protocol);
+ System.out.println(srcPortMin);
+ System.out.println(srcPortMax);
+ System.out.println(dstPortMin);
+ System.out.println(dstPortMax);
+ System.out.println(threshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalUdpLengthForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDdosHttpGetUriGloProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDnsSecDomainCustomV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllProtectDevices()*
+ */
+ public java.lang.String getAllProtectDevices() {
+ LOG.info("Executing operation getAllProtectDevices");
+ try {
+ java.lang.String _return = "";
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(direction);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modBypassManualTractionStrategyForUMC");
+ System.out.println(policyName);
+ System.out.println(protectName);
+ System.out.println(ipRange);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalOtherFragForUMC");
+ System.out.println(objName);
+ System.out.println(otherenable);
+ System.out.println(otherthreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(protectName);
+ System.out.println(templateName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfFingerprintUdpForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalTcpLengthForUMC");
+ System.out.println(synenable);
+ System.out.println(objName);
+ System.out.println(synMin);
+ System.out.println(synMax);
+ System.out.println(synackenable);
+ System.out.println(synackMin);
+ System.out.println(synackMax);
+ System.out.println(finenable);
+ System.out.println(finMin);
+ System.out.println(finMax);
+ System.out.println(rstenable);
+ System.out.println(rstMin);
+ System.out.println(rstMax);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalIcmpPayloadForUMC");
+ System.out.println(objName);
+ System.out.println(payloadcontentenable);
+ System.out.println(payloadThreshold);
+ System.out.println(payloadOffsetMin);
+ System.out.println(payloadOffsetMax);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDdosHttpGetUriGloProV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllProtectionTargetWithStrategyAssociationRelationshipForUMC()*
+ */
+ public com.dptech.dispose.ArrayOfProtectionTargetWithStrategyForService getAllProtectionTargetWithStrategyAssociationRelationshipForUMC() {
+ LOG.info("Executing operation getAllProtectionTargetWithStrategyAssociationRelationshipForUMC");
+ try {
+ com.dptech.dispose.ArrayOfProtectionTargetWithStrategyForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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, int cleaningType) {
+ LOG.info("Executing operation addDetectionObjectForUMC");
+ System.out.println(detectionDevices);
+ System.out.println(cleaningDevices);
+ System.out.println(detectionName);
+ System.out.println(ipSegment);
+ System.out.println(ipType);
+ System.out.println(cleaningType);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modifyProtectionObjectForUMC");
+ System.out.println(protectionName);
+ System.out.println(ipSegment);
+ System.out.println(ipType);
+ System.out.println(cleaningType);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalUdpFragForUMC");
+ System.out.println(objName);
+ System.out.println(udpenable);
+ System.out.println(udpthreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalIcmpLengthForUMC");
+ System.out.println(objName);
+ System.out.println(lengthenable);
+ System.out.println(minlength);
+ System.out.println(maxlength);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalUdpFragForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfFingerprintTcpForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(objName);
+ System.out.println(tcpFlagenable);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addBlackHoleAutoStrategyForUMC");
+ System.out.println(policyName);
+ System.out.println(detectName);
+ System.out.println(detectMode);
+ System.out.println(blackHoleThreshold);
+ System.out.println(blackHoleTime);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ System.out.println(direction);
+ try {
+ com.dptech.dispose.AnomalyDetectionStrategy _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modFingerprintOtherForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDdosHttpGetUriCusProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(uri);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addBypassManualTractionStrategyForUMC");
+ System.out.println(policyName);
+ System.out.println(protectName);
+ System.out.println(ipRange);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllDetectionObjectFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfDetectionObjectDataForService getAllDetectionObjectFromUMC() {
+ LOG.info("Executing operation getAllDetectionObjectFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfDetectionObjectDataForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDdosHttpGetSipCusProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(sip);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDnsSecDomainGlobalV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalOtherFragForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modFingerprintIcmpForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(keytype1);
+ System.out.println(keyoffset1);
+ System.out.println(keylength1);
+ System.out.println(ip1);
+ System.out.println(mask1);
+ System.out.println(enable1);
+ System.out.println(custom1);
+ System.out.println(keytype2);
+ System.out.println(keyoffset2);
+ System.out.println(keylength2);
+ System.out.println(ip2);
+ System.out.println(mask2);
+ System.out.println(enable2);
+ System.out.println(custom2);
+ System.out.println(keytype3);
+ System.out.println(keyoffset3);
+ System.out.println(keylength3);
+ System.out.println(ip3);
+ System.out.println(mask3);
+ System.out.println(enable3);
+ System.out.println(custom3);
+ System.out.println(threshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDnsSipGlobalV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see com.dptech.dispose.AbnormalFlowCleaningServicePortType#getAllProtectionObjectFromUMC()*
+ */
+ public com.dptech.dispose.ArrayOfProtectionObjectDataForService getAllProtectionObjectFromUMC() {
+ LOG.info("Executing operation getAllProtectionObjectFromUMC");
+ try {
+ com.dptech.dispose.ArrayOfProtectionObjectDataForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalUdpPayloadForUMC");
+ System.out.println(objName);
+ System.out.println(payloademptyenable);
+ System.out.println(payloadcontentenable);
+ System.out.println(payloadThreshold);
+ System.out.println(payloadOffsetMin);
+ System.out.println(payloadOffsetMax);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDdosHttpGetUriCusProV4ForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfFingerprintOtherForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(abnormalIp);
+ System.out.println(attackType);
+ System.out.println(direction);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDdosHttpGetSipGloProV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalTcpStateForUMC");
+ System.out.println(objName);
+ System.out.println(statenable);
+ System.out.println(chosen);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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, int cleaningType) {
+ LOG.info("Executing operation addProtectionObjectForUMC");
+ System.out.println(detectionDevices);
+ System.out.println(cleaningDevices);
+ System.out.println(protectionName);
+ System.out.println(ipSegment);
+ System.out.println(ipType);
+ System.out.println(cleaningType);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation modDnsSecDomainCustomV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(domain);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalAckPayloadForUMC");
+ System.out.println(objName);
+ System.out.println(payloadcontentenable);
+ System.out.println(payloadThreshold);
+ System.out.println(payloadOffsetMin);
+ System.out.println(payloadOffsetMax);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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 protectthreshold) {
+ LOG.info("Executing operation modDdosDnsRetryProtectForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(action);
+ System.out.println(alertthreshold);
+ System.out.println(protectthreshold);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addDnsDomainCustomV4ForUMC");
+ System.out.println(objName);
+ System.out.println(name);
+ System.out.println(domain);
+ System.out.println(protectthreshold);
+ System.out.println(action);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation setDdosGlobalSynFloodForUMC");
+ System.out.println(enable);
+ System.out.println(objName);
+ System.out.println(threshold);
+ System.out.println(type);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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) {
+ LOG.info("Executing operation addBlackAndWhiteListProtection");
+ System.out.println(name);
+ System.out.println(sipType);
+ System.out.println(sipStartIp);
+ System.out.println(sipEndIp);
+ System.out.println(dipType);
+ System.out.println(dipStartIp);
+ System.out.println(dipEndIp);
+ System.out.println(timeType);
+ System.out.println(hour);
+ System.out.println(minute);
+ System.out.println(second);
+ System.out.println(protectionType);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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");
+ System.out.println(name);
+ System.out.println(objName);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalIcmpLengthForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.ArrayOfDdosACProtectionForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.NtcRequestResultInfo _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+ /* (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);
+ try {
+ com.dptech.dispose.DdosGlobalSynFloodForService _return = null;
+ return _return;
+ } catch (java.lang.Exception ex) {
+ ex.printStackTrace();
+ throw new RuntimeException(ex);
+ }
+ }
+
+}
diff --git a/src/main/java/com/dptech/umc/AbnormalFlowCleaningServicePortType.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType.java
similarity index 81%
rename from src/main/java/com/dptech/umc/AbnormalFlowCleaningServicePortType.java
rename to src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType.java
index 02df37ab..cc29c3de 100644
--- a/src/main/java/com/dptech/umc/AbnormalFlowCleaningServicePortType.java
+++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType.java
@@ -1,4 +1,4 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.jws.WebMethod;
import javax.jws.WebParam;
@@ -10,7 +10,7 @@ import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by Apache CXF 3.3.6
- * 2020-04-07T14:05:09.076+08:00
+ * 2020-04-15T11:47:54.588+08:00
* Generated source version: 3.3.6
*
*/
@@ -19,10 +19,10 @@ import javax.xml.ws.ResponseWrapper;
public interface AbnormalFlowCleaningServicePortType {
@WebMethod
- @RequestWrapper(localName = "addDnsSipCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSipCustomV4ForUMC")
- @ResponseWrapper(localName = "addDnsSipCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSipCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDnsSipCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDnsSipCustomV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -39,30 +39,30 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDnsSipCustomV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSipCustomV4FromUMC")
- @ResponseWrapper(localName = "getDnsSipCustomV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSipCustomV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDnsSipCustomV4ForService getDnsSipCustomV4FromUMC(
+ public com.dptech.dispose.ArrayOfDnsSipCustomV4ForService getDnsSipCustomV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalIcmpPayloadFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalIcmpPayloadFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalIcmpPayloadFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalIcmpPayloadFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalIcmpPayloadForService getDdosGlobalIcmpPayloadFromUMC(
+ public com.dptech.dispose.DdosGlobalIcmpPayloadForService getDdosGlobalIcmpPayloadFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "stopAbnormalTaskWithSpecificDeviceForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopAbnormalTaskWithSpecificDeviceForUMC")
- @ResponseWrapper(localName = "stopAbnormalTaskWithSpecificDeviceForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopAbnormalTaskWithSpecificDeviceForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo stopAbnormalTaskWithSpecificDeviceForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo stopAbnormalTaskWithSpecificDeviceForUMC(
@WebParam(name = "abnormalIp", targetNamespace = "http://service.ntc.dp.com")
java.lang.String abnormalIp,
@@ -75,10 +75,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDnsSecDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSecDomainCustomV4ForUMC")
- @ResponseWrapper(localName = "addDnsSecDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSecDomainCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDnsSecDomainCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDnsSecDomainCustomV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -93,10 +93,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDnsSipCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSipCustomV4ForUMC")
- @ResponseWrapper(localName = "modDnsSipCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSipCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDnsSipCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDnsSipCustomV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -113,10 +113,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDnsSecDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSecDomainGlobalV4ForUMC")
- @ResponseWrapper(localName = "addDnsSecDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSecDomainGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDnsSecDomainGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDnsSecDomainGlobalV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -129,91 +129,91 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAllCompleteAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllCompleteAnomalyDetectionStrategyFromUMC")
- @ResponseWrapper(localName = "getAllCompleteAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllCompleteAnomalyDetectionStrategyFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfAnomalyDetectionStrategy getAllCompleteAnomalyDetectionStrategyFromUMC()
+ public com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllCompleteAnomalyDetectionStrategyFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "getAllDetectDevices", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllDetectDevices")
- @ResponseWrapper(localName = "getAllDetectDevicesResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllDetectDevicesResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
public java.lang.String getAllDetectDevices()
;
@WebMethod
- @RequestWrapper(localName = "startBlackHoleStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartBlackHoleStrategyForUMC")
- @ResponseWrapper(localName = "startBlackHoleStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartBlackHoleStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo startBlackHoleStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo startBlackHoleStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName
);
@WebMethod
- @RequestWrapper(localName = "getDdosHttpGetSipCusProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetSipCusProV4FromUMC")
- @ResponseWrapper(localName = "getDdosHttpGetSipCusProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetSipCusProV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDdosHttpGetSipCusProV4ForService getDdosHttpGetSipCusProV4FromUMC(
+ public com.dptech.dispose.ArrayOfDdosHttpGetSipCusProV4ForService getDdosHttpGetSipCusProV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getDdosDnsRetryProtectFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosDnsRetryProtectFromUMC")
- @ResponseWrapper(localName = "getDdosDnsRetryProtectFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosDnsRetryProtectFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDdosDnsRetryProtectForService getDdosDnsRetryProtectFromUMC(
+ public com.dptech.dispose.ArrayOfDdosDnsRetryProtectForService getDdosDnsRetryProtectFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalTcpLengthFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpLengthFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalTcpLengthFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpLengthFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalTcpLengthForService getDdosGlobalTcpLengthFromUMC(
+ public com.dptech.dispose.DdosGlobalTcpLengthForService getDdosGlobalTcpLengthFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getDdosHttpGetSipGloProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetSipGloProV4FromUMC")
- @ResponseWrapper(localName = "getDdosHttpGetSipGloProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetSipGloProV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDdosHttpGetSipGloProV4ForService getDdosHttpGetSipGloProV4FromUMC(
+ public com.dptech.dispose.ArrayOfDdosHttpGetSipGloProV4ForService getDdosHttpGetSipGloProV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getAllBlackAndWhiteListFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBlackAndWhiteListFromUMC")
- @ResponseWrapper(localName = "getAllBlackAndWhiteListFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBlackAndWhiteListFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfBlackAndWhiteListDataForService getAllBlackAndWhiteListFromUMC()
+ public com.dptech.dispose.ArrayOfBlackAndWhiteListDataForService getAllBlackAndWhiteListFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalUdpPayloadFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalUdpPayloadFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalUdpPayloadFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalUdpPayloadFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalUdpPayloadForService getDdosGlobalUdpPayloadFromUMC(
+ public com.dptech.dispose.DdosGlobalUdpPayloadForService getDdosGlobalUdpPayloadFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "delDdosDnsRetryProtectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosDnsRetryProtectForUMC")
- @ResponseWrapper(localName = "delDdosDnsRetryProtectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosDnsRetryProtectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDdosDnsRetryProtectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDdosDnsRetryProtectForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -222,17 +222,17 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAllBypassManualTractionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBypassManualTractionStrategyFromUMC")
- @ResponseWrapper(localName = "getAllBypassManualTractionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBypassManualTractionStrategyFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfBypassManualTractionStrategyForService getAllBypassManualTractionStrategyFromUMC()
+ public com.dptech.dispose.ArrayOfBypassManualTractionStrategyForService getAllBypassManualTractionStrategyFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "disableProtectionStrategyTemplateForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DisableProtectionStrategyTemplateForUMC")
- @ResponseWrapper(localName = "disableProtectionStrategyTemplateForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DisableProtectionStrategyTemplateForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo disableProtectionStrategyTemplateForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo disableProtectionStrategyTemplateForUMC(
@WebParam(name = "protectName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String protectName,
@@ -241,10 +241,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delFingerprintIcmpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintIcmpForUMC")
- @ResponseWrapper(localName = "delFingerprintIcmpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintIcmpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delFingerprintIcmpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delFingerprintIcmpForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -253,10 +253,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDnsDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsDomainGlobalV4ForUMC")
- @ResponseWrapper(localName = "modDnsDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsDomainGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDnsDomainGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDnsDomainGlobalV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -269,10 +269,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "startAbnormalTaskWithSpecificDeviceForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartAbnormalTaskWithSpecificDeviceForUMC")
- @ResponseWrapper(localName = "startAbnormalTaskWithSpecificDeviceForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartAbnormalTaskWithSpecificDeviceForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo startAbnormalTaskWithSpecificDeviceForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo startAbnormalTaskWithSpecificDeviceForUMC(
@WebParam(name = "abnormalIp", targetNamespace = "http://service.ntc.dp.com")
java.lang.String abnormalIp,
@@ -285,30 +285,30 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosCCuserGroupV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosCCuserGroupV4FromUMC")
- @ResponseWrapper(localName = "getDdosCCuserGroupV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosCCuserGroupV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDdosCCuserGroupV4ForService getDdosCCuserGroupV4FromUMC(
+ public com.dptech.dispose.ArrayOfDdosCCuserGroupV4ForService getDdosCCuserGroupV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getFingerprintIcmpFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintIcmpFromUMC")
- @ResponseWrapper(localName = "getFingerprintIcmpFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintIcmpFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfFingerprintIcmpForService getFingerprintIcmpFromUMC(
+ public com.dptech.dispose.ArrayOfFingerprintIcmpForService getFingerprintIcmpFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "delFingerprintTcpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintTcpForUMC")
- @ResponseWrapper(localName = "delFingerprintTcpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintTcpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delFingerprintTcpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delFingerprintTcpForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -317,10 +317,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDnsSecDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSecDomainGlobalV4ForUMC")
- @ResponseWrapper(localName = "delDnsSecDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSecDomainGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDnsSecDomainGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDnsSecDomainGlobalV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -329,10 +329,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDdosHttpGetUriCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetUriCusProV4ForUMC")
- @ResponseWrapper(localName = "delDdosHttpGetUriCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetUriCusProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDdosHttpGetUriCusProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetUriCusProV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -341,10 +341,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addFingerprintTcpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintTcpForUMC")
- @ResponseWrapper(localName = "addFingerprintTcpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintTcpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addFingerprintTcpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addFingerprintTcpForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -411,17 +411,17 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAllProtectionStrategyTemplateFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectionStrategyTemplateFromUMC")
- @ResponseWrapper(localName = "getAllProtectionStrategyTemplateFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectionStrategyTemplateFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfProtectionStrategyTemplateForService getAllProtectionStrategyTemplateFromUMC()
+ public com.dptech.dispose.ArrayOfProtectionStrategyTemplateForService getAllProtectionStrategyTemplateFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "addFingerprintIcmpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintIcmpForUMC")
- @ResponseWrapper(localName = "addFingerprintIcmpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintIcmpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addFingerprintIcmpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addFingerprintIcmpForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -476,10 +476,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modifyDetectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModifyDetectionObjectForUMC")
- @ResponseWrapper(localName = "modifyDetectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModifyDetectionObjectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modifyDetectionObjectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modifyDetectionObjectForUMC(
@WebParam(name = "detectionName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String detectionName,
@@ -492,10 +492,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "deleteProtectionObjectIPRangeForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteProtectionObjectIPRangeForUMC")
- @ResponseWrapper(localName = "deleteProtectionObjectIPRangeForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteProtectionObjectIPRangeForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo deleteProtectionObjectIPRangeForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo deleteProtectionObjectIPRangeForUMC(
@WebParam(name = "protectionName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String protectionName,
@@ -504,10 +504,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modBlackHoleAutoStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBlackHoleAutoStrategyForUMC")
- @ResponseWrapper(localName = "modBlackHoleAutoStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBlackHoleAutoStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modBlackHoleAutoStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modBlackHoleAutoStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -520,10 +520,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modACProtectionForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModACProtectionForUMC")
- @ResponseWrapper(localName = "modACProtectionForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModACProtectionForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modACProtectionForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modACProtectionForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -560,10 +560,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDdosHttpGetUriCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetUriCusProV4ForUMC")
- @ResponseWrapper(localName = "modDdosHttpGetUriCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetUriCusProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDdosHttpGetUriCusProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetUriCusProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -578,10 +578,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDdosCCuserGroupV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosCCuserGroupV4ForUMC")
- @ResponseWrapper(localName = "modDdosCCuserGroupV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosCCuserGroupV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDdosCCuserGroupV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDdosCCuserGroupV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -590,20 +590,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalIcmpFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalIcmpFragFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalIcmpFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalIcmpFragFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalIcmpFragForService getDdosGlobalIcmpFragFromUMC(
+ public com.dptech.dispose.DdosGlobalIcmpFragForService getDdosGlobalIcmpFragFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "modDnsDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsDomainCustomV4ForUMC")
- @ResponseWrapper(localName = "modDnsDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsDomainCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDnsDomainCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDnsDomainCustomV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -618,10 +618,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modBlackHoleManualStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBlackHoleManualStrategyForUMC")
- @ResponseWrapper(localName = "modBlackHoleManualStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBlackHoleManualStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modBlackHoleManualStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modBlackHoleManualStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -630,17 +630,17 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAllBlackHoleManualStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBlackHoleManualStrategyFromUMC")
- @ResponseWrapper(localName = "getAllBlackHoleManualStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBlackHoleManualStrategyFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfBlackHoleManualStrategyForService getAllBlackHoleManualStrategyFromUMC()
+ public com.dptech.dispose.ArrayOfBlackHoleManualStrategyForService getAllBlackHoleManualStrategyFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "modDnsSipGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSipGlobalV4ForUMC")
- @ResponseWrapper(localName = "modDnsSipGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSipGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDnsSipGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDnsSipGlobalV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -653,10 +653,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addOneKeyDetection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddOneKeyDetection")
- @ResponseWrapper(localName = "addOneKeyDetectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddOneKeyDetectionResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addOneKeyDetection(
+ public com.dptech.dispose.NtcRequestResultInfo addOneKeyDetection(
@WebParam(name = "protectIp", targetNamespace = "http://service.ntc.dp.com")
java.lang.String protectIp,
@@ -671,10 +671,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDdosHttpGetUriGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetUriGloProV4ForUMC")
- @ResponseWrapper(localName = "addDdosHttpGetUriGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetUriGloProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDdosHttpGetUriGloProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetUriGloProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -687,10 +687,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addBlackHoleManualStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBlackHoleManualStrategyForUMC")
- @ResponseWrapper(localName = "addBlackHoleManualStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBlackHoleManualStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addBlackHoleManualStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addBlackHoleManualStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -701,10 +701,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalUdpLengthForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalUdpLengthForUMC")
- @ResponseWrapper(localName = "setDdosGlobalUdpLengthForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalUdpLengthForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalUdpLengthForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalUdpLengthForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -717,10 +717,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addOneKeyRestore", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddOneKeyRestore")
- @ResponseWrapper(localName = "addOneKeyRestoreResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddOneKeyRestoreResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addOneKeyRestore(
+ public com.dptech.dispose.NtcRequestResultInfo addOneKeyRestore(
@WebParam(name = "protectIp", targetNamespace = "http://service.ntc.dp.com")
java.lang.String protectIp,
@@ -731,20 +731,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod(operationName = "geDnsDomainCustomV4tFromUMC")
- @RequestWrapper(localName = "geDnsDomainCustomV4tFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GeDnsDomainCustomV4TFromUMC")
- @ResponseWrapper(localName = "geDnsDomainCustomV4tFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GeDnsDomainCustomV4TFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDnsDomainCustomV4ForService geDnsDomainCustomV4TFromUMC(
+ public com.dptech.dispose.ArrayOfDnsDomainCustomV4ForService geDnsDomainCustomV4TFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "addCompleteAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddCompleteAnomalyDetectionStrategyForUMC")
- @ResponseWrapper(localName = "addCompleteAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddCompleteAnomalyDetectionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addCompleteAnomalyDetectionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addCompleteAnomalyDetectionStrategyForUMC(
@WebParam(name = "strategyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String strategyName,
@@ -797,10 +797,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDnsSipCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSipCustomV4ForUMC")
- @ResponseWrapper(localName = "delDnsSipCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSipCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDnsSipCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDnsSipCustomV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -809,10 +809,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modFingerprintUdpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintUdpForUMC")
- @ResponseWrapper(localName = "modFingerprintUdpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintUdpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modFingerprintUdpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modFingerprintUdpForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -873,10 +873,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalTcpFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpFragForUMC")
- @ResponseWrapper(localName = "setDdosGlobalTcpFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpFragForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalTcpFragForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpFragForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -887,20 +887,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalTcpStateFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpStateFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalTcpStateFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpStateFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalTcpStateForService getDdosGlobalTcpStateFromUMC(
+ public com.dptech.dispose.DdosGlobalTcpStateForService getDdosGlobalTcpStateFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "modFingerprintTcpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintTcpForUMC")
- @ResponseWrapper(localName = "modFingerprintTcpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintTcpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modFingerprintTcpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modFingerprintTcpForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -967,10 +967,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDnsDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsDomainGlobalV4ForUMC")
- @ResponseWrapper(localName = "addDnsDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsDomainGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDnsDomainGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDnsDomainGlobalV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -983,20 +983,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delBlackAndWhiteListProtection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelBlackAndWhiteListProtection")
- @ResponseWrapper(localName = "delBlackAndWhiteListProtectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelBlackAndWhiteListProtectionResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delBlackAndWhiteListProtection(
+ public com.dptech.dispose.NtcRequestResultInfo delBlackAndWhiteListProtection(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalIcmpFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalIcmpFragForUMC")
- @ResponseWrapper(localName = "setDdosGlobalIcmpFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalIcmpFragForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalIcmpFragForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalIcmpFragForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1007,20 +1007,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalTcpFlagFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpFlagFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalTcpFlagFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpFlagFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalTcpFlagForService getDdosGlobalTcpFlagFromUMC(
+ public com.dptech.dispose.DdosGlobalTcpFlagForService getDdosGlobalTcpFlagFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "startBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartBypassManualTractionStrategyForUMC")
- @ResponseWrapper(localName = "startBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartBypassManualTractionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo startBypassManualTractionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo startBypassManualTractionStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -1029,10 +1029,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addFingerprintUdpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintUdpForUMC")
- @ResponseWrapper(localName = "addFingerprintUdpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintUdpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addFingerprintUdpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addFingerprintUdpForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1093,10 +1093,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDdosDnsRetryProtectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosDnsRetryProtectForUMC")
- @ResponseWrapper(localName = "addDdosDnsRetryProtectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosDnsRetryProtectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDdosDnsRetryProtectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDdosDnsRetryProtectForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1111,27 +1111,27 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAllBlackHoleAutoStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBlackHoleAutoStrategyFromUMC")
- @ResponseWrapper(localName = "getAllBlackHoleAutoStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllBlackHoleAutoStrategyFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfBlackHoleAutoStrategyForService getAllBlackHoleAutoStrategyFromUMC()
+ public com.dptech.dispose.ArrayOfBlackHoleAutoStrategyForService getAllBlackHoleAutoStrategyFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "getDnsDomainGlobalV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsDomainGlobalV4FromUMC")
- @ResponseWrapper(localName = "getDnsDomainGlobalV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsDomainGlobalV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDnsDomainGlobalV4ForService getDnsDomainGlobalV4FromUMC(
+ public com.dptech.dispose.ArrayOfDnsDomainGlobalV4ForService getDnsDomainGlobalV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "delDdosHttpGetSipGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetSipGloProV4ForUMC")
- @ResponseWrapper(localName = "delDdosHttpGetSipGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetSipGloProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDdosHttpGetSipGloProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetSipGloProV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1140,20 +1140,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAnomalyDetectionStrategyFromUMC")
- @ResponseWrapper(localName = "getAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAnomalyDetectionStrategyFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.AnomalyDetectionStrategy getAnomalyDetectionStrategyFromUMC(
+ public com.dptech.dispose.AnomalyDetectionStrategy getAnomalyDetectionStrategyFromUMC(
@WebParam(name = "strategyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String strategyName
);
@WebMethod
- @RequestWrapper(localName = "addDdosCCuserGroupV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosCCuserGroupV4ForUMC")
- @ResponseWrapper(localName = "addDdosCCuserGroupV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosCCuserGroupV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDdosCCuserGroupV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDdosCCuserGroupV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1162,10 +1162,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDnsSecDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSecDomainGlobalV4ForUMC")
- @ResponseWrapper(localName = "modDnsSecDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSecDomainGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDnsSecDomainGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDnsSecDomainGlobalV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1178,10 +1178,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDdosHttpGetSipCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetSipCusProV4ForUMC")
- @ResponseWrapper(localName = "addDdosHttpGetSipCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetSipCusProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDdosHttpGetSipCusProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetSipCusProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1196,30 +1196,30 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalAckPayloadFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalAckPayloadFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalAckPayloadFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalAckPayloadFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalAckPayloadForService getDdosGlobalAckPayloadFromUMC(
+ public com.dptech.dispose.DdosGlobalAckPayloadForService getDdosGlobalAckPayloadFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalTcpFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpFragFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalTcpFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalTcpFragFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalTcpFragForService getDdosGlobalTcpFragFromUMC(
+ public com.dptech.dispose.DdosGlobalTcpFragForService getDdosGlobalTcpFragFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "stopBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopBypassManualTractionStrategyForUMC")
- @ResponseWrapper(localName = "stopBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopBypassManualTractionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo stopBypassManualTractionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo stopBypassManualTractionStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -1228,10 +1228,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addFingerprintOtherForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintOtherForUMC")
- @ResponseWrapper(localName = "addFingerprintOtherForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddFingerprintOtherForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addFingerprintOtherForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addFingerprintOtherForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1286,10 +1286,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDdosHttpGetSipGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetSipGloProV4ForUMC")
- @ResponseWrapper(localName = "modDdosHttpGetSipGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetSipGloProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDdosHttpGetSipGloProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetSipGloProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1302,17 +1302,17 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAllAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllAnomalyDetectionStrategyFromUMC")
- @ResponseWrapper(localName = "getAllAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllAnomalyDetectionStrategyFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfAnomalyDetectionStrategy getAllAnomalyDetectionStrategyFromUMC()
+ public com.dptech.dispose.ArrayOfAnomalyDetectionStrategy getAllAnomalyDetectionStrategyFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "startAbnormalTaskForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartAbnormalTaskForUMC")
- @ResponseWrapper(localName = "startAbnormalTaskForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StartAbnormalTaskForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo startAbnormalTaskForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo startAbnormalTaskForUMC(
@WebParam(name = "abnormalIp", targetNamespace = "http://service.ntc.dp.com")
java.lang.String abnormalIp,
@@ -1323,10 +1323,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modBlackAndWhiteListProtection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBlackAndWhiteListProtection")
- @ResponseWrapper(localName = "modBlackAndWhiteListProtectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBlackAndWhiteListProtectionResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modBlackAndWhiteListProtection(
+ public com.dptech.dispose.NtcRequestResultInfo modBlackAndWhiteListProtection(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1355,10 +1355,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDnsSipGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSipGlobalV4ForUMC")
- @ResponseWrapper(localName = "addDnsSipGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsSipGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDnsSipGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDnsSipGlobalV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1371,10 +1371,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddAnomalyDetectionStrategyForUMC")
- @ResponseWrapper(localName = "addAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddAnomalyDetectionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addAnomalyDetectionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addAnomalyDetectionStrategyForUMC(
@WebParam(name = "strategyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String strategyName,
@@ -1385,10 +1385,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDdosACProtectionForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosACProtectionForUMC")
- @ResponseWrapper(localName = "addDdosACProtectionForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosACProtectionForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDdosACProtectionForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDdosACProtectionForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1425,10 +1425,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDdosHttpGetSipCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetSipCusProV4ForUMC")
- @ResponseWrapper(localName = "delDdosHttpGetSipCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetSipCusProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDdosHttpGetSipCusProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetSipCusProV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1437,20 +1437,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalUdpLengthFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalUdpLengthFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalUdpLengthFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalUdpLengthFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalUdpLengthForService getDdosGlobalUdpLengthFromUMC(
+ public com.dptech.dispose.DdosGlobalUdpLengthForService getDdosGlobalUdpLengthFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "delDdosACProtectionForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosACProtectionForUMC")
- @ResponseWrapper(localName = "delDdosACProtectionForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosACProtectionForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDdosACProtectionForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDdosACProtectionForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1459,10 +1459,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDdosHttpGetUriGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetUriGloProV4ForUMC")
- @ResponseWrapper(localName = "modDdosHttpGetUriGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetUriGloProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDdosHttpGetUriGloProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetUriGloProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1475,10 +1475,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDdosHttpGetUriGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetUriGloProV4ForUMC")
- @ResponseWrapper(localName = "delDdosHttpGetUriGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosHttpGetUriGloProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDdosHttpGetUriGloProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDdosHttpGetUriGloProV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1487,10 +1487,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDnsDomainGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsDomainGlobalV4ForUMC")
- @ResponseWrapper(localName = "delDnsDomainGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsDomainGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDnsDomainGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDnsDomainGlobalV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1499,10 +1499,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDnsDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsDomainCustomV4ForUMC")
- @ResponseWrapper(localName = "delDnsDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsDomainCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDnsDomainCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDnsDomainCustomV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1511,37 +1511,37 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDnsSecDomainCustomV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSecDomainCustomV4FromUMC")
- @ResponseWrapper(localName = "getDnsSecDomainCustomV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSecDomainCustomV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDnsSecDomainCustomV4ForService getDnsSecDomainCustomV4FromUMC(
+ public com.dptech.dispose.ArrayOfDnsSecDomainCustomV4ForService getDnsSecDomainCustomV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getAllProtectDevices", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectDevices")
- @ResponseWrapper(localName = "getAllProtectDevicesResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectDevicesResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
public java.lang.String getAllProtectDevices()
;
@WebMethod
- @RequestWrapper(localName = "delAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelAnomalyDetectionStrategyForUMC")
- @ResponseWrapper(localName = "delAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelAnomalyDetectionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delAnomalyDetectionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delAnomalyDetectionStrategyForUMC(
@WebParam(name = "strategyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String strategyName
);
@WebMethod
- @RequestWrapper(localName = "deleteCompleteAnomalyDetectionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteCompleteAnomalyDetectionStrategyForUMC")
- @ResponseWrapper(localName = "deleteCompleteAnomalyDetectionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteCompleteAnomalyDetectionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo deleteCompleteAnomalyDetectionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo deleteCompleteAnomalyDetectionStrategyForUMC(
@WebParam(name = "strategyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String strategyName,
@@ -1550,10 +1550,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBypassManualTractionStrategyForUMC")
- @ResponseWrapper(localName = "modBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModBypassManualTractionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modBypassManualTractionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modBypassManualTractionStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -1564,10 +1564,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDnsSecDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSecDomainCustomV4ForUMC")
- @ResponseWrapper(localName = "delDnsSecDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSecDomainCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDnsSecDomainCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDnsSecDomainCustomV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1576,10 +1576,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalOtherFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalOtherFragForUMC")
- @ResponseWrapper(localName = "setDdosGlobalOtherFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalOtherFragForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalOtherFragForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalOtherFragForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1590,10 +1590,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "linkProtectionStrategyTemplateForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.LinkProtectionStrategyTemplateForUMC")
- @ResponseWrapper(localName = "linkProtectionStrategyTemplateForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.LinkProtectionStrategyTemplateForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo linkProtectionStrategyTemplateForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo linkProtectionStrategyTemplateForUMC(
@WebParam(name = "protectName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String protectName,
@@ -1602,20 +1602,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getFingerprintUdpFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintUdpFromUMC")
- @ResponseWrapper(localName = "getFingerprintUdpFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintUdpFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfFingerprintUdpForService getFingerprintUdpFromUMC(
+ public com.dptech.dispose.ArrayOfFingerprintUdpForService getFingerprintUdpFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalTcpLengthForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpLengthForUMC")
- @ResponseWrapper(localName = "setDdosGlobalTcpLengthForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpLengthForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalTcpLengthForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpLengthForUMC(
@WebParam(name = "synenable", targetNamespace = "http://service.ntc.dp.com")
java.lang.String synenable,
@@ -1646,10 +1646,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalIcmpPayloadForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalIcmpPayloadForUMC")
- @ResponseWrapper(localName = "setDdosGlobalIcmpPayloadForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalIcmpPayloadForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalIcmpPayloadForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalIcmpPayloadForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1664,20 +1664,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "deleteProtectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteProtectionObjectForUMC")
- @ResponseWrapper(localName = "deleteProtectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteProtectionObjectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo deleteProtectionObjectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo deleteProtectionObjectForUMC(
@WebParam(name = "protectionName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String protectionName
);
@WebMethod
- @RequestWrapper(localName = "delFingerprintOtherForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintOtherForUMC")
- @ResponseWrapper(localName = "delFingerprintOtherForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintOtherForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delFingerprintOtherForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delFingerprintOtherForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1686,27 +1686,27 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosHttpGetUriGloProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetUriGloProV4FromUMC")
- @ResponseWrapper(localName = "getDdosHttpGetUriGloProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetUriGloProV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDdosHttpGetUriGloProV4ForService getDdosHttpGetUriGloProV4FromUMC(
+ public com.dptech.dispose.ArrayOfDdosHttpGetUriGloProV4ForService getDdosHttpGetUriGloProV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getAllProtectionTargetWithStrategyAssociationRelationshipForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC")
- @ResponseWrapper(localName = "getAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfProtectionTargetWithStrategyForService getAllProtectionTargetWithStrategyAssociationRelationshipForUMC()
+ public com.dptech.dispose.ArrayOfProtectionTargetWithStrategyForService getAllProtectionTargetWithStrategyAssociationRelationshipForUMC()
;
@WebMethod
- @RequestWrapper(localName = "addDetectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDetectionObjectForUMC")
- @ResponseWrapper(localName = "addDetectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDetectionObjectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDetectionObjectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDetectionObjectForUMC(
@WebParam(name = "detectionDevices", targetNamespace = "http://service.ntc.dp.com")
java.lang.String detectionDevices,
@@ -1723,10 +1723,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modifyProtectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModifyProtectionObjectForUMC")
- @ResponseWrapper(localName = "modifyProtectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModifyProtectionObjectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modifyProtectionObjectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modifyProtectionObjectForUMC(
@WebParam(name = "protectionName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String protectionName,
@@ -1739,10 +1739,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalUdpFragForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalUdpFragForUMC")
- @ResponseWrapper(localName = "setDdosGlobalUdpFragForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalUdpFragForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalUdpFragForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalUdpFragForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1753,10 +1753,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalIcmpLengthForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalIcmpLengthForUMC")
- @ResponseWrapper(localName = "setDdosGlobalIcmpLengthForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalIcmpLengthForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalIcmpLengthForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalIcmpLengthForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1769,30 +1769,30 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalUdpFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalUdpFragFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalUdpFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalUdpFragFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalUdpFragForService getDdosGlobalUdpFragFromUMC(
+ public com.dptech.dispose.DdosGlobalUdpFragForService getDdosGlobalUdpFragFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getFingerprintTcpFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintTcpFromUMC")
- @ResponseWrapper(localName = "getFingerprintTcpFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintTcpFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfFingerprintTcpForService getFingerprintTcpFromUMC(
+ public com.dptech.dispose.ArrayOfFingerprintTcpForService getFingerprintTcpFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalTcpFlagForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpFlagForUMC")
- @ResponseWrapper(localName = "setDdosGlobalTcpFlagForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpFlagForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalTcpFlagForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpFlagForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1801,10 +1801,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addBlackHoleAutoStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBlackHoleAutoStrategyForUMC")
- @ResponseWrapper(localName = "addBlackHoleAutoStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBlackHoleAutoStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addBlackHoleAutoStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addBlackHoleAutoStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -1819,10 +1819,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getCompleteAnomalyDetectionStrategyFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetCompleteAnomalyDetectionStrategyFromUMC")
- @ResponseWrapper(localName = "getCompleteAnomalyDetectionStrategyFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetCompleteAnomalyDetectionStrategyFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.AnomalyDetectionStrategy getCompleteAnomalyDetectionStrategyFromUMC(
+ public com.dptech.dispose.AnomalyDetectionStrategy getCompleteAnomalyDetectionStrategyFromUMC(
@WebParam(name = "strategyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String strategyName,
@@ -1831,10 +1831,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modFingerprintOtherForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintOtherForUMC")
- @ResponseWrapper(localName = "modFingerprintOtherForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintOtherForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modFingerprintOtherForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modFingerprintOtherForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1889,10 +1889,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDdosHttpGetUriCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetUriCusProV4ForUMC")
- @ResponseWrapper(localName = "addDdosHttpGetUriCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetUriCusProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDdosHttpGetUriCusProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetUriCusProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1907,10 +1907,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBypassManualTractionStrategyForUMC")
- @ResponseWrapper(localName = "addBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBypassManualTractionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addBypassManualTractionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addBypassManualTractionStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName,
@@ -1921,17 +1921,17 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getAllDetectionObjectFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllDetectionObjectFromUMC")
- @ResponseWrapper(localName = "getAllDetectionObjectFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllDetectionObjectFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDetectionObjectDataForService getAllDetectionObjectFromUMC()
+ public com.dptech.dispose.ArrayOfDetectionObjectDataForService getAllDetectionObjectFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "modDdosHttpGetSipCusProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetSipCusProV4ForUMC")
- @ResponseWrapper(localName = "modDdosHttpGetSipCusProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosHttpGetSipCusProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDdosHttpGetSipCusProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDdosHttpGetSipCusProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -1946,20 +1946,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDnsSecDomainGlobalV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSecDomainGlobalV4FromUMC")
- @ResponseWrapper(localName = "getDnsSecDomainGlobalV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSecDomainGlobalV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDnsSecDomainGlobalV4ForService getDnsSecDomainGlobalV4FromUMC(
+ public com.dptech.dispose.ArrayOfDnsSecDomainGlobalV4ForService getDnsSecDomainGlobalV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "delDdosCCuserGroupV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosCCuserGroupV4ForUMC")
- @ResponseWrapper(localName = "delDdosCCuserGroupV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDdosCCuserGroupV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDdosCCuserGroupV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDdosCCuserGroupV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -1968,20 +1968,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalOtherFragFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalOtherFragFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalOtherFragFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalOtherFragFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalOtherFragForService getDdosGlobalOtherFragFromUMC(
+ public com.dptech.dispose.DdosGlobalOtherFragForService getDdosGlobalOtherFragFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "modFingerprintIcmpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintIcmpForUMC")
- @ResponseWrapper(localName = "modFingerprintIcmpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModFingerprintIcmpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modFingerprintIcmpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modFingerprintIcmpForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2036,37 +2036,37 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "stopBlackHoleStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopBlackHoleStrategyForUMC")
- @ResponseWrapper(localName = "stopBlackHoleStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopBlackHoleStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo stopBlackHoleStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo stopBlackHoleStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName
);
@WebMethod
- @RequestWrapper(localName = "getDnsSipGlobalV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSipGlobalV4FromUMC")
- @ResponseWrapper(localName = "getDnsSipGlobalV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDnsSipGlobalV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDnsSipGlobalV4ForService getDnsSipGlobalV4FromUMC(
+ public com.dptech.dispose.ArrayOfDnsSipGlobalV4ForService getDnsSipGlobalV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getAllProtectionObjectFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectionObjectFromUMC")
- @ResponseWrapper(localName = "getAllProtectionObjectFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetAllProtectionObjectFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfProtectionObjectDataForService getAllProtectionObjectFromUMC()
+ public com.dptech.dispose.ArrayOfProtectionObjectDataForService getAllProtectionObjectFromUMC()
;
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalUdpPayloadForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalUdpPayloadForUMC")
- @ResponseWrapper(localName = "setDdosGlobalUdpPayloadForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalUdpPayloadForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalUdpPayloadForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalUdpPayloadForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2083,40 +2083,40 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosHttpGetUriCusProV4FromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetUriCusProV4FromUMC")
- @ResponseWrapper(localName = "getDdosHttpGetUriCusProV4FromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosHttpGetUriCusProV4FromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDdosHttpGetUriCusProV4ForService getDdosHttpGetUriCusProV4FromUMC(
+ public com.dptech.dispose.ArrayOfDdosHttpGetUriCusProV4ForService getDdosHttpGetUriCusProV4FromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "delBypassManualTractionStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelBypassManualTractionStrategyForUMC")
- @ResponseWrapper(localName = "delBypassManualTractionStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelBypassManualTractionStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delBypassManualTractionStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delBypassManualTractionStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName
);
@WebMethod
- @RequestWrapper(localName = "getFingerprintOtherFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintOtherFromUMC")
- @ResponseWrapper(localName = "getFingerprintOtherFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetFingerprintOtherFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfFingerprintOtherForService getFingerprintOtherFromUMC(
+ public com.dptech.dispose.ArrayOfFingerprintOtherForService getFingerprintOtherFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "stopAbnormalTaskForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopAbnormalTaskForUMC")
- @ResponseWrapper(localName = "stopAbnormalTaskForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.StopAbnormalTaskForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo stopAbnormalTaskForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo stopAbnormalTaskForUMC(
@WebParam(name = "abnormalIp", targetNamespace = "http://service.ntc.dp.com")
java.lang.String abnormalIp,
@@ -2127,10 +2127,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDdosHttpGetSipGloProV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetSipGloProV4ForUMC")
- @ResponseWrapper(localName = "addDdosHttpGetSipGloProV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDdosHttpGetSipGloProV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDdosHttpGetSipGloProV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDdosHttpGetSipGloProV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2143,10 +2143,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalTcpStateForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpStateForUMC")
- @ResponseWrapper(localName = "setDdosGlobalTcpStateForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalTcpStateForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalTcpStateForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalTcpStateForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2157,10 +2157,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addProtectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddProtectionObjectForUMC")
- @ResponseWrapper(localName = "addProtectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddProtectionObjectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addProtectionObjectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addProtectionObjectForUMC(
@WebParam(name = "detectionDevices", targetNamespace = "http://service.ntc.dp.com")
java.lang.String detectionDevices,
@@ -2177,10 +2177,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDnsSecDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSecDomainCustomV4ForUMC")
- @ResponseWrapper(localName = "modDnsSecDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDnsSecDomainCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDnsSecDomainCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDnsSecDomainCustomV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2195,20 +2195,20 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "deleteDetectionObjectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteDetectionObjectForUMC")
- @ResponseWrapper(localName = "deleteDetectionObjectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DeleteDetectionObjectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo deleteDetectionObjectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo deleteDetectionObjectForUMC(
@WebParam(name = "detectionName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String detectionName
);
@WebMethod
- @RequestWrapper(localName = "delFingerprintUdpForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintUdpForUMC")
- @ResponseWrapper(localName = "delFingerprintUdpForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelFingerprintUdpForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delFingerprintUdpForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delFingerprintUdpForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -2217,10 +2217,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalAckPayloadForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalAckPayloadForUMC")
- @ResponseWrapper(localName = "setDdosGlobalAckPayloadForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalAckPayloadForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalAckPayloadForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalAckPayloadForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2235,10 +2235,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "modDdosDnsRetryProtectForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosDnsRetryProtectForUMC")
- @ResponseWrapper(localName = "modDdosDnsRetryProtectForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.ModDdosDnsRetryProtectForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo modDdosDnsRetryProtectForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo modDdosDnsRetryProtectForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2253,10 +2253,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addDnsDomainCustomV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsDomainCustomV4ForUMC")
- @ResponseWrapper(localName = "addDnsDomainCustomV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddDnsDomainCustomV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addDnsDomainCustomV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo addDnsDomainCustomV4ForUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName,
@@ -2271,10 +2271,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "setDdosGlobalSynFloodForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalSynFloodForUMC")
- @ResponseWrapper(localName = "setDdosGlobalSynFloodForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.SetDdosGlobalSynFloodForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo setDdosGlobalSynFloodForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo setDdosGlobalSynFloodForUMC(
@WebParam(name = "enable", targetNamespace = "http://service.ntc.dp.com")
java.lang.String enable,
@@ -2287,10 +2287,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "addBlackAndWhiteListProtection", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBlackAndWhiteListProtection")
- @ResponseWrapper(localName = "addBlackAndWhiteListProtectionResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.AddBlackAndWhiteListProtectionResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo addBlackAndWhiteListProtection(
+ public com.dptech.dispose.NtcRequestResultInfo addBlackAndWhiteListProtection(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -2319,10 +2319,10 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "delDnsSipGlobalV4ForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSipGlobalV4ForUMC")
- @ResponseWrapper(localName = "delDnsSipGlobalV4ForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelDnsSipGlobalV4ForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delDnsSipGlobalV4ForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delDnsSipGlobalV4ForUMC(
@WebParam(name = "name", targetNamespace = "http://service.ntc.dp.com")
java.lang.String name,
@@ -2331,40 +2331,40 @@ public interface AbnormalFlowCleaningServicePortType {
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalIcmpLengthFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalIcmpLengthFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalIcmpLengthFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalIcmpLengthFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalIcmpLengthForService getDdosGlobalIcmpLengthFromUMC(
+ public com.dptech.dispose.DdosGlobalIcmpLengthForService getDdosGlobalIcmpLengthFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "getDdosACProtectionFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosACProtectionFromUMC")
- @ResponseWrapper(localName = "getDdosACProtectionFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosACProtectionFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.ArrayOfDdosACProtectionForService getDdosACProtectionFromUMC(
+ public com.dptech.dispose.ArrayOfDdosACProtectionForService getDdosACProtectionFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
);
@WebMethod
- @RequestWrapper(localName = "delBlackHoleStrategyForUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelBlackHoleStrategyForUMC")
- @ResponseWrapper(localName = "delBlackHoleStrategyForUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.DelBlackHoleStrategyForUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.NtcRequestResultInfo delBlackHoleStrategyForUMC(
+ public com.dptech.dispose.NtcRequestResultInfo delBlackHoleStrategyForUMC(
@WebParam(name = "policyName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String policyName
);
@WebMethod
- @RequestWrapper(localName = "getDdosGlobalSynFloodFromUMC", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalSynFloodFromUMC")
- @ResponseWrapper(localName = "getDdosGlobalSynFloodFromUMCResponse", targetNamespace = "http://service.ntc.dp.com", className = "com.dptech.umc.GetDdosGlobalSynFloodFromUMCResponse")
+ @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")
@WebResult(name = "out", targetNamespace = "http://service.ntc.dp.com")
- public com.dptech.umc.DdosGlobalSynFloodForService getDdosGlobalSynFloodFromUMC(
+ public com.dptech.dispose.DdosGlobalSynFloodForService getDdosGlobalSynFloodFromUMC(
@WebParam(name = "objName", targetNamespace = "http://service.ntc.dp.com")
java.lang.String objName
diff --git a/src/main/java/com/dptech/umc/AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServiceHttpPort_Client.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServiceHttpPort_Client.java
similarity index 63%
rename from src/main/java/com/dptech/umc/AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServiceHttpPort_Client.java
rename to src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServiceHttpPort_Client.java
index 8af3f1c2..522bfd6c 100644
--- a/src/main/java/com/dptech/umc/AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServiceHttpPort_Client.java
+++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServiceHttpPort_Client.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
/**
* Please modify this class to meet your needs
@@ -20,7 +20,7 @@ import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by Apache CXF 3.3.6
- * 2020-04-07T14:05:08.934+08:00
+ * 2020-04-15T11:47:54.455+08:00
* Generated source version: 3.3.6
*
*/
@@ -57,7 +57,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDnsSipCustomV4ForUMC_sipend = "";
java.lang.String _addDnsSipCustomV4ForUMC_protectthreshold = "";
java.lang.String _addDnsSipCustomV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDnsSipCustomV4ForUMC__return = port.addDnsSipCustomV4ForUMC(_addDnsSipCustomV4ForUMC_objName, _addDnsSipCustomV4ForUMC_name, _addDnsSipCustomV4ForUMC_sipstart, _addDnsSipCustomV4ForUMC_sipend, _addDnsSipCustomV4ForUMC_protectthreshold, _addDnsSipCustomV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDnsSipCustomV4ForUMC__return = port.addDnsSipCustomV4ForUMC(_addDnsSipCustomV4ForUMC_objName, _addDnsSipCustomV4ForUMC_name, _addDnsSipCustomV4ForUMC_sipstart, _addDnsSipCustomV4ForUMC_sipend, _addDnsSipCustomV4ForUMC_protectthreshold, _addDnsSipCustomV4ForUMC_action);
System.out.println("addDnsSipCustomV4ForUMC.result=" + _addDnsSipCustomV4ForUMC__return);
@@ -65,7 +65,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDnsSipCustomV4FromUMC...");
java.lang.String _getDnsSipCustomV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDnsSipCustomV4ForService _getDnsSipCustomV4FromUMC__return = port.getDnsSipCustomV4FromUMC(_getDnsSipCustomV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDnsSipCustomV4ForService _getDnsSipCustomV4FromUMC__return = port.getDnsSipCustomV4FromUMC(_getDnsSipCustomV4FromUMC_objName);
System.out.println("getDnsSipCustomV4FromUMC.result=" + _getDnsSipCustomV4FromUMC__return);
@@ -73,7 +73,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalIcmpPayloadFromUMC...");
java.lang.String _getDdosGlobalIcmpPayloadFromUMC_objName = "";
- com.dptech.umc.DdosGlobalIcmpPayloadForService _getDdosGlobalIcmpPayloadFromUMC__return = port.getDdosGlobalIcmpPayloadFromUMC(_getDdosGlobalIcmpPayloadFromUMC_objName);
+ com.dptech.dispose.DdosGlobalIcmpPayloadForService _getDdosGlobalIcmpPayloadFromUMC__return = port.getDdosGlobalIcmpPayloadFromUMC(_getDdosGlobalIcmpPayloadFromUMC_objName);
System.out.println("getDdosGlobalIcmpPayloadFromUMC.result=" + _getDdosGlobalIcmpPayloadFromUMC__return);
@@ -84,7 +84,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
int _stopAbnormalTaskWithSpecificDeviceForUMC_attackType = 0;
int _stopAbnormalTaskWithSpecificDeviceForUMC_direction = 0;
java.lang.String _stopAbnormalTaskWithSpecificDeviceForUMC_cleanDeviceIps = "";
- com.dptech.umc.NtcRequestResultInfo _stopAbnormalTaskWithSpecificDeviceForUMC__return = port.stopAbnormalTaskWithSpecificDeviceForUMC(_stopAbnormalTaskWithSpecificDeviceForUMC_abnormalIp, _stopAbnormalTaskWithSpecificDeviceForUMC_attackType, _stopAbnormalTaskWithSpecificDeviceForUMC_direction, _stopAbnormalTaskWithSpecificDeviceForUMC_cleanDeviceIps);
+ com.dptech.dispose.NtcRequestResultInfo _stopAbnormalTaskWithSpecificDeviceForUMC__return = port.stopAbnormalTaskWithSpecificDeviceForUMC(_stopAbnormalTaskWithSpecificDeviceForUMC_abnormalIp, _stopAbnormalTaskWithSpecificDeviceForUMC_attackType, _stopAbnormalTaskWithSpecificDeviceForUMC_direction, _stopAbnormalTaskWithSpecificDeviceForUMC_cleanDeviceIps);
System.out.println("stopAbnormalTaskWithSpecificDeviceForUMC.result=" + _stopAbnormalTaskWithSpecificDeviceForUMC__return);
@@ -96,7 +96,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDnsSecDomainCustomV4ForUMC_domain = "";
java.lang.String _addDnsSecDomainCustomV4ForUMC_protectthreshold = "";
java.lang.String _addDnsSecDomainCustomV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDnsSecDomainCustomV4ForUMC__return = port.addDnsSecDomainCustomV4ForUMC(_addDnsSecDomainCustomV4ForUMC_objName, _addDnsSecDomainCustomV4ForUMC_name, _addDnsSecDomainCustomV4ForUMC_domain, _addDnsSecDomainCustomV4ForUMC_protectthreshold, _addDnsSecDomainCustomV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDnsSecDomainCustomV4ForUMC__return = port.addDnsSecDomainCustomV4ForUMC(_addDnsSecDomainCustomV4ForUMC_objName, _addDnsSecDomainCustomV4ForUMC_name, _addDnsSecDomainCustomV4ForUMC_domain, _addDnsSecDomainCustomV4ForUMC_protectthreshold, _addDnsSecDomainCustomV4ForUMC_action);
System.out.println("addDnsSecDomainCustomV4ForUMC.result=" + _addDnsSecDomainCustomV4ForUMC__return);
@@ -109,7 +109,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDnsSipCustomV4ForUMC_sipend = "";
java.lang.String _modDnsSipCustomV4ForUMC_protectthreshold = "";
java.lang.String _modDnsSipCustomV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDnsSipCustomV4ForUMC__return = port.modDnsSipCustomV4ForUMC(_modDnsSipCustomV4ForUMC_objName, _modDnsSipCustomV4ForUMC_name, _modDnsSipCustomV4ForUMC_sipstart, _modDnsSipCustomV4ForUMC_sipend, _modDnsSipCustomV4ForUMC_protectthreshold, _modDnsSipCustomV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDnsSipCustomV4ForUMC__return = port.modDnsSipCustomV4ForUMC(_modDnsSipCustomV4ForUMC_objName, _modDnsSipCustomV4ForUMC_name, _modDnsSipCustomV4ForUMC_sipstart, _modDnsSipCustomV4ForUMC_sipend, _modDnsSipCustomV4ForUMC_protectthreshold, _modDnsSipCustomV4ForUMC_action);
System.out.println("modDnsSipCustomV4ForUMC.result=" + _modDnsSipCustomV4ForUMC__return);
@@ -120,14 +120,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDnsSecDomainGlobalV4ForUMC_name = "";
java.lang.String _addDnsSecDomainGlobalV4ForUMC_protectthreshold = "";
java.lang.String _addDnsSecDomainGlobalV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDnsSecDomainGlobalV4ForUMC__return = port.addDnsSecDomainGlobalV4ForUMC(_addDnsSecDomainGlobalV4ForUMC_objName, _addDnsSecDomainGlobalV4ForUMC_name, _addDnsSecDomainGlobalV4ForUMC_protectthreshold, _addDnsSecDomainGlobalV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDnsSecDomainGlobalV4ForUMC__return = port.addDnsSecDomainGlobalV4ForUMC(_addDnsSecDomainGlobalV4ForUMC_objName, _addDnsSecDomainGlobalV4ForUMC_name, _addDnsSecDomainGlobalV4ForUMC_protectthreshold, _addDnsSecDomainGlobalV4ForUMC_action);
System.out.println("addDnsSecDomainGlobalV4ForUMC.result=" + _addDnsSecDomainGlobalV4ForUMC__return);
}
{
System.out.println("Invoking getAllCompleteAnomalyDetectionStrategyFromUMC...");
- com.dptech.umc.ArrayOfAnomalyDetectionStrategy _getAllCompleteAnomalyDetectionStrategyFromUMC__return = port.getAllCompleteAnomalyDetectionStrategyFromUMC();
+ com.dptech.dispose.ArrayOfAnomalyDetectionStrategy _getAllCompleteAnomalyDetectionStrategyFromUMC__return = port.getAllCompleteAnomalyDetectionStrategyFromUMC();
System.out.println("getAllCompleteAnomalyDetectionStrategyFromUMC.result=" + _getAllCompleteAnomalyDetectionStrategyFromUMC__return);
@@ -142,7 +142,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking startBlackHoleStrategyForUMC...");
java.lang.String _startBlackHoleStrategyForUMC_policyName = "";
- com.dptech.umc.NtcRequestResultInfo _startBlackHoleStrategyForUMC__return = port.startBlackHoleStrategyForUMC(_startBlackHoleStrategyForUMC_policyName);
+ com.dptech.dispose.NtcRequestResultInfo _startBlackHoleStrategyForUMC__return = port.startBlackHoleStrategyForUMC(_startBlackHoleStrategyForUMC_policyName);
System.out.println("startBlackHoleStrategyForUMC.result=" + _startBlackHoleStrategyForUMC__return);
@@ -150,7 +150,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosHttpGetSipCusProV4FromUMC...");
java.lang.String _getDdosHttpGetSipCusProV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDdosHttpGetSipCusProV4ForService _getDdosHttpGetSipCusProV4FromUMC__return = port.getDdosHttpGetSipCusProV4FromUMC(_getDdosHttpGetSipCusProV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDdosHttpGetSipCusProV4ForService _getDdosHttpGetSipCusProV4FromUMC__return = port.getDdosHttpGetSipCusProV4FromUMC(_getDdosHttpGetSipCusProV4FromUMC_objName);
System.out.println("getDdosHttpGetSipCusProV4FromUMC.result=" + _getDdosHttpGetSipCusProV4FromUMC__return);
@@ -158,7 +158,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosDnsRetryProtectFromUMC...");
java.lang.String _getDdosDnsRetryProtectFromUMC_objName = "";
- com.dptech.umc.ArrayOfDdosDnsRetryProtectForService _getDdosDnsRetryProtectFromUMC__return = port.getDdosDnsRetryProtectFromUMC(_getDdosDnsRetryProtectFromUMC_objName);
+ com.dptech.dispose.ArrayOfDdosDnsRetryProtectForService _getDdosDnsRetryProtectFromUMC__return = port.getDdosDnsRetryProtectFromUMC(_getDdosDnsRetryProtectFromUMC_objName);
System.out.println("getDdosDnsRetryProtectFromUMC.result=" + _getDdosDnsRetryProtectFromUMC__return);
@@ -166,7 +166,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalTcpLengthFromUMC...");
java.lang.String _getDdosGlobalTcpLengthFromUMC_objName = "";
- com.dptech.umc.DdosGlobalTcpLengthForService _getDdosGlobalTcpLengthFromUMC__return = port.getDdosGlobalTcpLengthFromUMC(_getDdosGlobalTcpLengthFromUMC_objName);
+ com.dptech.dispose.DdosGlobalTcpLengthForService _getDdosGlobalTcpLengthFromUMC__return = port.getDdosGlobalTcpLengthFromUMC(_getDdosGlobalTcpLengthFromUMC_objName);
System.out.println("getDdosGlobalTcpLengthFromUMC.result=" + _getDdosGlobalTcpLengthFromUMC__return);
@@ -174,14 +174,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosHttpGetSipGloProV4FromUMC...");
java.lang.String _getDdosHttpGetSipGloProV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDdosHttpGetSipGloProV4ForService _getDdosHttpGetSipGloProV4FromUMC__return = port.getDdosHttpGetSipGloProV4FromUMC(_getDdosHttpGetSipGloProV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDdosHttpGetSipGloProV4ForService _getDdosHttpGetSipGloProV4FromUMC__return = port.getDdosHttpGetSipGloProV4FromUMC(_getDdosHttpGetSipGloProV4FromUMC_objName);
System.out.println("getDdosHttpGetSipGloProV4FromUMC.result=" + _getDdosHttpGetSipGloProV4FromUMC__return);
}
{
System.out.println("Invoking getAllBlackAndWhiteListFromUMC...");
- com.dptech.umc.ArrayOfBlackAndWhiteListDataForService _getAllBlackAndWhiteListFromUMC__return = port.getAllBlackAndWhiteListFromUMC();
+ com.dptech.dispose.ArrayOfBlackAndWhiteListDataForService _getAllBlackAndWhiteListFromUMC__return = port.getAllBlackAndWhiteListFromUMC();
System.out.println("getAllBlackAndWhiteListFromUMC.result=" + _getAllBlackAndWhiteListFromUMC__return);
@@ -189,7 +189,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalUdpPayloadFromUMC...");
java.lang.String _getDdosGlobalUdpPayloadFromUMC_objName = "";
- com.dptech.umc.DdosGlobalUdpPayloadForService _getDdosGlobalUdpPayloadFromUMC__return = port.getDdosGlobalUdpPayloadFromUMC(_getDdosGlobalUdpPayloadFromUMC_objName);
+ com.dptech.dispose.DdosGlobalUdpPayloadForService _getDdosGlobalUdpPayloadFromUMC__return = port.getDdosGlobalUdpPayloadFromUMC(_getDdosGlobalUdpPayloadFromUMC_objName);
System.out.println("getDdosGlobalUdpPayloadFromUMC.result=" + _getDdosGlobalUdpPayloadFromUMC__return);
@@ -198,14 +198,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDdosDnsRetryProtectForUMC...");
java.lang.String _delDdosDnsRetryProtectForUMC_name = "";
java.lang.String _delDdosDnsRetryProtectForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDdosDnsRetryProtectForUMC__return = port.delDdosDnsRetryProtectForUMC(_delDdosDnsRetryProtectForUMC_name, _delDdosDnsRetryProtectForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDdosDnsRetryProtectForUMC__return = port.delDdosDnsRetryProtectForUMC(_delDdosDnsRetryProtectForUMC_name, _delDdosDnsRetryProtectForUMC_objName);
System.out.println("delDdosDnsRetryProtectForUMC.result=" + _delDdosDnsRetryProtectForUMC__return);
}
{
System.out.println("Invoking getAllBypassManualTractionStrategyFromUMC...");
- com.dptech.umc.ArrayOfBypassManualTractionStrategyForService _getAllBypassManualTractionStrategyFromUMC__return = port.getAllBypassManualTractionStrategyFromUMC();
+ com.dptech.dispose.ArrayOfBypassManualTractionStrategyForService _getAllBypassManualTractionStrategyFromUMC__return = port.getAllBypassManualTractionStrategyFromUMC();
System.out.println("getAllBypassManualTractionStrategyFromUMC.result=" + _getAllBypassManualTractionStrategyFromUMC__return);
@@ -214,7 +214,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking disableProtectionStrategyTemplateForUMC...");
java.lang.String _disableProtectionStrategyTemplateForUMC_protectName = "";
java.lang.String _disableProtectionStrategyTemplateForUMC_templateName = "";
- com.dptech.umc.NtcRequestResultInfo _disableProtectionStrategyTemplateForUMC__return = port.disableProtectionStrategyTemplateForUMC(_disableProtectionStrategyTemplateForUMC_protectName, _disableProtectionStrategyTemplateForUMC_templateName);
+ com.dptech.dispose.NtcRequestResultInfo _disableProtectionStrategyTemplateForUMC__return = port.disableProtectionStrategyTemplateForUMC(_disableProtectionStrategyTemplateForUMC_protectName, _disableProtectionStrategyTemplateForUMC_templateName);
System.out.println("disableProtectionStrategyTemplateForUMC.result=" + _disableProtectionStrategyTemplateForUMC__return);
@@ -223,7 +223,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delFingerprintIcmpForUMC...");
java.lang.String _delFingerprintIcmpForUMC_name = "";
java.lang.String _delFingerprintIcmpForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delFingerprintIcmpForUMC__return = port.delFingerprintIcmpForUMC(_delFingerprintIcmpForUMC_name, _delFingerprintIcmpForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delFingerprintIcmpForUMC__return = port.delFingerprintIcmpForUMC(_delFingerprintIcmpForUMC_name, _delFingerprintIcmpForUMC_objName);
System.out.println("delFingerprintIcmpForUMC.result=" + _delFingerprintIcmpForUMC__return);
@@ -234,7 +234,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDnsDomainGlobalV4ForUMC_name = "";
java.lang.String _modDnsDomainGlobalV4ForUMC_protectthreshold = "";
java.lang.String _modDnsDomainGlobalV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDnsDomainGlobalV4ForUMC__return = port.modDnsDomainGlobalV4ForUMC(_modDnsDomainGlobalV4ForUMC_objName, _modDnsDomainGlobalV4ForUMC_name, _modDnsDomainGlobalV4ForUMC_protectthreshold, _modDnsDomainGlobalV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDnsDomainGlobalV4ForUMC__return = port.modDnsDomainGlobalV4ForUMC(_modDnsDomainGlobalV4ForUMC_objName, _modDnsDomainGlobalV4ForUMC_name, _modDnsDomainGlobalV4ForUMC_protectthreshold, _modDnsDomainGlobalV4ForUMC_action);
System.out.println("modDnsDomainGlobalV4ForUMC.result=" + _modDnsDomainGlobalV4ForUMC__return);
@@ -245,7 +245,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
int _startAbnormalTaskWithSpecificDeviceForUMC_attackType = 0;
int _startAbnormalTaskWithSpecificDeviceForUMC_direction = 0;
java.lang.String _startAbnormalTaskWithSpecificDeviceForUMC_cleanDeviceIps = "";
- com.dptech.umc.NtcRequestResultInfo _startAbnormalTaskWithSpecificDeviceForUMC__return = port.startAbnormalTaskWithSpecificDeviceForUMC(_startAbnormalTaskWithSpecificDeviceForUMC_abnormalIp, _startAbnormalTaskWithSpecificDeviceForUMC_attackType, _startAbnormalTaskWithSpecificDeviceForUMC_direction, _startAbnormalTaskWithSpecificDeviceForUMC_cleanDeviceIps);
+ com.dptech.dispose.NtcRequestResultInfo _startAbnormalTaskWithSpecificDeviceForUMC__return = port.startAbnormalTaskWithSpecificDeviceForUMC(_startAbnormalTaskWithSpecificDeviceForUMC_abnormalIp, _startAbnormalTaskWithSpecificDeviceForUMC_attackType, _startAbnormalTaskWithSpecificDeviceForUMC_direction, _startAbnormalTaskWithSpecificDeviceForUMC_cleanDeviceIps);
System.out.println("startAbnormalTaskWithSpecificDeviceForUMC.result=" + _startAbnormalTaskWithSpecificDeviceForUMC__return);
@@ -253,7 +253,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosCCuserGroupV4FromUMC...");
java.lang.String _getDdosCCuserGroupV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDdosCCuserGroupV4ForService _getDdosCCuserGroupV4FromUMC__return = port.getDdosCCuserGroupV4FromUMC(_getDdosCCuserGroupV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDdosCCuserGroupV4ForService _getDdosCCuserGroupV4FromUMC__return = port.getDdosCCuserGroupV4FromUMC(_getDdosCCuserGroupV4FromUMC_objName);
System.out.println("getDdosCCuserGroupV4FromUMC.result=" + _getDdosCCuserGroupV4FromUMC__return);
@@ -261,7 +261,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getFingerprintIcmpFromUMC...");
java.lang.String _getFingerprintIcmpFromUMC_objName = "";
- com.dptech.umc.ArrayOfFingerprintIcmpForService _getFingerprintIcmpFromUMC__return = port.getFingerprintIcmpFromUMC(_getFingerprintIcmpFromUMC_objName);
+ com.dptech.dispose.ArrayOfFingerprintIcmpForService _getFingerprintIcmpFromUMC__return = port.getFingerprintIcmpFromUMC(_getFingerprintIcmpFromUMC_objName);
System.out.println("getFingerprintIcmpFromUMC.result=" + _getFingerprintIcmpFromUMC__return);
@@ -270,7 +270,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delFingerprintTcpForUMC...");
java.lang.String _delFingerprintTcpForUMC_name = "";
java.lang.String _delFingerprintTcpForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delFingerprintTcpForUMC__return = port.delFingerprintTcpForUMC(_delFingerprintTcpForUMC_name, _delFingerprintTcpForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delFingerprintTcpForUMC__return = port.delFingerprintTcpForUMC(_delFingerprintTcpForUMC_name, _delFingerprintTcpForUMC_objName);
System.out.println("delFingerprintTcpForUMC.result=" + _delFingerprintTcpForUMC__return);
@@ -279,7 +279,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDnsSecDomainGlobalV4ForUMC...");
java.lang.String _delDnsSecDomainGlobalV4ForUMC_name = "";
java.lang.String _delDnsSecDomainGlobalV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDnsSecDomainGlobalV4ForUMC__return = port.delDnsSecDomainGlobalV4ForUMC(_delDnsSecDomainGlobalV4ForUMC_name, _delDnsSecDomainGlobalV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDnsSecDomainGlobalV4ForUMC__return = port.delDnsSecDomainGlobalV4ForUMC(_delDnsSecDomainGlobalV4ForUMC_name, _delDnsSecDomainGlobalV4ForUMC_objName);
System.out.println("delDnsSecDomainGlobalV4ForUMC.result=" + _delDnsSecDomainGlobalV4ForUMC__return);
@@ -288,7 +288,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDdosHttpGetUriCusProV4ForUMC...");
java.lang.String _delDdosHttpGetUriCusProV4ForUMC_name = "";
java.lang.String _delDdosHttpGetUriCusProV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDdosHttpGetUriCusProV4ForUMC__return = port.delDdosHttpGetUriCusProV4ForUMC(_delDdosHttpGetUriCusProV4ForUMC_name, _delDdosHttpGetUriCusProV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDdosHttpGetUriCusProV4ForUMC__return = port.delDdosHttpGetUriCusProV4ForUMC(_delDdosHttpGetUriCusProV4ForUMC_name, _delDdosHttpGetUriCusProV4ForUMC_objName);
System.out.println("delDdosHttpGetUriCusProV4ForUMC.result=" + _delDdosHttpGetUriCusProV4ForUMC__return);
@@ -326,14 +326,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addFingerprintTcpForUMC_custom3 = "";
java.lang.String _addFingerprintTcpForUMC_threshold = "";
java.lang.String _addFingerprintTcpForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addFingerprintTcpForUMC__return = port.addFingerprintTcpForUMC(_addFingerprintTcpForUMC_objName, _addFingerprintTcpForUMC_name, _addFingerprintTcpForUMC_keytype1, _addFingerprintTcpForUMC_keyoffset1, _addFingerprintTcpForUMC_keylength1, _addFingerprintTcpForUMC_port1, _addFingerprintTcpForUMC_flag1, _addFingerprintTcpForUMC_ip1, _addFingerprintTcpForUMC_mask1, _addFingerprintTcpForUMC_enable1, _addFingerprintTcpForUMC_custom1, _addFingerprintTcpForUMC_keytype2, _addFingerprintTcpForUMC_keyoffset2, _addFingerprintTcpForUMC_keylength2, _addFingerprintTcpForUMC_port2, _addFingerprintTcpForUMC_flag2, _addFingerprintTcpForUMC_ip2, _addFingerprintTcpForUMC_mask2, _addFingerprintTcpForUMC_enable2, _addFingerprintTcpForUMC_custom2, _addFingerprintTcpForUMC_keytype3, _addFingerprintTcpForUMC_keyoffset3, _addFingerprintTcpForUMC_keylength3, _addFingerprintTcpForUMC_port3, _addFingerprintTcpForUMC_flag3, _addFingerprintTcpForUMC_ip3, _addFingerprintTcpForUMC_mask3, _addFingerprintTcpForUMC_enable3, _addFingerprintTcpForUMC_custom3, _addFingerprintTcpForUMC_threshold, _addFingerprintTcpForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addFingerprintTcpForUMC__return = port.addFingerprintTcpForUMC(_addFingerprintTcpForUMC_objName, _addFingerprintTcpForUMC_name, _addFingerprintTcpForUMC_keytype1, _addFingerprintTcpForUMC_keyoffset1, _addFingerprintTcpForUMC_keylength1, _addFingerprintTcpForUMC_port1, _addFingerprintTcpForUMC_flag1, _addFingerprintTcpForUMC_ip1, _addFingerprintTcpForUMC_mask1, _addFingerprintTcpForUMC_enable1, _addFingerprintTcpForUMC_custom1, _addFingerprintTcpForUMC_keytype2, _addFingerprintTcpForUMC_keyoffset2, _addFingerprintTcpForUMC_keylength2, _addFingerprintTcpForUMC_port2, _addFingerprintTcpForUMC_flag2, _addFingerprintTcpForUMC_ip2, _addFingerprintTcpForUMC_mask2, _addFingerprintTcpForUMC_enable2, _addFingerprintTcpForUMC_custom2, _addFingerprintTcpForUMC_keytype3, _addFingerprintTcpForUMC_keyoffset3, _addFingerprintTcpForUMC_keylength3, _addFingerprintTcpForUMC_port3, _addFingerprintTcpForUMC_flag3, _addFingerprintTcpForUMC_ip3, _addFingerprintTcpForUMC_mask3, _addFingerprintTcpForUMC_enable3, _addFingerprintTcpForUMC_custom3, _addFingerprintTcpForUMC_threshold, _addFingerprintTcpForUMC_action);
System.out.println("addFingerprintTcpForUMC.result=" + _addFingerprintTcpForUMC__return);
}
{
System.out.println("Invoking getAllProtectionStrategyTemplateFromUMC...");
- com.dptech.umc.ArrayOfProtectionStrategyTemplateForService _getAllProtectionStrategyTemplateFromUMC__return = port.getAllProtectionStrategyTemplateFromUMC();
+ com.dptech.dispose.ArrayOfProtectionStrategyTemplateForService _getAllProtectionStrategyTemplateFromUMC__return = port.getAllProtectionStrategyTemplateFromUMC();
System.out.println("getAllProtectionStrategyTemplateFromUMC.result=" + _getAllProtectionStrategyTemplateFromUMC__return);
@@ -365,7 +365,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addFingerprintIcmpForUMC_custom3 = "";
java.lang.String _addFingerprintIcmpForUMC_threshold = "";
java.lang.String _addFingerprintIcmpForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addFingerprintIcmpForUMC__return = port.addFingerprintIcmpForUMC(_addFingerprintIcmpForUMC_objName, _addFingerprintIcmpForUMC_name, _addFingerprintIcmpForUMC_keytype1, _addFingerprintIcmpForUMC_keyoffset1, _addFingerprintIcmpForUMC_keylength1, _addFingerprintIcmpForUMC_ip1, _addFingerprintIcmpForUMC_mask1, _addFingerprintIcmpForUMC_enable1, _addFingerprintIcmpForUMC_custom1, _addFingerprintIcmpForUMC_keytype2, _addFingerprintIcmpForUMC_keyoffset2, _addFingerprintIcmpForUMC_keylength2, _addFingerprintIcmpForUMC_ip2, _addFingerprintIcmpForUMC_mask2, _addFingerprintIcmpForUMC_enable2, _addFingerprintIcmpForUMC_custom2, _addFingerprintIcmpForUMC_keytype3, _addFingerprintIcmpForUMC_keyoffset3, _addFingerprintIcmpForUMC_keylength3, _addFingerprintIcmpForUMC_ip3, _addFingerprintIcmpForUMC_mask3, _addFingerprintIcmpForUMC_enable3, _addFingerprintIcmpForUMC_custom3, _addFingerprintIcmpForUMC_threshold, _addFingerprintIcmpForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addFingerprintIcmpForUMC__return = port.addFingerprintIcmpForUMC(_addFingerprintIcmpForUMC_objName, _addFingerprintIcmpForUMC_name, _addFingerprintIcmpForUMC_keytype1, _addFingerprintIcmpForUMC_keyoffset1, _addFingerprintIcmpForUMC_keylength1, _addFingerprintIcmpForUMC_ip1, _addFingerprintIcmpForUMC_mask1, _addFingerprintIcmpForUMC_enable1, _addFingerprintIcmpForUMC_custom1, _addFingerprintIcmpForUMC_keytype2, _addFingerprintIcmpForUMC_keyoffset2, _addFingerprintIcmpForUMC_keylength2, _addFingerprintIcmpForUMC_ip2, _addFingerprintIcmpForUMC_mask2, _addFingerprintIcmpForUMC_enable2, _addFingerprintIcmpForUMC_custom2, _addFingerprintIcmpForUMC_keytype3, _addFingerprintIcmpForUMC_keyoffset3, _addFingerprintIcmpForUMC_keylength3, _addFingerprintIcmpForUMC_ip3, _addFingerprintIcmpForUMC_mask3, _addFingerprintIcmpForUMC_enable3, _addFingerprintIcmpForUMC_custom3, _addFingerprintIcmpForUMC_threshold, _addFingerprintIcmpForUMC_action);
System.out.println("addFingerprintIcmpForUMC.result=" + _addFingerprintIcmpForUMC__return);
@@ -376,7 +376,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modifyDetectionObjectForUMC_ipSegment = "";
int _modifyDetectionObjectForUMC_ipType = 0;
int _modifyDetectionObjectForUMC_cleaningType = 0;
- com.dptech.umc.NtcRequestResultInfo _modifyDetectionObjectForUMC__return = port.modifyDetectionObjectForUMC(_modifyDetectionObjectForUMC_detectionName, _modifyDetectionObjectForUMC_ipSegment, _modifyDetectionObjectForUMC_ipType, _modifyDetectionObjectForUMC_cleaningType);
+ com.dptech.dispose.NtcRequestResultInfo _modifyDetectionObjectForUMC__return = port.modifyDetectionObjectForUMC(_modifyDetectionObjectForUMC_detectionName, _modifyDetectionObjectForUMC_ipSegment, _modifyDetectionObjectForUMC_ipType, _modifyDetectionObjectForUMC_cleaningType);
System.out.println("modifyDetectionObjectForUMC.result=" + _modifyDetectionObjectForUMC__return);
@@ -385,7 +385,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking deleteProtectionObjectIPRangeForUMC...");
java.lang.String _deleteProtectionObjectIPRangeForUMC_protectionName = "";
java.lang.String _deleteProtectionObjectIPRangeForUMC_ipRangeIDs = "";
- com.dptech.umc.NtcRequestResultInfo _deleteProtectionObjectIPRangeForUMC__return = port.deleteProtectionObjectIPRangeForUMC(_deleteProtectionObjectIPRangeForUMC_protectionName, _deleteProtectionObjectIPRangeForUMC_ipRangeIDs);
+ com.dptech.dispose.NtcRequestResultInfo _deleteProtectionObjectIPRangeForUMC__return = port.deleteProtectionObjectIPRangeForUMC(_deleteProtectionObjectIPRangeForUMC_protectionName, _deleteProtectionObjectIPRangeForUMC_ipRangeIDs);
System.out.println("deleteProtectionObjectIPRangeForUMC.result=" + _deleteProtectionObjectIPRangeForUMC__return);
@@ -396,7 +396,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
int _modBlackHoleAutoStrategyForUMC_detectMode = 0;
int _modBlackHoleAutoStrategyForUMC_blackHoleThreshold = 0;
int _modBlackHoleAutoStrategyForUMC_blackHoleTime = 0;
- com.dptech.umc.NtcRequestResultInfo _modBlackHoleAutoStrategyForUMC__return = port.modBlackHoleAutoStrategyForUMC(_modBlackHoleAutoStrategyForUMC_policyName, _modBlackHoleAutoStrategyForUMC_detectMode, _modBlackHoleAutoStrategyForUMC_blackHoleThreshold, _modBlackHoleAutoStrategyForUMC_blackHoleTime);
+ com.dptech.dispose.NtcRequestResultInfo _modBlackHoleAutoStrategyForUMC__return = port.modBlackHoleAutoStrategyForUMC(_modBlackHoleAutoStrategyForUMC_policyName, _modBlackHoleAutoStrategyForUMC_detectMode, _modBlackHoleAutoStrategyForUMC_blackHoleThreshold, _modBlackHoleAutoStrategyForUMC_blackHoleTime);
System.out.println("modBlackHoleAutoStrategyForUMC.result=" + _modBlackHoleAutoStrategyForUMC__return);
@@ -419,7 +419,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modACProtectionForUMC_dstPortMin = "";
java.lang.String _modACProtectionForUMC_dstPortMax = "";
java.lang.String _modACProtectionForUMC_threshold = "";
- com.dptech.umc.NtcRequestResultInfo _modACProtectionForUMC__return = port.modACProtectionForUMC(_modACProtectionForUMC_objName, _modACProtectionForUMC_name, _modACProtectionForUMC_fixString, _modACProtectionForUMC_startLocation, _modACProtectionForUMC_endLocation, _modACProtectionForUMC_regularExpression, _modACProtectionForUMC_acSip, _modACProtectionForUMC_acSmask, _modACProtectionForUMC_acDip, _modACProtectionForUMC_acDmask, _modACProtectionForUMC_protocol, _modACProtectionForUMC_srcPortMin, _modACProtectionForUMC_srcPortMax, _modACProtectionForUMC_dstPortMin, _modACProtectionForUMC_dstPortMax, _modACProtectionForUMC_threshold);
+ com.dptech.dispose.NtcRequestResultInfo _modACProtectionForUMC__return = port.modACProtectionForUMC(_modACProtectionForUMC_objName, _modACProtectionForUMC_name, _modACProtectionForUMC_fixString, _modACProtectionForUMC_startLocation, _modACProtectionForUMC_endLocation, _modACProtectionForUMC_regularExpression, _modACProtectionForUMC_acSip, _modACProtectionForUMC_acSmask, _modACProtectionForUMC_acDip, _modACProtectionForUMC_acDmask, _modACProtectionForUMC_protocol, _modACProtectionForUMC_srcPortMin, _modACProtectionForUMC_srcPortMax, _modACProtectionForUMC_dstPortMin, _modACProtectionForUMC_dstPortMax, _modACProtectionForUMC_threshold);
System.out.println("modACProtectionForUMC.result=" + _modACProtectionForUMC__return);
@@ -431,7 +431,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDdosHttpGetUriCusProV4ForUMC_uri = "";
java.lang.String _modDdosHttpGetUriCusProV4ForUMC_protectthreshold = "";
java.lang.String _modDdosHttpGetUriCusProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDdosHttpGetUriCusProV4ForUMC__return = port.modDdosHttpGetUriCusProV4ForUMC(_modDdosHttpGetUriCusProV4ForUMC_objName, _modDdosHttpGetUriCusProV4ForUMC_name, _modDdosHttpGetUriCusProV4ForUMC_uri, _modDdosHttpGetUriCusProV4ForUMC_protectthreshold, _modDdosHttpGetUriCusProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDdosHttpGetUriCusProV4ForUMC__return = port.modDdosHttpGetUriCusProV4ForUMC(_modDdosHttpGetUriCusProV4ForUMC_objName, _modDdosHttpGetUriCusProV4ForUMC_name, _modDdosHttpGetUriCusProV4ForUMC_uri, _modDdosHttpGetUriCusProV4ForUMC_protectthreshold, _modDdosHttpGetUriCusProV4ForUMC_action);
System.out.println("modDdosHttpGetUriCusProV4ForUMC.result=" + _modDdosHttpGetUriCusProV4ForUMC__return);
@@ -440,7 +440,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking modDdosCCuserGroupV4ForUMC...");
java.lang.String _modDdosCCuserGroupV4ForUMC_objName = "";
java.lang.String _modDdosCCuserGroupV4ForUMC_name = "";
- com.dptech.umc.NtcRequestResultInfo _modDdosCCuserGroupV4ForUMC__return = port.modDdosCCuserGroupV4ForUMC(_modDdosCCuserGroupV4ForUMC_objName, _modDdosCCuserGroupV4ForUMC_name);
+ com.dptech.dispose.NtcRequestResultInfo _modDdosCCuserGroupV4ForUMC__return = port.modDdosCCuserGroupV4ForUMC(_modDdosCCuserGroupV4ForUMC_objName, _modDdosCCuserGroupV4ForUMC_name);
System.out.println("modDdosCCuserGroupV4ForUMC.result=" + _modDdosCCuserGroupV4ForUMC__return);
@@ -448,7 +448,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalIcmpFragFromUMC...");
java.lang.String _getDdosGlobalIcmpFragFromUMC_objName = "";
- com.dptech.umc.DdosGlobalIcmpFragForService _getDdosGlobalIcmpFragFromUMC__return = port.getDdosGlobalIcmpFragFromUMC(_getDdosGlobalIcmpFragFromUMC_objName);
+ com.dptech.dispose.DdosGlobalIcmpFragForService _getDdosGlobalIcmpFragFromUMC__return = port.getDdosGlobalIcmpFragFromUMC(_getDdosGlobalIcmpFragFromUMC_objName);
System.out.println("getDdosGlobalIcmpFragFromUMC.result=" + _getDdosGlobalIcmpFragFromUMC__return);
@@ -460,7 +460,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDnsDomainCustomV4ForUMC_domain = "";
java.lang.String _modDnsDomainCustomV4ForUMC_protectthreshold = "";
java.lang.String _modDnsDomainCustomV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDnsDomainCustomV4ForUMC__return = port.modDnsDomainCustomV4ForUMC(_modDnsDomainCustomV4ForUMC_objName, _modDnsDomainCustomV4ForUMC_name, _modDnsDomainCustomV4ForUMC_domain, _modDnsDomainCustomV4ForUMC_protectthreshold, _modDnsDomainCustomV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDnsDomainCustomV4ForUMC__return = port.modDnsDomainCustomV4ForUMC(_modDnsDomainCustomV4ForUMC_objName, _modDnsDomainCustomV4ForUMC_name, _modDnsDomainCustomV4ForUMC_domain, _modDnsDomainCustomV4ForUMC_protectthreshold, _modDnsDomainCustomV4ForUMC_action);
System.out.println("modDnsDomainCustomV4ForUMC.result=" + _modDnsDomainCustomV4ForUMC__return);
@@ -469,14 +469,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking modBlackHoleManualStrategyForUMC...");
java.lang.String _modBlackHoleManualStrategyForUMC_policyName = "";
java.lang.String _modBlackHoleManualStrategyForUMC_ipAddress = "";
- com.dptech.umc.NtcRequestResultInfo _modBlackHoleManualStrategyForUMC__return = port.modBlackHoleManualStrategyForUMC(_modBlackHoleManualStrategyForUMC_policyName, _modBlackHoleManualStrategyForUMC_ipAddress);
+ com.dptech.dispose.NtcRequestResultInfo _modBlackHoleManualStrategyForUMC__return = port.modBlackHoleManualStrategyForUMC(_modBlackHoleManualStrategyForUMC_policyName, _modBlackHoleManualStrategyForUMC_ipAddress);
System.out.println("modBlackHoleManualStrategyForUMC.result=" + _modBlackHoleManualStrategyForUMC__return);
}
{
System.out.println("Invoking getAllBlackHoleManualStrategyFromUMC...");
- com.dptech.umc.ArrayOfBlackHoleManualStrategyForService _getAllBlackHoleManualStrategyFromUMC__return = port.getAllBlackHoleManualStrategyFromUMC();
+ com.dptech.dispose.ArrayOfBlackHoleManualStrategyForService _getAllBlackHoleManualStrategyFromUMC__return = port.getAllBlackHoleManualStrategyFromUMC();
System.out.println("getAllBlackHoleManualStrategyFromUMC.result=" + _getAllBlackHoleManualStrategyFromUMC__return);
@@ -487,7 +487,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDnsSipGlobalV4ForUMC_name = "";
java.lang.String _modDnsSipGlobalV4ForUMC_protectthreshold = "";
java.lang.String _modDnsSipGlobalV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDnsSipGlobalV4ForUMC__return = port.modDnsSipGlobalV4ForUMC(_modDnsSipGlobalV4ForUMC_objName, _modDnsSipGlobalV4ForUMC_name, _modDnsSipGlobalV4ForUMC_protectthreshold, _modDnsSipGlobalV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDnsSipGlobalV4ForUMC__return = port.modDnsSipGlobalV4ForUMC(_modDnsSipGlobalV4ForUMC_objName, _modDnsSipGlobalV4ForUMC_name, _modDnsSipGlobalV4ForUMC_protectthreshold, _modDnsSipGlobalV4ForUMC_action);
System.out.println("modDnsSipGlobalV4ForUMC.result=" + _modDnsSipGlobalV4ForUMC__return);
@@ -499,7 +499,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addOneKeyDetection_direction = "";
java.lang.String _addOneKeyDetection_bandwidth = "";
java.lang.String _addOneKeyDetection_business = "";
- com.dptech.umc.NtcRequestResultInfo _addOneKeyDetection__return = port.addOneKeyDetection(_addOneKeyDetection_protectIp, _addOneKeyDetection_attackType, _addOneKeyDetection_direction, _addOneKeyDetection_bandwidth, _addOneKeyDetection_business);
+ com.dptech.dispose.NtcRequestResultInfo _addOneKeyDetection__return = port.addOneKeyDetection(_addOneKeyDetection_protectIp, _addOneKeyDetection_attackType, _addOneKeyDetection_direction, _addOneKeyDetection_bandwidth, _addOneKeyDetection_business);
System.out.println("addOneKeyDetection.result=" + _addOneKeyDetection__return);
@@ -510,7 +510,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDdosHttpGetUriGloProV4ForUMC_name = "";
java.lang.String _addDdosHttpGetUriGloProV4ForUMC_protectthreshold = "";
java.lang.String _addDdosHttpGetUriGloProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDdosHttpGetUriGloProV4ForUMC__return = port.addDdosHttpGetUriGloProV4ForUMC(_addDdosHttpGetUriGloProV4ForUMC_objName, _addDdosHttpGetUriGloProV4ForUMC_name, _addDdosHttpGetUriGloProV4ForUMC_protectthreshold, _addDdosHttpGetUriGloProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDdosHttpGetUriGloProV4ForUMC__return = port.addDdosHttpGetUriGloProV4ForUMC(_addDdosHttpGetUriGloProV4ForUMC_objName, _addDdosHttpGetUriGloProV4ForUMC_name, _addDdosHttpGetUriGloProV4ForUMC_protectthreshold, _addDdosHttpGetUriGloProV4ForUMC_action);
System.out.println("addDdosHttpGetUriGloProV4ForUMC.result=" + _addDdosHttpGetUriGloProV4ForUMC__return);
@@ -520,7 +520,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addBlackHoleManualStrategyForUMC_policyName = "";
java.lang.String _addBlackHoleManualStrategyForUMC_detectName = "";
java.lang.String _addBlackHoleManualStrategyForUMC_ipAddress = "";
- com.dptech.umc.NtcRequestResultInfo _addBlackHoleManualStrategyForUMC__return = port.addBlackHoleManualStrategyForUMC(_addBlackHoleManualStrategyForUMC_policyName, _addBlackHoleManualStrategyForUMC_detectName, _addBlackHoleManualStrategyForUMC_ipAddress);
+ com.dptech.dispose.NtcRequestResultInfo _addBlackHoleManualStrategyForUMC__return = port.addBlackHoleManualStrategyForUMC(_addBlackHoleManualStrategyForUMC_policyName, _addBlackHoleManualStrategyForUMC_detectName, _addBlackHoleManualStrategyForUMC_ipAddress);
System.out.println("addBlackHoleManualStrategyForUMC.result=" + _addBlackHoleManualStrategyForUMC__return);
@@ -531,7 +531,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalUdpLengthForUMC_lengthenable = "";
java.lang.String _setDdosGlobalUdpLengthForUMC_minlength = "";
java.lang.String _setDdosGlobalUdpLengthForUMC_maxlength = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalUdpLengthForUMC__return = port.setDdosGlobalUdpLengthForUMC(_setDdosGlobalUdpLengthForUMC_objName, _setDdosGlobalUdpLengthForUMC_lengthenable, _setDdosGlobalUdpLengthForUMC_minlength, _setDdosGlobalUdpLengthForUMC_maxlength);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalUdpLengthForUMC__return = port.setDdosGlobalUdpLengthForUMC(_setDdosGlobalUdpLengthForUMC_objName, _setDdosGlobalUdpLengthForUMC_lengthenable, _setDdosGlobalUdpLengthForUMC_minlength, _setDdosGlobalUdpLengthForUMC_maxlength);
System.out.println("setDdosGlobalUdpLengthForUMC.result=" + _setDdosGlobalUdpLengthForUMC__return);
@@ -541,7 +541,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addOneKeyRestore_protectIp = "";
java.lang.String _addOneKeyRestore_attackType = "";
java.lang.String _addOneKeyRestore_direction = "";
- com.dptech.umc.NtcRequestResultInfo _addOneKeyRestore__return = port.addOneKeyRestore(_addOneKeyRestore_protectIp, _addOneKeyRestore_attackType, _addOneKeyRestore_direction);
+ com.dptech.dispose.NtcRequestResultInfo _addOneKeyRestore__return = port.addOneKeyRestore(_addOneKeyRestore_protectIp, _addOneKeyRestore_attackType, _addOneKeyRestore_direction);
System.out.println("addOneKeyRestore.result=" + _addOneKeyRestore__return);
@@ -549,7 +549,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking geDnsDomainCustomV4TFromUMC...");
java.lang.String _geDnsDomainCustomV4TFromUMC_objName = "";
- com.dptech.umc.ArrayOfDnsDomainCustomV4ForService _geDnsDomainCustomV4TFromUMC__return = port.geDnsDomainCustomV4TFromUMC(_geDnsDomainCustomV4TFromUMC_objName);
+ com.dptech.dispose.ArrayOfDnsDomainCustomV4ForService _geDnsDomainCustomV4TFromUMC__return = port.geDnsDomainCustomV4TFromUMC(_geDnsDomainCustomV4TFromUMC_objName);
System.out.println("geDnsDomainCustomV4TFromUMC.result=" + _geDnsDomainCustomV4TFromUMC__return);
@@ -580,7 +580,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
int _addCompleteAnomalyDetectionStrategyForUMC_dnsFloodThreshold = 0;
int _addCompleteAnomalyDetectionStrategyForUMC_dnsFloodThresholdType = 0;
int _addCompleteAnomalyDetectionStrategyForUMC_bandWidthThreshold = 0;
- com.dptech.umc.NtcRequestResultInfo _addCompleteAnomalyDetectionStrategyForUMC__return = port.addCompleteAnomalyDetectionStrategyForUMC(_addCompleteAnomalyDetectionStrategyForUMC_strategyName, _addCompleteAnomalyDetectionStrategyForUMC_detectionObjName, _addCompleteAnomalyDetectionStrategyForUMC_direction, _addCompleteAnomalyDetectionStrategyForUMC_synFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_synFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_udpFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_udpFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_icmpFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_icmpFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_synAckFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_synAckFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_finFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_finFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_ipFragmentFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_ipFragmentFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_ackFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_ackFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_httpFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_httpFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_ccFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_ccFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_dnsFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_dnsFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_bandWidthThreshold);
+ com.dptech.dispose.NtcRequestResultInfo _addCompleteAnomalyDetectionStrategyForUMC__return = port.addCompleteAnomalyDetectionStrategyForUMC(_addCompleteAnomalyDetectionStrategyForUMC_strategyName, _addCompleteAnomalyDetectionStrategyForUMC_detectionObjName, _addCompleteAnomalyDetectionStrategyForUMC_direction, _addCompleteAnomalyDetectionStrategyForUMC_synFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_synFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_udpFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_udpFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_icmpFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_icmpFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_synAckFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_synAckFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_finFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_finFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_ipFragmentFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_ipFragmentFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_ackFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_ackFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_httpFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_httpFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_ccFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_ccFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_dnsFloodThreshold, _addCompleteAnomalyDetectionStrategyForUMC_dnsFloodThresholdType, _addCompleteAnomalyDetectionStrategyForUMC_bandWidthThreshold);
System.out.println("addCompleteAnomalyDetectionStrategyForUMC.result=" + _addCompleteAnomalyDetectionStrategyForUMC__return);
@@ -589,7 +589,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDnsSipCustomV4ForUMC...");
java.lang.String _delDnsSipCustomV4ForUMC_name = "";
java.lang.String _delDnsSipCustomV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDnsSipCustomV4ForUMC__return = port.delDnsSipCustomV4ForUMC(_delDnsSipCustomV4ForUMC_name, _delDnsSipCustomV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDnsSipCustomV4ForUMC__return = port.delDnsSipCustomV4ForUMC(_delDnsSipCustomV4ForUMC_name, _delDnsSipCustomV4ForUMC_objName);
System.out.println("delDnsSipCustomV4ForUMC.result=" + _delDnsSipCustomV4ForUMC__return);
@@ -624,7 +624,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modFingerprintUdpForUMC_custom3 = "";
java.lang.String _modFingerprintUdpForUMC_threshold = "";
java.lang.String _modFingerprintUdpForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modFingerprintUdpForUMC__return = port.modFingerprintUdpForUMC(_modFingerprintUdpForUMC_objName, _modFingerprintUdpForUMC_name, _modFingerprintUdpForUMC_keytype1, _modFingerprintUdpForUMC_keyoffset1, _modFingerprintUdpForUMC_keylength1, _modFingerprintUdpForUMC_port1, _modFingerprintUdpForUMC_ip1, _modFingerprintUdpForUMC_mask1, _modFingerprintUdpForUMC_enable1, _modFingerprintUdpForUMC_custom1, _modFingerprintUdpForUMC_keytype2, _modFingerprintUdpForUMC_keyoffset2, _modFingerprintUdpForUMC_keylength2, _modFingerprintUdpForUMC_port2, _modFingerprintUdpForUMC_ip2, _modFingerprintUdpForUMC_mask2, _modFingerprintUdpForUMC_enable2, _modFingerprintUdpForUMC_custom2, _modFingerprintUdpForUMC_keytype3, _modFingerprintUdpForUMC_keyoffset3, _modFingerprintUdpForUMC_keylength3, _modFingerprintUdpForUMC_port3, _modFingerprintUdpForUMC_ip3, _modFingerprintUdpForUMC_mask3, _modFingerprintUdpForUMC_enable3, _modFingerprintUdpForUMC_custom3, _modFingerprintUdpForUMC_threshold, _modFingerprintUdpForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modFingerprintUdpForUMC__return = port.modFingerprintUdpForUMC(_modFingerprintUdpForUMC_objName, _modFingerprintUdpForUMC_name, _modFingerprintUdpForUMC_keytype1, _modFingerprintUdpForUMC_keyoffset1, _modFingerprintUdpForUMC_keylength1, _modFingerprintUdpForUMC_port1, _modFingerprintUdpForUMC_ip1, _modFingerprintUdpForUMC_mask1, _modFingerprintUdpForUMC_enable1, _modFingerprintUdpForUMC_custom1, _modFingerprintUdpForUMC_keytype2, _modFingerprintUdpForUMC_keyoffset2, _modFingerprintUdpForUMC_keylength2, _modFingerprintUdpForUMC_port2, _modFingerprintUdpForUMC_ip2, _modFingerprintUdpForUMC_mask2, _modFingerprintUdpForUMC_enable2, _modFingerprintUdpForUMC_custom2, _modFingerprintUdpForUMC_keytype3, _modFingerprintUdpForUMC_keyoffset3, _modFingerprintUdpForUMC_keylength3, _modFingerprintUdpForUMC_port3, _modFingerprintUdpForUMC_ip3, _modFingerprintUdpForUMC_mask3, _modFingerprintUdpForUMC_enable3, _modFingerprintUdpForUMC_custom3, _modFingerprintUdpForUMC_threshold, _modFingerprintUdpForUMC_action);
System.out.println("modFingerprintUdpForUMC.result=" + _modFingerprintUdpForUMC__return);
@@ -634,7 +634,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalTcpFragForUMC_objName = "";
java.lang.String _setDdosGlobalTcpFragForUMC_tcpenable = "";
java.lang.String _setDdosGlobalTcpFragForUMC_tcpthreshold = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalTcpFragForUMC__return = port.setDdosGlobalTcpFragForUMC(_setDdosGlobalTcpFragForUMC_objName, _setDdosGlobalTcpFragForUMC_tcpenable, _setDdosGlobalTcpFragForUMC_tcpthreshold);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalTcpFragForUMC__return = port.setDdosGlobalTcpFragForUMC(_setDdosGlobalTcpFragForUMC_objName, _setDdosGlobalTcpFragForUMC_tcpenable, _setDdosGlobalTcpFragForUMC_tcpthreshold);
System.out.println("setDdosGlobalTcpFragForUMC.result=" + _setDdosGlobalTcpFragForUMC__return);
@@ -642,7 +642,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalTcpStateFromUMC...");
java.lang.String _getDdosGlobalTcpStateFromUMC_objName = "";
- com.dptech.umc.DdosGlobalTcpStateForService _getDdosGlobalTcpStateFromUMC__return = port.getDdosGlobalTcpStateFromUMC(_getDdosGlobalTcpStateFromUMC_objName);
+ com.dptech.dispose.DdosGlobalTcpStateForService _getDdosGlobalTcpStateFromUMC__return = port.getDdosGlobalTcpStateFromUMC(_getDdosGlobalTcpStateFromUMC_objName);
System.out.println("getDdosGlobalTcpStateFromUMC.result=" + _getDdosGlobalTcpStateFromUMC__return);
@@ -680,7 +680,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modFingerprintTcpForUMC_custom3 = "";
java.lang.String _modFingerprintTcpForUMC_threshold = "";
java.lang.String _modFingerprintTcpForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modFingerprintTcpForUMC__return = port.modFingerprintTcpForUMC(_modFingerprintTcpForUMC_objName, _modFingerprintTcpForUMC_name, _modFingerprintTcpForUMC_keytype1, _modFingerprintTcpForUMC_keyoffset1, _modFingerprintTcpForUMC_keylength1, _modFingerprintTcpForUMC_port1, _modFingerprintTcpForUMC_flag1, _modFingerprintTcpForUMC_ip1, _modFingerprintTcpForUMC_mask1, _modFingerprintTcpForUMC_enable1, _modFingerprintTcpForUMC_custom1, _modFingerprintTcpForUMC_keytype2, _modFingerprintTcpForUMC_keyoffset2, _modFingerprintTcpForUMC_keylength2, _modFingerprintTcpForUMC_port2, _modFingerprintTcpForUMC_flag2, _modFingerprintTcpForUMC_ip2, _modFingerprintTcpForUMC_mask2, _modFingerprintTcpForUMC_enable2, _modFingerprintTcpForUMC_custom2, _modFingerprintTcpForUMC_keytype3, _modFingerprintTcpForUMC_keyoffset3, _modFingerprintTcpForUMC_keylength3, _modFingerprintTcpForUMC_port3, _modFingerprintTcpForUMC_flag3, _modFingerprintTcpForUMC_ip3, _modFingerprintTcpForUMC_mask3, _modFingerprintTcpForUMC_enable3, _modFingerprintTcpForUMC_custom3, _modFingerprintTcpForUMC_threshold, _modFingerprintTcpForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modFingerprintTcpForUMC__return = port.modFingerprintTcpForUMC(_modFingerprintTcpForUMC_objName, _modFingerprintTcpForUMC_name, _modFingerprintTcpForUMC_keytype1, _modFingerprintTcpForUMC_keyoffset1, _modFingerprintTcpForUMC_keylength1, _modFingerprintTcpForUMC_port1, _modFingerprintTcpForUMC_flag1, _modFingerprintTcpForUMC_ip1, _modFingerprintTcpForUMC_mask1, _modFingerprintTcpForUMC_enable1, _modFingerprintTcpForUMC_custom1, _modFingerprintTcpForUMC_keytype2, _modFingerprintTcpForUMC_keyoffset2, _modFingerprintTcpForUMC_keylength2, _modFingerprintTcpForUMC_port2, _modFingerprintTcpForUMC_flag2, _modFingerprintTcpForUMC_ip2, _modFingerprintTcpForUMC_mask2, _modFingerprintTcpForUMC_enable2, _modFingerprintTcpForUMC_custom2, _modFingerprintTcpForUMC_keytype3, _modFingerprintTcpForUMC_keyoffset3, _modFingerprintTcpForUMC_keylength3, _modFingerprintTcpForUMC_port3, _modFingerprintTcpForUMC_flag3, _modFingerprintTcpForUMC_ip3, _modFingerprintTcpForUMC_mask3, _modFingerprintTcpForUMC_enable3, _modFingerprintTcpForUMC_custom3, _modFingerprintTcpForUMC_threshold, _modFingerprintTcpForUMC_action);
System.out.println("modFingerprintTcpForUMC.result=" + _modFingerprintTcpForUMC__return);
@@ -691,7 +691,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDnsDomainGlobalV4ForUMC_name = "";
java.lang.String _addDnsDomainGlobalV4ForUMC_protectthreshold = "";
java.lang.String _addDnsDomainGlobalV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDnsDomainGlobalV4ForUMC__return = port.addDnsDomainGlobalV4ForUMC(_addDnsDomainGlobalV4ForUMC_objName, _addDnsDomainGlobalV4ForUMC_name, _addDnsDomainGlobalV4ForUMC_protectthreshold, _addDnsDomainGlobalV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDnsDomainGlobalV4ForUMC__return = port.addDnsDomainGlobalV4ForUMC(_addDnsDomainGlobalV4ForUMC_objName, _addDnsDomainGlobalV4ForUMC_name, _addDnsDomainGlobalV4ForUMC_protectthreshold, _addDnsDomainGlobalV4ForUMC_action);
System.out.println("addDnsDomainGlobalV4ForUMC.result=" + _addDnsDomainGlobalV4ForUMC__return);
@@ -699,7 +699,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking delBlackAndWhiteListProtection...");
java.lang.String _delBlackAndWhiteListProtection_name = "";
- com.dptech.umc.NtcRequestResultInfo _delBlackAndWhiteListProtection__return = port.delBlackAndWhiteListProtection(_delBlackAndWhiteListProtection_name);
+ com.dptech.dispose.NtcRequestResultInfo _delBlackAndWhiteListProtection__return = port.delBlackAndWhiteListProtection(_delBlackAndWhiteListProtection_name);
System.out.println("delBlackAndWhiteListProtection.result=" + _delBlackAndWhiteListProtection__return);
@@ -709,7 +709,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalIcmpFragForUMC_objName = "";
java.lang.String _setDdosGlobalIcmpFragForUMC_icmpenable = "";
java.lang.String _setDdosGlobalIcmpFragForUMC_icmpthreshold = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalIcmpFragForUMC__return = port.setDdosGlobalIcmpFragForUMC(_setDdosGlobalIcmpFragForUMC_objName, _setDdosGlobalIcmpFragForUMC_icmpenable, _setDdosGlobalIcmpFragForUMC_icmpthreshold);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalIcmpFragForUMC__return = port.setDdosGlobalIcmpFragForUMC(_setDdosGlobalIcmpFragForUMC_objName, _setDdosGlobalIcmpFragForUMC_icmpenable, _setDdosGlobalIcmpFragForUMC_icmpthreshold);
System.out.println("setDdosGlobalIcmpFragForUMC.result=" + _setDdosGlobalIcmpFragForUMC__return);
@@ -717,7 +717,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalTcpFlagFromUMC...");
java.lang.String _getDdosGlobalTcpFlagFromUMC_objName = "";
- com.dptech.umc.DdosGlobalTcpFlagForService _getDdosGlobalTcpFlagFromUMC__return = port.getDdosGlobalTcpFlagFromUMC(_getDdosGlobalTcpFlagFromUMC_objName);
+ com.dptech.dispose.DdosGlobalTcpFlagForService _getDdosGlobalTcpFlagFromUMC__return = port.getDdosGlobalTcpFlagFromUMC(_getDdosGlobalTcpFlagFromUMC_objName);
System.out.println("getDdosGlobalTcpFlagFromUMC.result=" + _getDdosGlobalTcpFlagFromUMC__return);
@@ -726,7 +726,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking startBypassManualTractionStrategyForUMC...");
java.lang.String _startBypassManualTractionStrategyForUMC_policyName = "";
java.lang.String _startBypassManualTractionStrategyForUMC_cleaningDevices = "";
- com.dptech.umc.NtcRequestResultInfo _startBypassManualTractionStrategyForUMC__return = port.startBypassManualTractionStrategyForUMC(_startBypassManualTractionStrategyForUMC_policyName, _startBypassManualTractionStrategyForUMC_cleaningDevices);
+ com.dptech.dispose.NtcRequestResultInfo _startBypassManualTractionStrategyForUMC__return = port.startBypassManualTractionStrategyForUMC(_startBypassManualTractionStrategyForUMC_policyName, _startBypassManualTractionStrategyForUMC_cleaningDevices);
System.out.println("startBypassManualTractionStrategyForUMC.result=" + _startBypassManualTractionStrategyForUMC__return);
@@ -761,7 +761,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addFingerprintUdpForUMC_custom3 = "";
java.lang.String _addFingerprintUdpForUMC_threshold = "";
java.lang.String _addFingerprintUdpForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addFingerprintUdpForUMC__return = port.addFingerprintUdpForUMC(_addFingerprintUdpForUMC_objName, _addFingerprintUdpForUMC_name, _addFingerprintUdpForUMC_keytype1, _addFingerprintUdpForUMC_keyoffset1, _addFingerprintUdpForUMC_keylength1, _addFingerprintUdpForUMC_port1, _addFingerprintUdpForUMC_ip1, _addFingerprintUdpForUMC_mask1, _addFingerprintUdpForUMC_enable1, _addFingerprintUdpForUMC_custom1, _addFingerprintUdpForUMC_keytype2, _addFingerprintUdpForUMC_keyoffset2, _addFingerprintUdpForUMC_keylength2, _addFingerprintUdpForUMC_port2, _addFingerprintUdpForUMC_ip2, _addFingerprintUdpForUMC_mask2, _addFingerprintUdpForUMC_enable2, _addFingerprintUdpForUMC_custom2, _addFingerprintUdpForUMC_keytype3, _addFingerprintUdpForUMC_keyoffset3, _addFingerprintUdpForUMC_keylength3, _addFingerprintUdpForUMC_port3, _addFingerprintUdpForUMC_ip3, _addFingerprintUdpForUMC_mask3, _addFingerprintUdpForUMC_enable3, _addFingerprintUdpForUMC_custom3, _addFingerprintUdpForUMC_threshold, _addFingerprintUdpForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addFingerprintUdpForUMC__return = port.addFingerprintUdpForUMC(_addFingerprintUdpForUMC_objName, _addFingerprintUdpForUMC_name, _addFingerprintUdpForUMC_keytype1, _addFingerprintUdpForUMC_keyoffset1, _addFingerprintUdpForUMC_keylength1, _addFingerprintUdpForUMC_port1, _addFingerprintUdpForUMC_ip1, _addFingerprintUdpForUMC_mask1, _addFingerprintUdpForUMC_enable1, _addFingerprintUdpForUMC_custom1, _addFingerprintUdpForUMC_keytype2, _addFingerprintUdpForUMC_keyoffset2, _addFingerprintUdpForUMC_keylength2, _addFingerprintUdpForUMC_port2, _addFingerprintUdpForUMC_ip2, _addFingerprintUdpForUMC_mask2, _addFingerprintUdpForUMC_enable2, _addFingerprintUdpForUMC_custom2, _addFingerprintUdpForUMC_keytype3, _addFingerprintUdpForUMC_keyoffset3, _addFingerprintUdpForUMC_keylength3, _addFingerprintUdpForUMC_port3, _addFingerprintUdpForUMC_ip3, _addFingerprintUdpForUMC_mask3, _addFingerprintUdpForUMC_enable3, _addFingerprintUdpForUMC_custom3, _addFingerprintUdpForUMC_threshold, _addFingerprintUdpForUMC_action);
System.out.println("addFingerprintUdpForUMC.result=" + _addFingerprintUdpForUMC__return);
@@ -773,14 +773,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDdosDnsRetryProtectForUMC_action = "";
java.lang.String _addDdosDnsRetryProtectForUMC_alertthreshold = "";
java.lang.String _addDdosDnsRetryProtectForUMC_protectthreshold = "";
- com.dptech.umc.NtcRequestResultInfo _addDdosDnsRetryProtectForUMC__return = port.addDdosDnsRetryProtectForUMC(_addDdosDnsRetryProtectForUMC_objName, _addDdosDnsRetryProtectForUMC_name, _addDdosDnsRetryProtectForUMC_action, _addDdosDnsRetryProtectForUMC_alertthreshold, _addDdosDnsRetryProtectForUMC_protectthreshold);
+ com.dptech.dispose.NtcRequestResultInfo _addDdosDnsRetryProtectForUMC__return = port.addDdosDnsRetryProtectForUMC(_addDdosDnsRetryProtectForUMC_objName, _addDdosDnsRetryProtectForUMC_name, _addDdosDnsRetryProtectForUMC_action, _addDdosDnsRetryProtectForUMC_alertthreshold, _addDdosDnsRetryProtectForUMC_protectthreshold);
System.out.println("addDdosDnsRetryProtectForUMC.result=" + _addDdosDnsRetryProtectForUMC__return);
}
{
System.out.println("Invoking getAllBlackHoleAutoStrategyFromUMC...");
- com.dptech.umc.ArrayOfBlackHoleAutoStrategyForService _getAllBlackHoleAutoStrategyFromUMC__return = port.getAllBlackHoleAutoStrategyFromUMC();
+ com.dptech.dispose.ArrayOfBlackHoleAutoStrategyForService _getAllBlackHoleAutoStrategyFromUMC__return = port.getAllBlackHoleAutoStrategyFromUMC();
System.out.println("getAllBlackHoleAutoStrategyFromUMC.result=" + _getAllBlackHoleAutoStrategyFromUMC__return);
@@ -788,7 +788,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDnsDomainGlobalV4FromUMC...");
java.lang.String _getDnsDomainGlobalV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDnsDomainGlobalV4ForService _getDnsDomainGlobalV4FromUMC__return = port.getDnsDomainGlobalV4FromUMC(_getDnsDomainGlobalV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDnsDomainGlobalV4ForService _getDnsDomainGlobalV4FromUMC__return = port.getDnsDomainGlobalV4FromUMC(_getDnsDomainGlobalV4FromUMC_objName);
System.out.println("getDnsDomainGlobalV4FromUMC.result=" + _getDnsDomainGlobalV4FromUMC__return);
@@ -797,7 +797,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDdosHttpGetSipGloProV4ForUMC...");
java.lang.String _delDdosHttpGetSipGloProV4ForUMC_name = "";
java.lang.String _delDdosHttpGetSipGloProV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDdosHttpGetSipGloProV4ForUMC__return = port.delDdosHttpGetSipGloProV4ForUMC(_delDdosHttpGetSipGloProV4ForUMC_name, _delDdosHttpGetSipGloProV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDdosHttpGetSipGloProV4ForUMC__return = port.delDdosHttpGetSipGloProV4ForUMC(_delDdosHttpGetSipGloProV4ForUMC_name, _delDdosHttpGetSipGloProV4ForUMC_objName);
System.out.println("delDdosHttpGetSipGloProV4ForUMC.result=" + _delDdosHttpGetSipGloProV4ForUMC__return);
@@ -805,7 +805,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getAnomalyDetectionStrategyFromUMC...");
java.lang.String _getAnomalyDetectionStrategyFromUMC_strategyName = "";
- com.dptech.umc.AnomalyDetectionStrategy _getAnomalyDetectionStrategyFromUMC__return = port.getAnomalyDetectionStrategyFromUMC(_getAnomalyDetectionStrategyFromUMC_strategyName);
+ com.dptech.dispose.AnomalyDetectionStrategy _getAnomalyDetectionStrategyFromUMC__return = port.getAnomalyDetectionStrategyFromUMC(_getAnomalyDetectionStrategyFromUMC_strategyName);
System.out.println("getAnomalyDetectionStrategyFromUMC.result=" + _getAnomalyDetectionStrategyFromUMC__return);
@@ -814,7 +814,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking addDdosCCuserGroupV4ForUMC...");
java.lang.String _addDdosCCuserGroupV4ForUMC_objName = "";
java.lang.String _addDdosCCuserGroupV4ForUMC_name = "";
- com.dptech.umc.NtcRequestResultInfo _addDdosCCuserGroupV4ForUMC__return = port.addDdosCCuserGroupV4ForUMC(_addDdosCCuserGroupV4ForUMC_objName, _addDdosCCuserGroupV4ForUMC_name);
+ com.dptech.dispose.NtcRequestResultInfo _addDdosCCuserGroupV4ForUMC__return = port.addDdosCCuserGroupV4ForUMC(_addDdosCCuserGroupV4ForUMC_objName, _addDdosCCuserGroupV4ForUMC_name);
System.out.println("addDdosCCuserGroupV4ForUMC.result=" + _addDdosCCuserGroupV4ForUMC__return);
@@ -825,7 +825,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDnsSecDomainGlobalV4ForUMC_name = "";
java.lang.String _modDnsSecDomainGlobalV4ForUMC_protectthreshold = "";
java.lang.String _modDnsSecDomainGlobalV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDnsSecDomainGlobalV4ForUMC__return = port.modDnsSecDomainGlobalV4ForUMC(_modDnsSecDomainGlobalV4ForUMC_objName, _modDnsSecDomainGlobalV4ForUMC_name, _modDnsSecDomainGlobalV4ForUMC_protectthreshold, _modDnsSecDomainGlobalV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDnsSecDomainGlobalV4ForUMC__return = port.modDnsSecDomainGlobalV4ForUMC(_modDnsSecDomainGlobalV4ForUMC_objName, _modDnsSecDomainGlobalV4ForUMC_name, _modDnsSecDomainGlobalV4ForUMC_protectthreshold, _modDnsSecDomainGlobalV4ForUMC_action);
System.out.println("modDnsSecDomainGlobalV4ForUMC.result=" + _modDnsSecDomainGlobalV4ForUMC__return);
@@ -837,7 +837,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDdosHttpGetSipCusProV4ForUMC_sip = "";
java.lang.String _addDdosHttpGetSipCusProV4ForUMC_protectthreshold = "";
java.lang.String _addDdosHttpGetSipCusProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDdosHttpGetSipCusProV4ForUMC__return = port.addDdosHttpGetSipCusProV4ForUMC(_addDdosHttpGetSipCusProV4ForUMC_objName, _addDdosHttpGetSipCusProV4ForUMC_name, _addDdosHttpGetSipCusProV4ForUMC_sip, _addDdosHttpGetSipCusProV4ForUMC_protectthreshold, _addDdosHttpGetSipCusProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDdosHttpGetSipCusProV4ForUMC__return = port.addDdosHttpGetSipCusProV4ForUMC(_addDdosHttpGetSipCusProV4ForUMC_objName, _addDdosHttpGetSipCusProV4ForUMC_name, _addDdosHttpGetSipCusProV4ForUMC_sip, _addDdosHttpGetSipCusProV4ForUMC_protectthreshold, _addDdosHttpGetSipCusProV4ForUMC_action);
System.out.println("addDdosHttpGetSipCusProV4ForUMC.result=" + _addDdosHttpGetSipCusProV4ForUMC__return);
@@ -845,7 +845,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalAckPayloadFromUMC...");
java.lang.String _getDdosGlobalAckPayloadFromUMC_objName = "";
- com.dptech.umc.DdosGlobalAckPayloadForService _getDdosGlobalAckPayloadFromUMC__return = port.getDdosGlobalAckPayloadFromUMC(_getDdosGlobalAckPayloadFromUMC_objName);
+ com.dptech.dispose.DdosGlobalAckPayloadForService _getDdosGlobalAckPayloadFromUMC__return = port.getDdosGlobalAckPayloadFromUMC(_getDdosGlobalAckPayloadFromUMC_objName);
System.out.println("getDdosGlobalAckPayloadFromUMC.result=" + _getDdosGlobalAckPayloadFromUMC__return);
@@ -853,7 +853,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalTcpFragFromUMC...");
java.lang.String _getDdosGlobalTcpFragFromUMC_objName = "";
- com.dptech.umc.DdosGlobalTcpFragForService _getDdosGlobalTcpFragFromUMC__return = port.getDdosGlobalTcpFragFromUMC(_getDdosGlobalTcpFragFromUMC_objName);
+ com.dptech.dispose.DdosGlobalTcpFragForService _getDdosGlobalTcpFragFromUMC__return = port.getDdosGlobalTcpFragFromUMC(_getDdosGlobalTcpFragFromUMC_objName);
System.out.println("getDdosGlobalTcpFragFromUMC.result=" + _getDdosGlobalTcpFragFromUMC__return);
@@ -862,7 +862,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking stopBypassManualTractionStrategyForUMC...");
java.lang.String _stopBypassManualTractionStrategyForUMC_policyName = "";
java.lang.String _stopBypassManualTractionStrategyForUMC_cleaningDevices = "";
- com.dptech.umc.NtcRequestResultInfo _stopBypassManualTractionStrategyForUMC__return = port.stopBypassManualTractionStrategyForUMC(_stopBypassManualTractionStrategyForUMC_policyName, _stopBypassManualTractionStrategyForUMC_cleaningDevices);
+ com.dptech.dispose.NtcRequestResultInfo _stopBypassManualTractionStrategyForUMC__return = port.stopBypassManualTractionStrategyForUMC(_stopBypassManualTractionStrategyForUMC_policyName, _stopBypassManualTractionStrategyForUMC_cleaningDevices);
System.out.println("stopBypassManualTractionStrategyForUMC.result=" + _stopBypassManualTractionStrategyForUMC__return);
@@ -894,7 +894,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addFingerprintOtherForUMC_custom3 = "";
java.lang.String _addFingerprintOtherForUMC_threshold = "";
java.lang.String _addFingerprintOtherForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addFingerprintOtherForUMC__return = port.addFingerprintOtherForUMC(_addFingerprintOtherForUMC_objName, _addFingerprintOtherForUMC_name, _addFingerprintOtherForUMC_keytype1, _addFingerprintOtherForUMC_keyoffset1, _addFingerprintOtherForUMC_keylength1, _addFingerprintOtherForUMC_ip1, _addFingerprintOtherForUMC_mask1, _addFingerprintOtherForUMC_enable1, _addFingerprintOtherForUMC_custom1, _addFingerprintOtherForUMC_keytype2, _addFingerprintOtherForUMC_keyoffset2, _addFingerprintOtherForUMC_keylength2, _addFingerprintOtherForUMC_ip2, _addFingerprintOtherForUMC_mask2, _addFingerprintOtherForUMC_enable2, _addFingerprintOtherForUMC_custom2, _addFingerprintOtherForUMC_keytype3, _addFingerprintOtherForUMC_keyoffset3, _addFingerprintOtherForUMC_keylength3, _addFingerprintOtherForUMC_ip3, _addFingerprintOtherForUMC_mask3, _addFingerprintOtherForUMC_enable3, _addFingerprintOtherForUMC_custom3, _addFingerprintOtherForUMC_threshold, _addFingerprintOtherForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addFingerprintOtherForUMC__return = port.addFingerprintOtherForUMC(_addFingerprintOtherForUMC_objName, _addFingerprintOtherForUMC_name, _addFingerprintOtherForUMC_keytype1, _addFingerprintOtherForUMC_keyoffset1, _addFingerprintOtherForUMC_keylength1, _addFingerprintOtherForUMC_ip1, _addFingerprintOtherForUMC_mask1, _addFingerprintOtherForUMC_enable1, _addFingerprintOtherForUMC_custom1, _addFingerprintOtherForUMC_keytype2, _addFingerprintOtherForUMC_keyoffset2, _addFingerprintOtherForUMC_keylength2, _addFingerprintOtherForUMC_ip2, _addFingerprintOtherForUMC_mask2, _addFingerprintOtherForUMC_enable2, _addFingerprintOtherForUMC_custom2, _addFingerprintOtherForUMC_keytype3, _addFingerprintOtherForUMC_keyoffset3, _addFingerprintOtherForUMC_keylength3, _addFingerprintOtherForUMC_ip3, _addFingerprintOtherForUMC_mask3, _addFingerprintOtherForUMC_enable3, _addFingerprintOtherForUMC_custom3, _addFingerprintOtherForUMC_threshold, _addFingerprintOtherForUMC_action);
System.out.println("addFingerprintOtherForUMC.result=" + _addFingerprintOtherForUMC__return);
@@ -905,14 +905,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDdosHttpGetSipGloProV4ForUMC_name = "";
java.lang.String _modDdosHttpGetSipGloProV4ForUMC_protectthreshold = "";
java.lang.String _modDdosHttpGetSipGloProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDdosHttpGetSipGloProV4ForUMC__return = port.modDdosHttpGetSipGloProV4ForUMC(_modDdosHttpGetSipGloProV4ForUMC_objName, _modDdosHttpGetSipGloProV4ForUMC_name, _modDdosHttpGetSipGloProV4ForUMC_protectthreshold, _modDdosHttpGetSipGloProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDdosHttpGetSipGloProV4ForUMC__return = port.modDdosHttpGetSipGloProV4ForUMC(_modDdosHttpGetSipGloProV4ForUMC_objName, _modDdosHttpGetSipGloProV4ForUMC_name, _modDdosHttpGetSipGloProV4ForUMC_protectthreshold, _modDdosHttpGetSipGloProV4ForUMC_action);
System.out.println("modDdosHttpGetSipGloProV4ForUMC.result=" + _modDdosHttpGetSipGloProV4ForUMC__return);
}
{
System.out.println("Invoking getAllAnomalyDetectionStrategyFromUMC...");
- com.dptech.umc.ArrayOfAnomalyDetectionStrategy _getAllAnomalyDetectionStrategyFromUMC__return = port.getAllAnomalyDetectionStrategyFromUMC();
+ com.dptech.dispose.ArrayOfAnomalyDetectionStrategy _getAllAnomalyDetectionStrategyFromUMC__return = port.getAllAnomalyDetectionStrategyFromUMC();
System.out.println("getAllAnomalyDetectionStrategyFromUMC.result=" + _getAllAnomalyDetectionStrategyFromUMC__return);
@@ -922,7 +922,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _startAbnormalTaskForUMC_abnormalIp = "";
int _startAbnormalTaskForUMC_attackType = 0;
int _startAbnormalTaskForUMC_direction = 0;
- com.dptech.umc.NtcRequestResultInfo _startAbnormalTaskForUMC__return = port.startAbnormalTaskForUMC(_startAbnormalTaskForUMC_abnormalIp, _startAbnormalTaskForUMC_attackType, _startAbnormalTaskForUMC_direction);
+ com.dptech.dispose.NtcRequestResultInfo _startAbnormalTaskForUMC__return = port.startAbnormalTaskForUMC(_startAbnormalTaskForUMC_abnormalIp, _startAbnormalTaskForUMC_attackType, _startAbnormalTaskForUMC_direction);
System.out.println("startAbnormalTaskForUMC.result=" + _startAbnormalTaskForUMC__return);
@@ -941,7 +941,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modBlackAndWhiteListProtection_minute = "";
java.lang.String _modBlackAndWhiteListProtection_second = "";
java.lang.String _modBlackAndWhiteListProtection_protectionType = "";
- com.dptech.umc.NtcRequestResultInfo _modBlackAndWhiteListProtection__return = port.modBlackAndWhiteListProtection(_modBlackAndWhiteListProtection_name, _modBlackAndWhiteListProtection_sipType, _modBlackAndWhiteListProtection_sipStartIp, _modBlackAndWhiteListProtection_sipEndIp, _modBlackAndWhiteListProtection_dipType, _modBlackAndWhiteListProtection_dipStartIp, _modBlackAndWhiteListProtection_dipEndIp, _modBlackAndWhiteListProtection_timeType, _modBlackAndWhiteListProtection_hour, _modBlackAndWhiteListProtection_minute, _modBlackAndWhiteListProtection_second, _modBlackAndWhiteListProtection_protectionType);
+ com.dptech.dispose.NtcRequestResultInfo _modBlackAndWhiteListProtection__return = port.modBlackAndWhiteListProtection(_modBlackAndWhiteListProtection_name, _modBlackAndWhiteListProtection_sipType, _modBlackAndWhiteListProtection_sipStartIp, _modBlackAndWhiteListProtection_sipEndIp, _modBlackAndWhiteListProtection_dipType, _modBlackAndWhiteListProtection_dipStartIp, _modBlackAndWhiteListProtection_dipEndIp, _modBlackAndWhiteListProtection_timeType, _modBlackAndWhiteListProtection_hour, _modBlackAndWhiteListProtection_minute, _modBlackAndWhiteListProtection_second, _modBlackAndWhiteListProtection_protectionType);
System.out.println("modBlackAndWhiteListProtection.result=" + _modBlackAndWhiteListProtection__return);
@@ -952,7 +952,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDnsSipGlobalV4ForUMC_name = "";
java.lang.String _addDnsSipGlobalV4ForUMC_protectthreshold = "";
java.lang.String _addDnsSipGlobalV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDnsSipGlobalV4ForUMC__return = port.addDnsSipGlobalV4ForUMC(_addDnsSipGlobalV4ForUMC_objName, _addDnsSipGlobalV4ForUMC_name, _addDnsSipGlobalV4ForUMC_protectthreshold, _addDnsSipGlobalV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDnsSipGlobalV4ForUMC__return = port.addDnsSipGlobalV4ForUMC(_addDnsSipGlobalV4ForUMC_objName, _addDnsSipGlobalV4ForUMC_name, _addDnsSipGlobalV4ForUMC_protectthreshold, _addDnsSipGlobalV4ForUMC_action);
System.out.println("addDnsSipGlobalV4ForUMC.result=" + _addDnsSipGlobalV4ForUMC__return);
@@ -962,7 +962,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addAnomalyDetectionStrategyForUMC_strategyName = "";
java.lang.String _addAnomalyDetectionStrategyForUMC_detectionObjName = "";
int _addAnomalyDetectionStrategyForUMC_bandWidthThreshold = 0;
- com.dptech.umc.NtcRequestResultInfo _addAnomalyDetectionStrategyForUMC__return = port.addAnomalyDetectionStrategyForUMC(_addAnomalyDetectionStrategyForUMC_strategyName, _addAnomalyDetectionStrategyForUMC_detectionObjName, _addAnomalyDetectionStrategyForUMC_bandWidthThreshold);
+ com.dptech.dispose.NtcRequestResultInfo _addAnomalyDetectionStrategyForUMC__return = port.addAnomalyDetectionStrategyForUMC(_addAnomalyDetectionStrategyForUMC_strategyName, _addAnomalyDetectionStrategyForUMC_detectionObjName, _addAnomalyDetectionStrategyForUMC_bandWidthThreshold);
System.out.println("addAnomalyDetectionStrategyForUMC.result=" + _addAnomalyDetectionStrategyForUMC__return);
@@ -985,7 +985,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDdosACProtectionForUMC_dstPortMin = "";
java.lang.String _addDdosACProtectionForUMC_dstPortMax = "";
java.lang.String _addDdosACProtectionForUMC_threshold = "";
- com.dptech.umc.NtcRequestResultInfo _addDdosACProtectionForUMC__return = port.addDdosACProtectionForUMC(_addDdosACProtectionForUMC_objName, _addDdosACProtectionForUMC_name, _addDdosACProtectionForUMC_fixString, _addDdosACProtectionForUMC_startLocation, _addDdosACProtectionForUMC_endLocation, _addDdosACProtectionForUMC_regularExpression, _addDdosACProtectionForUMC_acSip, _addDdosACProtectionForUMC_acSmask, _addDdosACProtectionForUMC_acDip, _addDdosACProtectionForUMC_acDmask, _addDdosACProtectionForUMC_protocol, _addDdosACProtectionForUMC_srcPortMin, _addDdosACProtectionForUMC_srcPortMax, _addDdosACProtectionForUMC_dstPortMin, _addDdosACProtectionForUMC_dstPortMax, _addDdosACProtectionForUMC_threshold);
+ com.dptech.dispose.NtcRequestResultInfo _addDdosACProtectionForUMC__return = port.addDdosACProtectionForUMC(_addDdosACProtectionForUMC_objName, _addDdosACProtectionForUMC_name, _addDdosACProtectionForUMC_fixString, _addDdosACProtectionForUMC_startLocation, _addDdosACProtectionForUMC_endLocation, _addDdosACProtectionForUMC_regularExpression, _addDdosACProtectionForUMC_acSip, _addDdosACProtectionForUMC_acSmask, _addDdosACProtectionForUMC_acDip, _addDdosACProtectionForUMC_acDmask, _addDdosACProtectionForUMC_protocol, _addDdosACProtectionForUMC_srcPortMin, _addDdosACProtectionForUMC_srcPortMax, _addDdosACProtectionForUMC_dstPortMin, _addDdosACProtectionForUMC_dstPortMax, _addDdosACProtectionForUMC_threshold);
System.out.println("addDdosACProtectionForUMC.result=" + _addDdosACProtectionForUMC__return);
@@ -994,7 +994,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDdosHttpGetSipCusProV4ForUMC...");
java.lang.String _delDdosHttpGetSipCusProV4ForUMC_name = "";
java.lang.String _delDdosHttpGetSipCusProV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDdosHttpGetSipCusProV4ForUMC__return = port.delDdosHttpGetSipCusProV4ForUMC(_delDdosHttpGetSipCusProV4ForUMC_name, _delDdosHttpGetSipCusProV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDdosHttpGetSipCusProV4ForUMC__return = port.delDdosHttpGetSipCusProV4ForUMC(_delDdosHttpGetSipCusProV4ForUMC_name, _delDdosHttpGetSipCusProV4ForUMC_objName);
System.out.println("delDdosHttpGetSipCusProV4ForUMC.result=" + _delDdosHttpGetSipCusProV4ForUMC__return);
@@ -1002,7 +1002,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalUdpLengthFromUMC...");
java.lang.String _getDdosGlobalUdpLengthFromUMC_objName = "";
- com.dptech.umc.DdosGlobalUdpLengthForService _getDdosGlobalUdpLengthFromUMC__return = port.getDdosGlobalUdpLengthFromUMC(_getDdosGlobalUdpLengthFromUMC_objName);
+ com.dptech.dispose.DdosGlobalUdpLengthForService _getDdosGlobalUdpLengthFromUMC__return = port.getDdosGlobalUdpLengthFromUMC(_getDdosGlobalUdpLengthFromUMC_objName);
System.out.println("getDdosGlobalUdpLengthFromUMC.result=" + _getDdosGlobalUdpLengthFromUMC__return);
@@ -1011,7 +1011,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDdosACProtectionForUMC...");
java.lang.String _delDdosACProtectionForUMC_name = "";
java.lang.String _delDdosACProtectionForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDdosACProtectionForUMC__return = port.delDdosACProtectionForUMC(_delDdosACProtectionForUMC_name, _delDdosACProtectionForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDdosACProtectionForUMC__return = port.delDdosACProtectionForUMC(_delDdosACProtectionForUMC_name, _delDdosACProtectionForUMC_objName);
System.out.println("delDdosACProtectionForUMC.result=" + _delDdosACProtectionForUMC__return);
@@ -1022,7 +1022,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDdosHttpGetUriGloProV4ForUMC_name = "";
java.lang.String _modDdosHttpGetUriGloProV4ForUMC_protectthreshold = "";
java.lang.String _modDdosHttpGetUriGloProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDdosHttpGetUriGloProV4ForUMC__return = port.modDdosHttpGetUriGloProV4ForUMC(_modDdosHttpGetUriGloProV4ForUMC_objName, _modDdosHttpGetUriGloProV4ForUMC_name, _modDdosHttpGetUriGloProV4ForUMC_protectthreshold, _modDdosHttpGetUriGloProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDdosHttpGetUriGloProV4ForUMC__return = port.modDdosHttpGetUriGloProV4ForUMC(_modDdosHttpGetUriGloProV4ForUMC_objName, _modDdosHttpGetUriGloProV4ForUMC_name, _modDdosHttpGetUriGloProV4ForUMC_protectthreshold, _modDdosHttpGetUriGloProV4ForUMC_action);
System.out.println("modDdosHttpGetUriGloProV4ForUMC.result=" + _modDdosHttpGetUriGloProV4ForUMC__return);
@@ -1031,7 +1031,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDdosHttpGetUriGloProV4ForUMC...");
java.lang.String _delDdosHttpGetUriGloProV4ForUMC_name = "";
java.lang.String _delDdosHttpGetUriGloProV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDdosHttpGetUriGloProV4ForUMC__return = port.delDdosHttpGetUriGloProV4ForUMC(_delDdosHttpGetUriGloProV4ForUMC_name, _delDdosHttpGetUriGloProV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDdosHttpGetUriGloProV4ForUMC__return = port.delDdosHttpGetUriGloProV4ForUMC(_delDdosHttpGetUriGloProV4ForUMC_name, _delDdosHttpGetUriGloProV4ForUMC_objName);
System.out.println("delDdosHttpGetUriGloProV4ForUMC.result=" + _delDdosHttpGetUriGloProV4ForUMC__return);
@@ -1040,7 +1040,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDnsDomainGlobalV4ForUMC...");
java.lang.String _delDnsDomainGlobalV4ForUMC_name = "";
java.lang.String _delDnsDomainGlobalV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDnsDomainGlobalV4ForUMC__return = port.delDnsDomainGlobalV4ForUMC(_delDnsDomainGlobalV4ForUMC_name, _delDnsDomainGlobalV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDnsDomainGlobalV4ForUMC__return = port.delDnsDomainGlobalV4ForUMC(_delDnsDomainGlobalV4ForUMC_name, _delDnsDomainGlobalV4ForUMC_objName);
System.out.println("delDnsDomainGlobalV4ForUMC.result=" + _delDnsDomainGlobalV4ForUMC__return);
@@ -1049,7 +1049,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDnsDomainCustomV4ForUMC...");
java.lang.String _delDnsDomainCustomV4ForUMC_name = "";
java.lang.String _delDnsDomainCustomV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDnsDomainCustomV4ForUMC__return = port.delDnsDomainCustomV4ForUMC(_delDnsDomainCustomV4ForUMC_name, _delDnsDomainCustomV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDnsDomainCustomV4ForUMC__return = port.delDnsDomainCustomV4ForUMC(_delDnsDomainCustomV4ForUMC_name, _delDnsDomainCustomV4ForUMC_objName);
System.out.println("delDnsDomainCustomV4ForUMC.result=" + _delDnsDomainCustomV4ForUMC__return);
@@ -1057,7 +1057,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDnsSecDomainCustomV4FromUMC...");
java.lang.String _getDnsSecDomainCustomV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDnsSecDomainCustomV4ForService _getDnsSecDomainCustomV4FromUMC__return = port.getDnsSecDomainCustomV4FromUMC(_getDnsSecDomainCustomV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDnsSecDomainCustomV4ForService _getDnsSecDomainCustomV4FromUMC__return = port.getDnsSecDomainCustomV4FromUMC(_getDnsSecDomainCustomV4FromUMC_objName);
System.out.println("getDnsSecDomainCustomV4FromUMC.result=" + _getDnsSecDomainCustomV4FromUMC__return);
@@ -1072,7 +1072,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking delAnomalyDetectionStrategyForUMC...");
java.lang.String _delAnomalyDetectionStrategyForUMC_strategyName = "";
- com.dptech.umc.NtcRequestResultInfo _delAnomalyDetectionStrategyForUMC__return = port.delAnomalyDetectionStrategyForUMC(_delAnomalyDetectionStrategyForUMC_strategyName);
+ com.dptech.dispose.NtcRequestResultInfo _delAnomalyDetectionStrategyForUMC__return = port.delAnomalyDetectionStrategyForUMC(_delAnomalyDetectionStrategyForUMC_strategyName);
System.out.println("delAnomalyDetectionStrategyForUMC.result=" + _delAnomalyDetectionStrategyForUMC__return);
@@ -1081,7 +1081,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking deleteCompleteAnomalyDetectionStrategyForUMC...");
java.lang.String _deleteCompleteAnomalyDetectionStrategyForUMC_strategyName = "";
int _deleteCompleteAnomalyDetectionStrategyForUMC_direction = 0;
- com.dptech.umc.NtcRequestResultInfo _deleteCompleteAnomalyDetectionStrategyForUMC__return = port.deleteCompleteAnomalyDetectionStrategyForUMC(_deleteCompleteAnomalyDetectionStrategyForUMC_strategyName, _deleteCompleteAnomalyDetectionStrategyForUMC_direction);
+ com.dptech.dispose.NtcRequestResultInfo _deleteCompleteAnomalyDetectionStrategyForUMC__return = port.deleteCompleteAnomalyDetectionStrategyForUMC(_deleteCompleteAnomalyDetectionStrategyForUMC_strategyName, _deleteCompleteAnomalyDetectionStrategyForUMC_direction);
System.out.println("deleteCompleteAnomalyDetectionStrategyForUMC.result=" + _deleteCompleteAnomalyDetectionStrategyForUMC__return);
@@ -1091,7 +1091,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modBypassManualTractionStrategyForUMC_policyName = "";
java.lang.String _modBypassManualTractionStrategyForUMC_protectName = "";
java.lang.String _modBypassManualTractionStrategyForUMC_ipRange = "";
- com.dptech.umc.NtcRequestResultInfo _modBypassManualTractionStrategyForUMC__return = port.modBypassManualTractionStrategyForUMC(_modBypassManualTractionStrategyForUMC_policyName, _modBypassManualTractionStrategyForUMC_protectName, _modBypassManualTractionStrategyForUMC_ipRange);
+ com.dptech.dispose.NtcRequestResultInfo _modBypassManualTractionStrategyForUMC__return = port.modBypassManualTractionStrategyForUMC(_modBypassManualTractionStrategyForUMC_policyName, _modBypassManualTractionStrategyForUMC_protectName, _modBypassManualTractionStrategyForUMC_ipRange);
System.out.println("modBypassManualTractionStrategyForUMC.result=" + _modBypassManualTractionStrategyForUMC__return);
@@ -1100,7 +1100,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDnsSecDomainCustomV4ForUMC...");
java.lang.String _delDnsSecDomainCustomV4ForUMC_name = "";
java.lang.String _delDnsSecDomainCustomV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDnsSecDomainCustomV4ForUMC__return = port.delDnsSecDomainCustomV4ForUMC(_delDnsSecDomainCustomV4ForUMC_name, _delDnsSecDomainCustomV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDnsSecDomainCustomV4ForUMC__return = port.delDnsSecDomainCustomV4ForUMC(_delDnsSecDomainCustomV4ForUMC_name, _delDnsSecDomainCustomV4ForUMC_objName);
System.out.println("delDnsSecDomainCustomV4ForUMC.result=" + _delDnsSecDomainCustomV4ForUMC__return);
@@ -1110,7 +1110,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalOtherFragForUMC_objName = "";
java.lang.String _setDdosGlobalOtherFragForUMC_otherenable = "";
java.lang.String _setDdosGlobalOtherFragForUMC_otherthreshold = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalOtherFragForUMC__return = port.setDdosGlobalOtherFragForUMC(_setDdosGlobalOtherFragForUMC_objName, _setDdosGlobalOtherFragForUMC_otherenable, _setDdosGlobalOtherFragForUMC_otherthreshold);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalOtherFragForUMC__return = port.setDdosGlobalOtherFragForUMC(_setDdosGlobalOtherFragForUMC_objName, _setDdosGlobalOtherFragForUMC_otherenable, _setDdosGlobalOtherFragForUMC_otherthreshold);
System.out.println("setDdosGlobalOtherFragForUMC.result=" + _setDdosGlobalOtherFragForUMC__return);
@@ -1119,7 +1119,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking linkProtectionStrategyTemplateForUMC...");
java.lang.String _linkProtectionStrategyTemplateForUMC_protectName = "";
java.lang.String _linkProtectionStrategyTemplateForUMC_templateName = "";
- com.dptech.umc.NtcRequestResultInfo _linkProtectionStrategyTemplateForUMC__return = port.linkProtectionStrategyTemplateForUMC(_linkProtectionStrategyTemplateForUMC_protectName, _linkProtectionStrategyTemplateForUMC_templateName);
+ com.dptech.dispose.NtcRequestResultInfo _linkProtectionStrategyTemplateForUMC__return = port.linkProtectionStrategyTemplateForUMC(_linkProtectionStrategyTemplateForUMC_protectName, _linkProtectionStrategyTemplateForUMC_templateName);
System.out.println("linkProtectionStrategyTemplateForUMC.result=" + _linkProtectionStrategyTemplateForUMC__return);
@@ -1127,7 +1127,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getFingerprintUdpFromUMC...");
java.lang.String _getFingerprintUdpFromUMC_objName = "";
- com.dptech.umc.ArrayOfFingerprintUdpForService _getFingerprintUdpFromUMC__return = port.getFingerprintUdpFromUMC(_getFingerprintUdpFromUMC_objName);
+ com.dptech.dispose.ArrayOfFingerprintUdpForService _getFingerprintUdpFromUMC__return = port.getFingerprintUdpFromUMC(_getFingerprintUdpFromUMC_objName);
System.out.println("getFingerprintUdpFromUMC.result=" + _getFingerprintUdpFromUMC__return);
@@ -1147,7 +1147,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalTcpLengthForUMC_rstenable = "";
java.lang.String _setDdosGlobalTcpLengthForUMC_rstMin = "";
java.lang.String _setDdosGlobalTcpLengthForUMC_rstMax = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalTcpLengthForUMC__return = port.setDdosGlobalTcpLengthForUMC(_setDdosGlobalTcpLengthForUMC_synenable, _setDdosGlobalTcpLengthForUMC_objName, _setDdosGlobalTcpLengthForUMC_synMin, _setDdosGlobalTcpLengthForUMC_synMax, _setDdosGlobalTcpLengthForUMC_synackenable, _setDdosGlobalTcpLengthForUMC_synackMin, _setDdosGlobalTcpLengthForUMC_synackMax, _setDdosGlobalTcpLengthForUMC_finenable, _setDdosGlobalTcpLengthForUMC_finMin, _setDdosGlobalTcpLengthForUMC_finMax, _setDdosGlobalTcpLengthForUMC_rstenable, _setDdosGlobalTcpLengthForUMC_rstMin, _setDdosGlobalTcpLengthForUMC_rstMax);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalTcpLengthForUMC__return = port.setDdosGlobalTcpLengthForUMC(_setDdosGlobalTcpLengthForUMC_synenable, _setDdosGlobalTcpLengthForUMC_objName, _setDdosGlobalTcpLengthForUMC_synMin, _setDdosGlobalTcpLengthForUMC_synMax, _setDdosGlobalTcpLengthForUMC_synackenable, _setDdosGlobalTcpLengthForUMC_synackMin, _setDdosGlobalTcpLengthForUMC_synackMax, _setDdosGlobalTcpLengthForUMC_finenable, _setDdosGlobalTcpLengthForUMC_finMin, _setDdosGlobalTcpLengthForUMC_finMax, _setDdosGlobalTcpLengthForUMC_rstenable, _setDdosGlobalTcpLengthForUMC_rstMin, _setDdosGlobalTcpLengthForUMC_rstMax);
System.out.println("setDdosGlobalTcpLengthForUMC.result=" + _setDdosGlobalTcpLengthForUMC__return);
@@ -1159,7 +1159,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalIcmpPayloadForUMC_payloadThreshold = "";
java.lang.String _setDdosGlobalIcmpPayloadForUMC_payloadOffsetMin = "";
java.lang.String _setDdosGlobalIcmpPayloadForUMC_payloadOffsetMax = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalIcmpPayloadForUMC__return = port.setDdosGlobalIcmpPayloadForUMC(_setDdosGlobalIcmpPayloadForUMC_objName, _setDdosGlobalIcmpPayloadForUMC_payloadcontentenable, _setDdosGlobalIcmpPayloadForUMC_payloadThreshold, _setDdosGlobalIcmpPayloadForUMC_payloadOffsetMin, _setDdosGlobalIcmpPayloadForUMC_payloadOffsetMax);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalIcmpPayloadForUMC__return = port.setDdosGlobalIcmpPayloadForUMC(_setDdosGlobalIcmpPayloadForUMC_objName, _setDdosGlobalIcmpPayloadForUMC_payloadcontentenable, _setDdosGlobalIcmpPayloadForUMC_payloadThreshold, _setDdosGlobalIcmpPayloadForUMC_payloadOffsetMin, _setDdosGlobalIcmpPayloadForUMC_payloadOffsetMax);
System.out.println("setDdosGlobalIcmpPayloadForUMC.result=" + _setDdosGlobalIcmpPayloadForUMC__return);
@@ -1167,7 +1167,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking deleteProtectionObjectForUMC...");
java.lang.String _deleteProtectionObjectForUMC_protectionName = "";
- com.dptech.umc.NtcRequestResultInfo _deleteProtectionObjectForUMC__return = port.deleteProtectionObjectForUMC(_deleteProtectionObjectForUMC_protectionName);
+ com.dptech.dispose.NtcRequestResultInfo _deleteProtectionObjectForUMC__return = port.deleteProtectionObjectForUMC(_deleteProtectionObjectForUMC_protectionName);
System.out.println("deleteProtectionObjectForUMC.result=" + _deleteProtectionObjectForUMC__return);
@@ -1176,7 +1176,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delFingerprintOtherForUMC...");
java.lang.String _delFingerprintOtherForUMC_name = "";
java.lang.String _delFingerprintOtherForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delFingerprintOtherForUMC__return = port.delFingerprintOtherForUMC(_delFingerprintOtherForUMC_name, _delFingerprintOtherForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delFingerprintOtherForUMC__return = port.delFingerprintOtherForUMC(_delFingerprintOtherForUMC_name, _delFingerprintOtherForUMC_objName);
System.out.println("delFingerprintOtherForUMC.result=" + _delFingerprintOtherForUMC__return);
@@ -1184,14 +1184,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosHttpGetUriGloProV4FromUMC...");
java.lang.String _getDdosHttpGetUriGloProV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDdosHttpGetUriGloProV4ForService _getDdosHttpGetUriGloProV4FromUMC__return = port.getDdosHttpGetUriGloProV4FromUMC(_getDdosHttpGetUriGloProV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDdosHttpGetUriGloProV4ForService _getDdosHttpGetUriGloProV4FromUMC__return = port.getDdosHttpGetUriGloProV4FromUMC(_getDdosHttpGetUriGloProV4FromUMC_objName);
System.out.println("getDdosHttpGetUriGloProV4FromUMC.result=" + _getDdosHttpGetUriGloProV4FromUMC__return);
}
{
System.out.println("Invoking getAllProtectionTargetWithStrategyAssociationRelationshipForUMC...");
- com.dptech.umc.ArrayOfProtectionTargetWithStrategyForService _getAllProtectionTargetWithStrategyAssociationRelationshipForUMC__return = port.getAllProtectionTargetWithStrategyAssociationRelationshipForUMC();
+ com.dptech.dispose.ArrayOfProtectionTargetWithStrategyForService _getAllProtectionTargetWithStrategyAssociationRelationshipForUMC__return = port.getAllProtectionTargetWithStrategyAssociationRelationshipForUMC();
System.out.println("getAllProtectionTargetWithStrategyAssociationRelationshipForUMC.result=" + _getAllProtectionTargetWithStrategyAssociationRelationshipForUMC__return);
@@ -1204,7 +1204,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDetectionObjectForUMC_ipSegment = "";
int _addDetectionObjectForUMC_ipType = 0;
int _addDetectionObjectForUMC_cleaningType = 0;
- com.dptech.umc.NtcRequestResultInfo _addDetectionObjectForUMC__return = port.addDetectionObjectForUMC(_addDetectionObjectForUMC_detectionDevices, _addDetectionObjectForUMC_cleaningDevices, _addDetectionObjectForUMC_detectionName, _addDetectionObjectForUMC_ipSegment, _addDetectionObjectForUMC_ipType, _addDetectionObjectForUMC_cleaningType);
+ com.dptech.dispose.NtcRequestResultInfo _addDetectionObjectForUMC__return = port.addDetectionObjectForUMC(_addDetectionObjectForUMC_detectionDevices, _addDetectionObjectForUMC_cleaningDevices, _addDetectionObjectForUMC_detectionName, _addDetectionObjectForUMC_ipSegment, _addDetectionObjectForUMC_ipType, _addDetectionObjectForUMC_cleaningType);
System.out.println("addDetectionObjectForUMC.result=" + _addDetectionObjectForUMC__return);
@@ -1215,7 +1215,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modifyProtectionObjectForUMC_ipSegment = "";
int _modifyProtectionObjectForUMC_ipType = 0;
int _modifyProtectionObjectForUMC_cleaningType = 0;
- com.dptech.umc.NtcRequestResultInfo _modifyProtectionObjectForUMC__return = port.modifyProtectionObjectForUMC(_modifyProtectionObjectForUMC_protectionName, _modifyProtectionObjectForUMC_ipSegment, _modifyProtectionObjectForUMC_ipType, _modifyProtectionObjectForUMC_cleaningType);
+ com.dptech.dispose.NtcRequestResultInfo _modifyProtectionObjectForUMC__return = port.modifyProtectionObjectForUMC(_modifyProtectionObjectForUMC_protectionName, _modifyProtectionObjectForUMC_ipSegment, _modifyProtectionObjectForUMC_ipType, _modifyProtectionObjectForUMC_cleaningType);
System.out.println("modifyProtectionObjectForUMC.result=" + _modifyProtectionObjectForUMC__return);
@@ -1225,7 +1225,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalUdpFragForUMC_objName = "";
java.lang.String _setDdosGlobalUdpFragForUMC_udpenable = "";
java.lang.String _setDdosGlobalUdpFragForUMC_udpthreshold = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalUdpFragForUMC__return = port.setDdosGlobalUdpFragForUMC(_setDdosGlobalUdpFragForUMC_objName, _setDdosGlobalUdpFragForUMC_udpenable, _setDdosGlobalUdpFragForUMC_udpthreshold);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalUdpFragForUMC__return = port.setDdosGlobalUdpFragForUMC(_setDdosGlobalUdpFragForUMC_objName, _setDdosGlobalUdpFragForUMC_udpenable, _setDdosGlobalUdpFragForUMC_udpthreshold);
System.out.println("setDdosGlobalUdpFragForUMC.result=" + _setDdosGlobalUdpFragForUMC__return);
@@ -1236,7 +1236,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalIcmpLengthForUMC_lengthenable = "";
java.lang.String _setDdosGlobalIcmpLengthForUMC_minlength = "";
java.lang.String _setDdosGlobalIcmpLengthForUMC_maxlength = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalIcmpLengthForUMC__return = port.setDdosGlobalIcmpLengthForUMC(_setDdosGlobalIcmpLengthForUMC_objName, _setDdosGlobalIcmpLengthForUMC_lengthenable, _setDdosGlobalIcmpLengthForUMC_minlength, _setDdosGlobalIcmpLengthForUMC_maxlength);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalIcmpLengthForUMC__return = port.setDdosGlobalIcmpLengthForUMC(_setDdosGlobalIcmpLengthForUMC_objName, _setDdosGlobalIcmpLengthForUMC_lengthenable, _setDdosGlobalIcmpLengthForUMC_minlength, _setDdosGlobalIcmpLengthForUMC_maxlength);
System.out.println("setDdosGlobalIcmpLengthForUMC.result=" + _setDdosGlobalIcmpLengthForUMC__return);
@@ -1244,7 +1244,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalUdpFragFromUMC...");
java.lang.String _getDdosGlobalUdpFragFromUMC_objName = "";
- com.dptech.umc.DdosGlobalUdpFragForService _getDdosGlobalUdpFragFromUMC__return = port.getDdosGlobalUdpFragFromUMC(_getDdosGlobalUdpFragFromUMC_objName);
+ com.dptech.dispose.DdosGlobalUdpFragForService _getDdosGlobalUdpFragFromUMC__return = port.getDdosGlobalUdpFragFromUMC(_getDdosGlobalUdpFragFromUMC_objName);
System.out.println("getDdosGlobalUdpFragFromUMC.result=" + _getDdosGlobalUdpFragFromUMC__return);
@@ -1252,7 +1252,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getFingerprintTcpFromUMC...");
java.lang.String _getFingerprintTcpFromUMC_objName = "";
- com.dptech.umc.ArrayOfFingerprintTcpForService _getFingerprintTcpFromUMC__return = port.getFingerprintTcpFromUMC(_getFingerprintTcpFromUMC_objName);
+ com.dptech.dispose.ArrayOfFingerprintTcpForService _getFingerprintTcpFromUMC__return = port.getFingerprintTcpFromUMC(_getFingerprintTcpFromUMC_objName);
System.out.println("getFingerprintTcpFromUMC.result=" + _getFingerprintTcpFromUMC__return);
@@ -1261,7 +1261,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking setDdosGlobalTcpFlagForUMC...");
java.lang.String _setDdosGlobalTcpFlagForUMC_objName = "";
java.lang.String _setDdosGlobalTcpFlagForUMC_tcpFlagenable = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalTcpFlagForUMC__return = port.setDdosGlobalTcpFlagForUMC(_setDdosGlobalTcpFlagForUMC_objName, _setDdosGlobalTcpFlagForUMC_tcpFlagenable);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalTcpFlagForUMC__return = port.setDdosGlobalTcpFlagForUMC(_setDdosGlobalTcpFlagForUMC_objName, _setDdosGlobalTcpFlagForUMC_tcpFlagenable);
System.out.println("setDdosGlobalTcpFlagForUMC.result=" + _setDdosGlobalTcpFlagForUMC__return);
@@ -1273,7 +1273,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
int _addBlackHoleAutoStrategyForUMC_detectMode = 0;
int _addBlackHoleAutoStrategyForUMC_blackHoleThreshold = 0;
int _addBlackHoleAutoStrategyForUMC_blackHoleTime = 0;
- com.dptech.umc.NtcRequestResultInfo _addBlackHoleAutoStrategyForUMC__return = port.addBlackHoleAutoStrategyForUMC(_addBlackHoleAutoStrategyForUMC_policyName, _addBlackHoleAutoStrategyForUMC_detectName, _addBlackHoleAutoStrategyForUMC_detectMode, _addBlackHoleAutoStrategyForUMC_blackHoleThreshold, _addBlackHoleAutoStrategyForUMC_blackHoleTime);
+ com.dptech.dispose.NtcRequestResultInfo _addBlackHoleAutoStrategyForUMC__return = port.addBlackHoleAutoStrategyForUMC(_addBlackHoleAutoStrategyForUMC_policyName, _addBlackHoleAutoStrategyForUMC_detectName, _addBlackHoleAutoStrategyForUMC_detectMode, _addBlackHoleAutoStrategyForUMC_blackHoleThreshold, _addBlackHoleAutoStrategyForUMC_blackHoleTime);
System.out.println("addBlackHoleAutoStrategyForUMC.result=" + _addBlackHoleAutoStrategyForUMC__return);
@@ -1282,7 +1282,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking getCompleteAnomalyDetectionStrategyFromUMC...");
java.lang.String _getCompleteAnomalyDetectionStrategyFromUMC_strategyName = "";
int _getCompleteAnomalyDetectionStrategyFromUMC_direction = 0;
- com.dptech.umc.AnomalyDetectionStrategy _getCompleteAnomalyDetectionStrategyFromUMC__return = port.getCompleteAnomalyDetectionStrategyFromUMC(_getCompleteAnomalyDetectionStrategyFromUMC_strategyName, _getCompleteAnomalyDetectionStrategyFromUMC_direction);
+ com.dptech.dispose.AnomalyDetectionStrategy _getCompleteAnomalyDetectionStrategyFromUMC__return = port.getCompleteAnomalyDetectionStrategyFromUMC(_getCompleteAnomalyDetectionStrategyFromUMC_strategyName, _getCompleteAnomalyDetectionStrategyFromUMC_direction);
System.out.println("getCompleteAnomalyDetectionStrategyFromUMC.result=" + _getCompleteAnomalyDetectionStrategyFromUMC__return);
@@ -1314,7 +1314,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modFingerprintOtherForUMC_custom3 = "";
java.lang.String _modFingerprintOtherForUMC_threshold = "";
java.lang.String _modFingerprintOtherForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modFingerprintOtherForUMC__return = port.modFingerprintOtherForUMC(_modFingerprintOtherForUMC_objName, _modFingerprintOtherForUMC_name, _modFingerprintOtherForUMC_keytype1, _modFingerprintOtherForUMC_keyoffset1, _modFingerprintOtherForUMC_keylength1, _modFingerprintOtherForUMC_ip1, _modFingerprintOtherForUMC_mask1, _modFingerprintOtherForUMC_enable1, _modFingerprintOtherForUMC_custom1, _modFingerprintOtherForUMC_keytype2, _modFingerprintOtherForUMC_keyoffset2, _modFingerprintOtherForUMC_keylength2, _modFingerprintOtherForUMC_ip2, _modFingerprintOtherForUMC_mask2, _modFingerprintOtherForUMC_enable2, _modFingerprintOtherForUMC_custom2, _modFingerprintOtherForUMC_keytype3, _modFingerprintOtherForUMC_keyoffset3, _modFingerprintOtherForUMC_keylength3, _modFingerprintOtherForUMC_ip3, _modFingerprintOtherForUMC_mask3, _modFingerprintOtherForUMC_enable3, _modFingerprintOtherForUMC_custom3, _modFingerprintOtherForUMC_threshold, _modFingerprintOtherForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modFingerprintOtherForUMC__return = port.modFingerprintOtherForUMC(_modFingerprintOtherForUMC_objName, _modFingerprintOtherForUMC_name, _modFingerprintOtherForUMC_keytype1, _modFingerprintOtherForUMC_keyoffset1, _modFingerprintOtherForUMC_keylength1, _modFingerprintOtherForUMC_ip1, _modFingerprintOtherForUMC_mask1, _modFingerprintOtherForUMC_enable1, _modFingerprintOtherForUMC_custom1, _modFingerprintOtherForUMC_keytype2, _modFingerprintOtherForUMC_keyoffset2, _modFingerprintOtherForUMC_keylength2, _modFingerprintOtherForUMC_ip2, _modFingerprintOtherForUMC_mask2, _modFingerprintOtherForUMC_enable2, _modFingerprintOtherForUMC_custom2, _modFingerprintOtherForUMC_keytype3, _modFingerprintOtherForUMC_keyoffset3, _modFingerprintOtherForUMC_keylength3, _modFingerprintOtherForUMC_ip3, _modFingerprintOtherForUMC_mask3, _modFingerprintOtherForUMC_enable3, _modFingerprintOtherForUMC_custom3, _modFingerprintOtherForUMC_threshold, _modFingerprintOtherForUMC_action);
System.out.println("modFingerprintOtherForUMC.result=" + _modFingerprintOtherForUMC__return);
@@ -1326,7 +1326,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDdosHttpGetUriCusProV4ForUMC_uri = "";
java.lang.String _addDdosHttpGetUriCusProV4ForUMC_protectthreshold = "";
java.lang.String _addDdosHttpGetUriCusProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDdosHttpGetUriCusProV4ForUMC__return = port.addDdosHttpGetUriCusProV4ForUMC(_addDdosHttpGetUriCusProV4ForUMC_objName, _addDdosHttpGetUriCusProV4ForUMC_name, _addDdosHttpGetUriCusProV4ForUMC_uri, _addDdosHttpGetUriCusProV4ForUMC_protectthreshold, _addDdosHttpGetUriCusProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDdosHttpGetUriCusProV4ForUMC__return = port.addDdosHttpGetUriCusProV4ForUMC(_addDdosHttpGetUriCusProV4ForUMC_objName, _addDdosHttpGetUriCusProV4ForUMC_name, _addDdosHttpGetUriCusProV4ForUMC_uri, _addDdosHttpGetUriCusProV4ForUMC_protectthreshold, _addDdosHttpGetUriCusProV4ForUMC_action);
System.out.println("addDdosHttpGetUriCusProV4ForUMC.result=" + _addDdosHttpGetUriCusProV4ForUMC__return);
@@ -1336,14 +1336,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addBypassManualTractionStrategyForUMC_policyName = "";
java.lang.String _addBypassManualTractionStrategyForUMC_protectName = "";
java.lang.String _addBypassManualTractionStrategyForUMC_ipRange = "";
- com.dptech.umc.NtcRequestResultInfo _addBypassManualTractionStrategyForUMC__return = port.addBypassManualTractionStrategyForUMC(_addBypassManualTractionStrategyForUMC_policyName, _addBypassManualTractionStrategyForUMC_protectName, _addBypassManualTractionStrategyForUMC_ipRange);
+ com.dptech.dispose.NtcRequestResultInfo _addBypassManualTractionStrategyForUMC__return = port.addBypassManualTractionStrategyForUMC(_addBypassManualTractionStrategyForUMC_policyName, _addBypassManualTractionStrategyForUMC_protectName, _addBypassManualTractionStrategyForUMC_ipRange);
System.out.println("addBypassManualTractionStrategyForUMC.result=" + _addBypassManualTractionStrategyForUMC__return);
}
{
System.out.println("Invoking getAllDetectionObjectFromUMC...");
- com.dptech.umc.ArrayOfDetectionObjectDataForService _getAllDetectionObjectFromUMC__return = port.getAllDetectionObjectFromUMC();
+ com.dptech.dispose.ArrayOfDetectionObjectDataForService _getAllDetectionObjectFromUMC__return = port.getAllDetectionObjectFromUMC();
System.out.println("getAllDetectionObjectFromUMC.result=" + _getAllDetectionObjectFromUMC__return);
@@ -1355,7 +1355,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDdosHttpGetSipCusProV4ForUMC_sip = "";
java.lang.String _modDdosHttpGetSipCusProV4ForUMC_protectthreshold = "";
java.lang.String _modDdosHttpGetSipCusProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDdosHttpGetSipCusProV4ForUMC__return = port.modDdosHttpGetSipCusProV4ForUMC(_modDdosHttpGetSipCusProV4ForUMC_objName, _modDdosHttpGetSipCusProV4ForUMC_name, _modDdosHttpGetSipCusProV4ForUMC_sip, _modDdosHttpGetSipCusProV4ForUMC_protectthreshold, _modDdosHttpGetSipCusProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDdosHttpGetSipCusProV4ForUMC__return = port.modDdosHttpGetSipCusProV4ForUMC(_modDdosHttpGetSipCusProV4ForUMC_objName, _modDdosHttpGetSipCusProV4ForUMC_name, _modDdosHttpGetSipCusProV4ForUMC_sip, _modDdosHttpGetSipCusProV4ForUMC_protectthreshold, _modDdosHttpGetSipCusProV4ForUMC_action);
System.out.println("modDdosHttpGetSipCusProV4ForUMC.result=" + _modDdosHttpGetSipCusProV4ForUMC__return);
@@ -1363,7 +1363,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDnsSecDomainGlobalV4FromUMC...");
java.lang.String _getDnsSecDomainGlobalV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDnsSecDomainGlobalV4ForService _getDnsSecDomainGlobalV4FromUMC__return = port.getDnsSecDomainGlobalV4FromUMC(_getDnsSecDomainGlobalV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDnsSecDomainGlobalV4ForService _getDnsSecDomainGlobalV4FromUMC__return = port.getDnsSecDomainGlobalV4FromUMC(_getDnsSecDomainGlobalV4FromUMC_objName);
System.out.println("getDnsSecDomainGlobalV4FromUMC.result=" + _getDnsSecDomainGlobalV4FromUMC__return);
@@ -1372,7 +1372,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDdosCCuserGroupV4ForUMC...");
java.lang.String _delDdosCCuserGroupV4ForUMC_name = "";
java.lang.String _delDdosCCuserGroupV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDdosCCuserGroupV4ForUMC__return = port.delDdosCCuserGroupV4ForUMC(_delDdosCCuserGroupV4ForUMC_name, _delDdosCCuserGroupV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDdosCCuserGroupV4ForUMC__return = port.delDdosCCuserGroupV4ForUMC(_delDdosCCuserGroupV4ForUMC_name, _delDdosCCuserGroupV4ForUMC_objName);
System.out.println("delDdosCCuserGroupV4ForUMC.result=" + _delDdosCCuserGroupV4ForUMC__return);
@@ -1380,7 +1380,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalOtherFragFromUMC...");
java.lang.String _getDdosGlobalOtherFragFromUMC_objName = "";
- com.dptech.umc.DdosGlobalOtherFragForService _getDdosGlobalOtherFragFromUMC__return = port.getDdosGlobalOtherFragFromUMC(_getDdosGlobalOtherFragFromUMC_objName);
+ com.dptech.dispose.DdosGlobalOtherFragForService _getDdosGlobalOtherFragFromUMC__return = port.getDdosGlobalOtherFragFromUMC(_getDdosGlobalOtherFragFromUMC_objName);
System.out.println("getDdosGlobalOtherFragFromUMC.result=" + _getDdosGlobalOtherFragFromUMC__return);
@@ -1412,7 +1412,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modFingerprintIcmpForUMC_custom3 = "";
java.lang.String _modFingerprintIcmpForUMC_threshold = "";
java.lang.String _modFingerprintIcmpForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modFingerprintIcmpForUMC__return = port.modFingerprintIcmpForUMC(_modFingerprintIcmpForUMC_objName, _modFingerprintIcmpForUMC_name, _modFingerprintIcmpForUMC_keytype1, _modFingerprintIcmpForUMC_keyoffset1, _modFingerprintIcmpForUMC_keylength1, _modFingerprintIcmpForUMC_ip1, _modFingerprintIcmpForUMC_mask1, _modFingerprintIcmpForUMC_enable1, _modFingerprintIcmpForUMC_custom1, _modFingerprintIcmpForUMC_keytype2, _modFingerprintIcmpForUMC_keyoffset2, _modFingerprintIcmpForUMC_keylength2, _modFingerprintIcmpForUMC_ip2, _modFingerprintIcmpForUMC_mask2, _modFingerprintIcmpForUMC_enable2, _modFingerprintIcmpForUMC_custom2, _modFingerprintIcmpForUMC_keytype3, _modFingerprintIcmpForUMC_keyoffset3, _modFingerprintIcmpForUMC_keylength3, _modFingerprintIcmpForUMC_ip3, _modFingerprintIcmpForUMC_mask3, _modFingerprintIcmpForUMC_enable3, _modFingerprintIcmpForUMC_custom3, _modFingerprintIcmpForUMC_threshold, _modFingerprintIcmpForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modFingerprintIcmpForUMC__return = port.modFingerprintIcmpForUMC(_modFingerprintIcmpForUMC_objName, _modFingerprintIcmpForUMC_name, _modFingerprintIcmpForUMC_keytype1, _modFingerprintIcmpForUMC_keyoffset1, _modFingerprintIcmpForUMC_keylength1, _modFingerprintIcmpForUMC_ip1, _modFingerprintIcmpForUMC_mask1, _modFingerprintIcmpForUMC_enable1, _modFingerprintIcmpForUMC_custom1, _modFingerprintIcmpForUMC_keytype2, _modFingerprintIcmpForUMC_keyoffset2, _modFingerprintIcmpForUMC_keylength2, _modFingerprintIcmpForUMC_ip2, _modFingerprintIcmpForUMC_mask2, _modFingerprintIcmpForUMC_enable2, _modFingerprintIcmpForUMC_custom2, _modFingerprintIcmpForUMC_keytype3, _modFingerprintIcmpForUMC_keyoffset3, _modFingerprintIcmpForUMC_keylength3, _modFingerprintIcmpForUMC_ip3, _modFingerprintIcmpForUMC_mask3, _modFingerprintIcmpForUMC_enable3, _modFingerprintIcmpForUMC_custom3, _modFingerprintIcmpForUMC_threshold, _modFingerprintIcmpForUMC_action);
System.out.println("modFingerprintIcmpForUMC.result=" + _modFingerprintIcmpForUMC__return);
@@ -1420,7 +1420,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking stopBlackHoleStrategyForUMC...");
java.lang.String _stopBlackHoleStrategyForUMC_policyName = "";
- com.dptech.umc.NtcRequestResultInfo _stopBlackHoleStrategyForUMC__return = port.stopBlackHoleStrategyForUMC(_stopBlackHoleStrategyForUMC_policyName);
+ com.dptech.dispose.NtcRequestResultInfo _stopBlackHoleStrategyForUMC__return = port.stopBlackHoleStrategyForUMC(_stopBlackHoleStrategyForUMC_policyName);
System.out.println("stopBlackHoleStrategyForUMC.result=" + _stopBlackHoleStrategyForUMC__return);
@@ -1428,14 +1428,14 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDnsSipGlobalV4FromUMC...");
java.lang.String _getDnsSipGlobalV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDnsSipGlobalV4ForService _getDnsSipGlobalV4FromUMC__return = port.getDnsSipGlobalV4FromUMC(_getDnsSipGlobalV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDnsSipGlobalV4ForService _getDnsSipGlobalV4FromUMC__return = port.getDnsSipGlobalV4FromUMC(_getDnsSipGlobalV4FromUMC_objName);
System.out.println("getDnsSipGlobalV4FromUMC.result=" + _getDnsSipGlobalV4FromUMC__return);
}
{
System.out.println("Invoking getAllProtectionObjectFromUMC...");
- com.dptech.umc.ArrayOfProtectionObjectDataForService _getAllProtectionObjectFromUMC__return = port.getAllProtectionObjectFromUMC();
+ com.dptech.dispose.ArrayOfProtectionObjectDataForService _getAllProtectionObjectFromUMC__return = port.getAllProtectionObjectFromUMC();
System.out.println("getAllProtectionObjectFromUMC.result=" + _getAllProtectionObjectFromUMC__return);
@@ -1448,7 +1448,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalUdpPayloadForUMC_payloadThreshold = "";
java.lang.String _setDdosGlobalUdpPayloadForUMC_payloadOffsetMin = "";
java.lang.String _setDdosGlobalUdpPayloadForUMC_payloadOffsetMax = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalUdpPayloadForUMC__return = port.setDdosGlobalUdpPayloadForUMC(_setDdosGlobalUdpPayloadForUMC_objName, _setDdosGlobalUdpPayloadForUMC_payloademptyenable, _setDdosGlobalUdpPayloadForUMC_payloadcontentenable, _setDdosGlobalUdpPayloadForUMC_payloadThreshold, _setDdosGlobalUdpPayloadForUMC_payloadOffsetMin, _setDdosGlobalUdpPayloadForUMC_payloadOffsetMax);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalUdpPayloadForUMC__return = port.setDdosGlobalUdpPayloadForUMC(_setDdosGlobalUdpPayloadForUMC_objName, _setDdosGlobalUdpPayloadForUMC_payloademptyenable, _setDdosGlobalUdpPayloadForUMC_payloadcontentenable, _setDdosGlobalUdpPayloadForUMC_payloadThreshold, _setDdosGlobalUdpPayloadForUMC_payloadOffsetMin, _setDdosGlobalUdpPayloadForUMC_payloadOffsetMax);
System.out.println("setDdosGlobalUdpPayloadForUMC.result=" + _setDdosGlobalUdpPayloadForUMC__return);
@@ -1456,7 +1456,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosHttpGetUriCusProV4FromUMC...");
java.lang.String _getDdosHttpGetUriCusProV4FromUMC_objName = "";
- com.dptech.umc.ArrayOfDdosHttpGetUriCusProV4ForService _getDdosHttpGetUriCusProV4FromUMC__return = port.getDdosHttpGetUriCusProV4FromUMC(_getDdosHttpGetUriCusProV4FromUMC_objName);
+ com.dptech.dispose.ArrayOfDdosHttpGetUriCusProV4ForService _getDdosHttpGetUriCusProV4FromUMC__return = port.getDdosHttpGetUriCusProV4FromUMC(_getDdosHttpGetUriCusProV4FromUMC_objName);
System.out.println("getDdosHttpGetUriCusProV4FromUMC.result=" + _getDdosHttpGetUriCusProV4FromUMC__return);
@@ -1464,7 +1464,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking delBypassManualTractionStrategyForUMC...");
java.lang.String _delBypassManualTractionStrategyForUMC_policyName = "";
- com.dptech.umc.NtcRequestResultInfo _delBypassManualTractionStrategyForUMC__return = port.delBypassManualTractionStrategyForUMC(_delBypassManualTractionStrategyForUMC_policyName);
+ com.dptech.dispose.NtcRequestResultInfo _delBypassManualTractionStrategyForUMC__return = port.delBypassManualTractionStrategyForUMC(_delBypassManualTractionStrategyForUMC_policyName);
System.out.println("delBypassManualTractionStrategyForUMC.result=" + _delBypassManualTractionStrategyForUMC__return);
@@ -1472,7 +1472,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getFingerprintOtherFromUMC...");
java.lang.String _getFingerprintOtherFromUMC_objName = "";
- com.dptech.umc.ArrayOfFingerprintOtherForService _getFingerprintOtherFromUMC__return = port.getFingerprintOtherFromUMC(_getFingerprintOtherFromUMC_objName);
+ com.dptech.dispose.ArrayOfFingerprintOtherForService _getFingerprintOtherFromUMC__return = port.getFingerprintOtherFromUMC(_getFingerprintOtherFromUMC_objName);
System.out.println("getFingerprintOtherFromUMC.result=" + _getFingerprintOtherFromUMC__return);
@@ -1482,7 +1482,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _stopAbnormalTaskForUMC_abnormalIp = "";
int _stopAbnormalTaskForUMC_attackType = 0;
int _stopAbnormalTaskForUMC_direction = 0;
- com.dptech.umc.NtcRequestResultInfo _stopAbnormalTaskForUMC__return = port.stopAbnormalTaskForUMC(_stopAbnormalTaskForUMC_abnormalIp, _stopAbnormalTaskForUMC_attackType, _stopAbnormalTaskForUMC_direction);
+ com.dptech.dispose.NtcRequestResultInfo _stopAbnormalTaskForUMC__return = port.stopAbnormalTaskForUMC(_stopAbnormalTaskForUMC_abnormalIp, _stopAbnormalTaskForUMC_attackType, _stopAbnormalTaskForUMC_direction);
System.out.println("stopAbnormalTaskForUMC.result=" + _stopAbnormalTaskForUMC__return);
@@ -1493,7 +1493,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDdosHttpGetSipGloProV4ForUMC_name = "";
java.lang.String _addDdosHttpGetSipGloProV4ForUMC_protectthreshold = "";
java.lang.String _addDdosHttpGetSipGloProV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDdosHttpGetSipGloProV4ForUMC__return = port.addDdosHttpGetSipGloProV4ForUMC(_addDdosHttpGetSipGloProV4ForUMC_objName, _addDdosHttpGetSipGloProV4ForUMC_name, _addDdosHttpGetSipGloProV4ForUMC_protectthreshold, _addDdosHttpGetSipGloProV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDdosHttpGetSipGloProV4ForUMC__return = port.addDdosHttpGetSipGloProV4ForUMC(_addDdosHttpGetSipGloProV4ForUMC_objName, _addDdosHttpGetSipGloProV4ForUMC_name, _addDdosHttpGetSipGloProV4ForUMC_protectthreshold, _addDdosHttpGetSipGloProV4ForUMC_action);
System.out.println("addDdosHttpGetSipGloProV4ForUMC.result=" + _addDdosHttpGetSipGloProV4ForUMC__return);
@@ -1503,7 +1503,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalTcpStateForUMC_objName = "";
java.lang.String _setDdosGlobalTcpStateForUMC_statenable = "";
java.lang.String _setDdosGlobalTcpStateForUMC_chosen = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalTcpStateForUMC__return = port.setDdosGlobalTcpStateForUMC(_setDdosGlobalTcpStateForUMC_objName, _setDdosGlobalTcpStateForUMC_statenable, _setDdosGlobalTcpStateForUMC_chosen);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalTcpStateForUMC__return = port.setDdosGlobalTcpStateForUMC(_setDdosGlobalTcpStateForUMC_objName, _setDdosGlobalTcpStateForUMC_statenable, _setDdosGlobalTcpStateForUMC_chosen);
System.out.println("setDdosGlobalTcpStateForUMC.result=" + _setDdosGlobalTcpStateForUMC__return);
@@ -1516,7 +1516,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addProtectionObjectForUMC_ipSegment = "";
int _addProtectionObjectForUMC_ipType = 0;
int _addProtectionObjectForUMC_cleaningType = 0;
- com.dptech.umc.NtcRequestResultInfo _addProtectionObjectForUMC__return = port.addProtectionObjectForUMC(_addProtectionObjectForUMC_detectionDevices, _addProtectionObjectForUMC_cleaningDevices, _addProtectionObjectForUMC_protectionName, _addProtectionObjectForUMC_ipSegment, _addProtectionObjectForUMC_ipType, _addProtectionObjectForUMC_cleaningType);
+ com.dptech.dispose.NtcRequestResultInfo _addProtectionObjectForUMC__return = port.addProtectionObjectForUMC(_addProtectionObjectForUMC_detectionDevices, _addProtectionObjectForUMC_cleaningDevices, _addProtectionObjectForUMC_protectionName, _addProtectionObjectForUMC_ipSegment, _addProtectionObjectForUMC_ipType, _addProtectionObjectForUMC_cleaningType);
System.out.println("addProtectionObjectForUMC.result=" + _addProtectionObjectForUMC__return);
@@ -1528,7 +1528,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDnsSecDomainCustomV4ForUMC_domain = "";
java.lang.String _modDnsSecDomainCustomV4ForUMC_protectthreshold = "";
java.lang.String _modDnsSecDomainCustomV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _modDnsSecDomainCustomV4ForUMC__return = port.modDnsSecDomainCustomV4ForUMC(_modDnsSecDomainCustomV4ForUMC_objName, _modDnsSecDomainCustomV4ForUMC_name, _modDnsSecDomainCustomV4ForUMC_domain, _modDnsSecDomainCustomV4ForUMC_protectthreshold, _modDnsSecDomainCustomV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _modDnsSecDomainCustomV4ForUMC__return = port.modDnsSecDomainCustomV4ForUMC(_modDnsSecDomainCustomV4ForUMC_objName, _modDnsSecDomainCustomV4ForUMC_name, _modDnsSecDomainCustomV4ForUMC_domain, _modDnsSecDomainCustomV4ForUMC_protectthreshold, _modDnsSecDomainCustomV4ForUMC_action);
System.out.println("modDnsSecDomainCustomV4ForUMC.result=" + _modDnsSecDomainCustomV4ForUMC__return);
@@ -1536,7 +1536,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking deleteDetectionObjectForUMC...");
java.lang.String _deleteDetectionObjectForUMC_detectionName = "";
- com.dptech.umc.NtcRequestResultInfo _deleteDetectionObjectForUMC__return = port.deleteDetectionObjectForUMC(_deleteDetectionObjectForUMC_detectionName);
+ com.dptech.dispose.NtcRequestResultInfo _deleteDetectionObjectForUMC__return = port.deleteDetectionObjectForUMC(_deleteDetectionObjectForUMC_detectionName);
System.out.println("deleteDetectionObjectForUMC.result=" + _deleteDetectionObjectForUMC__return);
@@ -1545,7 +1545,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delFingerprintUdpForUMC...");
java.lang.String _delFingerprintUdpForUMC_name = "";
java.lang.String _delFingerprintUdpForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delFingerprintUdpForUMC__return = port.delFingerprintUdpForUMC(_delFingerprintUdpForUMC_name, _delFingerprintUdpForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delFingerprintUdpForUMC__return = port.delFingerprintUdpForUMC(_delFingerprintUdpForUMC_name, _delFingerprintUdpForUMC_objName);
System.out.println("delFingerprintUdpForUMC.result=" + _delFingerprintUdpForUMC__return);
@@ -1557,7 +1557,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalAckPayloadForUMC_payloadThreshold = "";
java.lang.String _setDdosGlobalAckPayloadForUMC_payloadOffsetMin = "";
java.lang.String _setDdosGlobalAckPayloadForUMC_payloadOffsetMax = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalAckPayloadForUMC__return = port.setDdosGlobalAckPayloadForUMC(_setDdosGlobalAckPayloadForUMC_objName, _setDdosGlobalAckPayloadForUMC_payloadcontentenable, _setDdosGlobalAckPayloadForUMC_payloadThreshold, _setDdosGlobalAckPayloadForUMC_payloadOffsetMin, _setDdosGlobalAckPayloadForUMC_payloadOffsetMax);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalAckPayloadForUMC__return = port.setDdosGlobalAckPayloadForUMC(_setDdosGlobalAckPayloadForUMC_objName, _setDdosGlobalAckPayloadForUMC_payloadcontentenable, _setDdosGlobalAckPayloadForUMC_payloadThreshold, _setDdosGlobalAckPayloadForUMC_payloadOffsetMin, _setDdosGlobalAckPayloadForUMC_payloadOffsetMax);
System.out.println("setDdosGlobalAckPayloadForUMC.result=" + _setDdosGlobalAckPayloadForUMC__return);
@@ -1569,7 +1569,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _modDdosDnsRetryProtectForUMC_action = "";
java.lang.String _modDdosDnsRetryProtectForUMC_alertthreshold = "";
java.lang.String _modDdosDnsRetryProtectForUMC_protectthreshold = "";
- com.dptech.umc.NtcRequestResultInfo _modDdosDnsRetryProtectForUMC__return = port.modDdosDnsRetryProtectForUMC(_modDdosDnsRetryProtectForUMC_objName, _modDdosDnsRetryProtectForUMC_name, _modDdosDnsRetryProtectForUMC_action, _modDdosDnsRetryProtectForUMC_alertthreshold, _modDdosDnsRetryProtectForUMC_protectthreshold);
+ com.dptech.dispose.NtcRequestResultInfo _modDdosDnsRetryProtectForUMC__return = port.modDdosDnsRetryProtectForUMC(_modDdosDnsRetryProtectForUMC_objName, _modDdosDnsRetryProtectForUMC_name, _modDdosDnsRetryProtectForUMC_action, _modDdosDnsRetryProtectForUMC_alertthreshold, _modDdosDnsRetryProtectForUMC_protectthreshold);
System.out.println("modDdosDnsRetryProtectForUMC.result=" + _modDdosDnsRetryProtectForUMC__return);
@@ -1581,7 +1581,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addDnsDomainCustomV4ForUMC_domain = "";
java.lang.String _addDnsDomainCustomV4ForUMC_protectthreshold = "";
java.lang.String _addDnsDomainCustomV4ForUMC_action = "";
- com.dptech.umc.NtcRequestResultInfo _addDnsDomainCustomV4ForUMC__return = port.addDnsDomainCustomV4ForUMC(_addDnsDomainCustomV4ForUMC_objName, _addDnsDomainCustomV4ForUMC_name, _addDnsDomainCustomV4ForUMC_domain, _addDnsDomainCustomV4ForUMC_protectthreshold, _addDnsDomainCustomV4ForUMC_action);
+ com.dptech.dispose.NtcRequestResultInfo _addDnsDomainCustomV4ForUMC__return = port.addDnsDomainCustomV4ForUMC(_addDnsDomainCustomV4ForUMC_objName, _addDnsDomainCustomV4ForUMC_name, _addDnsDomainCustomV4ForUMC_domain, _addDnsDomainCustomV4ForUMC_protectthreshold, _addDnsDomainCustomV4ForUMC_action);
System.out.println("addDnsDomainCustomV4ForUMC.result=" + _addDnsDomainCustomV4ForUMC__return);
@@ -1592,7 +1592,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _setDdosGlobalSynFloodForUMC_objName = "";
java.lang.String _setDdosGlobalSynFloodForUMC_threshold = "";
java.lang.String _setDdosGlobalSynFloodForUMC_type = "";
- com.dptech.umc.NtcRequestResultInfo _setDdosGlobalSynFloodForUMC__return = port.setDdosGlobalSynFloodForUMC(_setDdosGlobalSynFloodForUMC_enable, _setDdosGlobalSynFloodForUMC_objName, _setDdosGlobalSynFloodForUMC_threshold, _setDdosGlobalSynFloodForUMC_type);
+ com.dptech.dispose.NtcRequestResultInfo _setDdosGlobalSynFloodForUMC__return = port.setDdosGlobalSynFloodForUMC(_setDdosGlobalSynFloodForUMC_enable, _setDdosGlobalSynFloodForUMC_objName, _setDdosGlobalSynFloodForUMC_threshold, _setDdosGlobalSynFloodForUMC_type);
System.out.println("setDdosGlobalSynFloodForUMC.result=" + _setDdosGlobalSynFloodForUMC__return);
@@ -1611,7 +1611,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
java.lang.String _addBlackAndWhiteListProtection_minute = "";
java.lang.String _addBlackAndWhiteListProtection_second = "";
java.lang.String _addBlackAndWhiteListProtection_protectionType = "";
- com.dptech.umc.NtcRequestResultInfo _addBlackAndWhiteListProtection__return = port.addBlackAndWhiteListProtection(_addBlackAndWhiteListProtection_name, _addBlackAndWhiteListProtection_sipType, _addBlackAndWhiteListProtection_sipStartIp, _addBlackAndWhiteListProtection_sipEndIp, _addBlackAndWhiteListProtection_dipType, _addBlackAndWhiteListProtection_dipStartIp, _addBlackAndWhiteListProtection_dipEndIp, _addBlackAndWhiteListProtection_timeType, _addBlackAndWhiteListProtection_hour, _addBlackAndWhiteListProtection_minute, _addBlackAndWhiteListProtection_second, _addBlackAndWhiteListProtection_protectionType);
+ com.dptech.dispose.NtcRequestResultInfo _addBlackAndWhiteListProtection__return = port.addBlackAndWhiteListProtection(_addBlackAndWhiteListProtection_name, _addBlackAndWhiteListProtection_sipType, _addBlackAndWhiteListProtection_sipStartIp, _addBlackAndWhiteListProtection_sipEndIp, _addBlackAndWhiteListProtection_dipType, _addBlackAndWhiteListProtection_dipStartIp, _addBlackAndWhiteListProtection_dipEndIp, _addBlackAndWhiteListProtection_timeType, _addBlackAndWhiteListProtection_hour, _addBlackAndWhiteListProtection_minute, _addBlackAndWhiteListProtection_second, _addBlackAndWhiteListProtection_protectionType);
System.out.println("addBlackAndWhiteListProtection.result=" + _addBlackAndWhiteListProtection__return);
@@ -1620,7 +1620,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
System.out.println("Invoking delDnsSipGlobalV4ForUMC...");
java.lang.String _delDnsSipGlobalV4ForUMC_name = "";
java.lang.String _delDnsSipGlobalV4ForUMC_objName = "";
- com.dptech.umc.NtcRequestResultInfo _delDnsSipGlobalV4ForUMC__return = port.delDnsSipGlobalV4ForUMC(_delDnsSipGlobalV4ForUMC_name, _delDnsSipGlobalV4ForUMC_objName);
+ com.dptech.dispose.NtcRequestResultInfo _delDnsSipGlobalV4ForUMC__return = port.delDnsSipGlobalV4ForUMC(_delDnsSipGlobalV4ForUMC_name, _delDnsSipGlobalV4ForUMC_objName);
System.out.println("delDnsSipGlobalV4ForUMC.result=" + _delDnsSipGlobalV4ForUMC__return);
@@ -1628,7 +1628,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalIcmpLengthFromUMC...");
java.lang.String _getDdosGlobalIcmpLengthFromUMC_objName = "";
- com.dptech.umc.DdosGlobalIcmpLengthForService _getDdosGlobalIcmpLengthFromUMC__return = port.getDdosGlobalIcmpLengthFromUMC(_getDdosGlobalIcmpLengthFromUMC_objName);
+ com.dptech.dispose.DdosGlobalIcmpLengthForService _getDdosGlobalIcmpLengthFromUMC__return = port.getDdosGlobalIcmpLengthFromUMC(_getDdosGlobalIcmpLengthFromUMC_objName);
System.out.println("getDdosGlobalIcmpLengthFromUMC.result=" + _getDdosGlobalIcmpLengthFromUMC__return);
@@ -1636,7 +1636,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosACProtectionFromUMC...");
java.lang.String _getDdosACProtectionFromUMC_objName = "";
- com.dptech.umc.ArrayOfDdosACProtectionForService _getDdosACProtectionFromUMC__return = port.getDdosACProtectionFromUMC(_getDdosACProtectionFromUMC_objName);
+ com.dptech.dispose.ArrayOfDdosACProtectionForService _getDdosACProtectionFromUMC__return = port.getDdosACProtectionFromUMC(_getDdosACProtectionFromUMC_objName);
System.out.println("getDdosACProtectionFromUMC.result=" + _getDdosACProtectionFromUMC__return);
@@ -1644,7 +1644,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking delBlackHoleStrategyForUMC...");
java.lang.String _delBlackHoleStrategyForUMC_policyName = "";
- com.dptech.umc.NtcRequestResultInfo _delBlackHoleStrategyForUMC__return = port.delBlackHoleStrategyForUMC(_delBlackHoleStrategyForUMC_policyName);
+ com.dptech.dispose.NtcRequestResultInfo _delBlackHoleStrategyForUMC__return = port.delBlackHoleStrategyForUMC(_delBlackHoleStrategyForUMC_policyName);
System.out.println("delBlackHoleStrategyForUMC.result=" + _delBlackHoleStrategyForUMC__return);
@@ -1652,7 +1652,7 @@ public final class AbnormalFlowCleaningServicePortType_AbnormalFlowCleaningServi
{
System.out.println("Invoking getDdosGlobalSynFloodFromUMC...");
java.lang.String _getDdosGlobalSynFloodFromUMC_objName = "";
- com.dptech.umc.DdosGlobalSynFloodForService _getDdosGlobalSynFloodFromUMC__return = port.getDdosGlobalSynFloodFromUMC(_getDdosGlobalSynFloodFromUMC_objName);
+ com.dptech.dispose.DdosGlobalSynFloodForService _getDdosGlobalSynFloodFromUMC__return = port.getDdosGlobalSynFloodFromUMC(_getDdosGlobalSynFloodFromUMC_objName);
System.out.println("getDdosGlobalSynFloodFromUMC.result=" + _getDdosGlobalSynFloodFromUMC__return);
diff --git a/src/main/java/com/dptech/umc/AddAnomalyDetectionStrategyForUMC.java b/src/main/java/com/dptech/dispose/AddAnomalyDetectionStrategyForUMC.java
similarity index 85%
rename from src/main/java/com/dptech/umc/AddAnomalyDetectionStrategyForUMC.java
rename to src/main/java/com/dptech/dispose/AddAnomalyDetectionStrategyForUMC.java
index 97935f26..391c67c1 100644
--- a/src/main/java/com/dptech/umc/AddAnomalyDetectionStrategyForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddAnomalyDetectionStrategyForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -45,7 +45,7 @@ public class AddAnomalyDetectionStrategyForUMC {
protected int bandWidthThreshold;
/**
- * ȡstrategyNameԵֵ
+ * 获取strategyName属性的值。
*
* @return
* possible object is
@@ -57,7 +57,7 @@ public class AddAnomalyDetectionStrategyForUMC {
}
/**
- * strategyNameԵֵ
+ * 设置strategyName属性的值。
*
* @param value
* allowed object is
@@ -69,7 +69,7 @@ public class AddAnomalyDetectionStrategyForUMC {
}
/**
- * ȡdetectionObjNameԵֵ
+ * 获取detectionObjName属性的值。
*
* @return
* possible object is
@@ -81,7 +81,7 @@ public class AddAnomalyDetectionStrategyForUMC {
}
/**
- * detectionObjNameԵֵ
+ * 设置detectionObjName属性的值。
*
* @param value
* allowed object is
@@ -93,7 +93,7 @@ public class AddAnomalyDetectionStrategyForUMC {
}
/**
- * ȡbandWidthThresholdԵֵ
+ * 获取bandWidthThreshold属性的值。
*
*/
public int getBandWidthThreshold() {
@@ -101,7 +101,7 @@ public class AddAnomalyDetectionStrategyForUMC {
}
/**
- * bandWidthThresholdԵֵ
+ * 设置bandWidthThreshold属性的值。
*
*/
public void setBandWidthThreshold(int value) {
diff --git a/src/main/java/com/dptech/umc/AddAnomalyDetectionStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/AddAnomalyDetectionStrategyForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddAnomalyDetectionStrategyForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddAnomalyDetectionStrategyForUMCResponse.java
index c70c718b..24a92e0a 100644
--- a/src/main/java/com/dptech/umc/AddAnomalyDetectionStrategyForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddAnomalyDetectionStrategyForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddAnomalyDetectionStrategyForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddAnomalyDetectionStrategyForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddBlackAndWhiteListProtection.java b/src/main/java/com/dptech/dispose/AddBlackAndWhiteListProtection.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddBlackAndWhiteListProtection.java
rename to src/main/java/com/dptech/dispose/AddBlackAndWhiteListProtection.java
index 948a865c..5622f19f 100644
--- a/src/main/java/com/dptech/umc/AddBlackAndWhiteListProtection.java
+++ b/src/main/java/com/dptech/dispose/AddBlackAndWhiteListProtection.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -82,7 +82,7 @@ public class AddBlackAndWhiteListProtection {
protected String protectionType;
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -94,7 +94,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -106,7 +106,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡsipTypeԵֵ
+ * 获取sipType属性的值。
*
* @return
* possible object is
@@ -118,7 +118,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * sipTypeԵֵ
+ * 设置sipType属性的值。
*
* @param value
* allowed object is
@@ -130,7 +130,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡsipStartIpԵֵ
+ * 获取sipStartIp属性的值。
*
* @return
* possible object is
@@ -142,7 +142,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * sipStartIpԵֵ
+ * 设置sipStartIp属性的值。
*
* @param value
* allowed object is
@@ -154,7 +154,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡsipEndIpԵֵ
+ * 获取sipEndIp属性的值。
*
* @return
* possible object is
@@ -166,7 +166,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * sipEndIpԵֵ
+ * 设置sipEndIp属性的值。
*
* @param value
* allowed object is
@@ -178,7 +178,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡdipTypeԵֵ
+ * 获取dipType属性的值。
*
* @return
* possible object is
@@ -190,7 +190,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * dipTypeԵֵ
+ * 设置dipType属性的值。
*
* @param value
* allowed object is
@@ -202,7 +202,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡdipStartIpԵֵ
+ * 获取dipStartIp属性的值。
*
* @return
* possible object is
@@ -214,7 +214,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * dipStartIpԵֵ
+ * 设置dipStartIp属性的值。
*
* @param value
* allowed object is
@@ -226,7 +226,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡdipEndIpԵֵ
+ * 获取dipEndIp属性的值。
*
* @return
* possible object is
@@ -238,7 +238,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * dipEndIpԵֵ
+ * 设置dipEndIp属性的值。
*
* @param value
* allowed object is
@@ -250,7 +250,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡtimeTypeԵֵ
+ * 获取timeType属性的值。
*
* @return
* possible object is
@@ -262,7 +262,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * timeTypeԵֵ
+ * 设置timeType属性的值。
*
* @param value
* allowed object is
@@ -274,7 +274,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡhourԵֵ
+ * 获取hour属性的值。
*
* @return
* possible object is
@@ -286,7 +286,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * hourԵֵ
+ * 设置hour属性的值。
*
* @param value
* allowed object is
@@ -298,7 +298,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡminuteԵֵ
+ * 获取minute属性的值。
*
* @return
* possible object is
@@ -310,7 +310,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * minuteԵֵ
+ * 设置minute属性的值。
*
* @param value
* allowed object is
@@ -322,7 +322,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡsecondԵֵ
+ * 获取second属性的值。
*
* @return
* possible object is
@@ -334,7 +334,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * secondԵֵ
+ * 设置second属性的值。
*
* @param value
* allowed object is
@@ -346,7 +346,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * ȡprotectionTypeԵֵ
+ * 获取protectionType属性的值。
*
* @return
* possible object is
@@ -358,7 +358,7 @@ public class AddBlackAndWhiteListProtection {
}
/**
- * protectionTypeԵֵ
+ * 设置protectionType属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddBlackAndWhiteListProtectionResponse.java b/src/main/java/com/dptech/dispose/AddBlackAndWhiteListProtectionResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddBlackAndWhiteListProtectionResponse.java
rename to src/main/java/com/dptech/dispose/AddBlackAndWhiteListProtectionResponse.java
index f8506d92..a3fbdb5b 100644
--- a/src/main/java/com/dptech/umc/AddBlackAndWhiteListProtectionResponse.java
+++ b/src/main/java/com/dptech/dispose/AddBlackAndWhiteListProtectionResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddBlackAndWhiteListProtectionResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddBlackAndWhiteListProtectionResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddBlackHoleAutoStrategyForUMC.java b/src/main/java/com/dptech/dispose/AddBlackHoleAutoStrategyForUMC.java
similarity index 84%
rename from src/main/java/com/dptech/umc/AddBlackHoleAutoStrategyForUMC.java
rename to src/main/java/com/dptech/dispose/AddBlackHoleAutoStrategyForUMC.java
index ebc84b3b..602b4549 100644
--- a/src/main/java/com/dptech/umc/AddBlackHoleAutoStrategyForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddBlackHoleAutoStrategyForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -51,7 +51,7 @@ public class AddBlackHoleAutoStrategyForUMC {
protected int blackHoleTime;
/**
- * ȡpolicyNameԵֵ
+ * 获取policyName属性的值。
*
* @return
* possible object is
@@ -63,7 +63,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * policyNameԵֵ
+ * 设置policyName属性的值。
*
* @param value
* allowed object is
@@ -75,7 +75,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * ȡdetectNameԵֵ
+ * 获取detectName属性的值。
*
* @return
* possible object is
@@ -87,7 +87,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * detectNameԵֵ
+ * 设置detectName属性的值。
*
* @param value
* allowed object is
@@ -99,7 +99,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * ȡdetectModeԵֵ
+ * 获取detectMode属性的值。
*
*/
public int getDetectMode() {
@@ -107,7 +107,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * detectModeԵֵ
+ * 设置detectMode属性的值。
*
*/
public void setDetectMode(int value) {
@@ -115,7 +115,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * ȡblackHoleThresholdԵֵ
+ * 获取blackHoleThreshold属性的值。
*
*/
public int getBlackHoleThreshold() {
@@ -123,7 +123,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * blackHoleThresholdԵֵ
+ * 设置blackHoleThreshold属性的值。
*
*/
public void setBlackHoleThreshold(int value) {
@@ -131,7 +131,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * ȡblackHoleTimeԵֵ
+ * 获取blackHoleTime属性的值。
*
*/
public int getBlackHoleTime() {
@@ -139,7 +139,7 @@ public class AddBlackHoleAutoStrategyForUMC {
}
/**
- * blackHoleTimeԵֵ
+ * 设置blackHoleTime属性的值。
*
*/
public void setBlackHoleTime(int value) {
diff --git a/src/main/java/com/dptech/umc/AddBlackHoleAutoStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/AddBlackHoleAutoStrategyForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddBlackHoleAutoStrategyForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddBlackHoleAutoStrategyForUMCResponse.java
index 898cb644..b4c59f83 100644
--- a/src/main/java/com/dptech/umc/AddBlackHoleAutoStrategyForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddBlackHoleAutoStrategyForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddBlackHoleAutoStrategyForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddBlackHoleAutoStrategyForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddBlackHoleManualStrategyForUMC.java b/src/main/java/com/dptech/dispose/AddBlackHoleManualStrategyForUMC.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddBlackHoleManualStrategyForUMC.java
rename to src/main/java/com/dptech/dispose/AddBlackHoleManualStrategyForUMC.java
index 6abab6c9..9644edeb 100644
--- a/src/main/java/com/dptech/umc/AddBlackHoleManualStrategyForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddBlackHoleManualStrategyForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -46,7 +46,7 @@ public class AddBlackHoleManualStrategyForUMC {
protected String ipAddress;
/**
- * ȡpolicyNameԵֵ
+ * 获取policyName属性的值。
*
* @return
* possible object is
@@ -58,7 +58,7 @@ public class AddBlackHoleManualStrategyForUMC {
}
/**
- * policyNameԵֵ
+ * 设置policyName属性的值。
*
* @param value
* allowed object is
@@ -70,7 +70,7 @@ public class AddBlackHoleManualStrategyForUMC {
}
/**
- * ȡdetectNameԵֵ
+ * 获取detectName属性的值。
*
* @return
* possible object is
@@ -82,7 +82,7 @@ public class AddBlackHoleManualStrategyForUMC {
}
/**
- * detectNameԵֵ
+ * 设置detectName属性的值。
*
* @param value
* allowed object is
@@ -94,7 +94,7 @@ public class AddBlackHoleManualStrategyForUMC {
}
/**
- * ȡipAddressԵֵ
+ * 获取ipAddress属性的值。
*
* @return
* possible object is
@@ -106,7 +106,7 @@ public class AddBlackHoleManualStrategyForUMC {
}
/**
- * ipAddressԵֵ
+ * 设置ipAddress属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddBlackHoleManualStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/AddBlackHoleManualStrategyForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddBlackHoleManualStrategyForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddBlackHoleManualStrategyForUMCResponse.java
index 4c0be058..c1c9e4c9 100644
--- a/src/main/java/com/dptech/umc/AddBlackHoleManualStrategyForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddBlackHoleManualStrategyForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddBlackHoleManualStrategyForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddBlackHoleManualStrategyForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddBypassManualTractionStrategyForUMC.java b/src/main/java/com/dptech/dispose/AddBypassManualTractionStrategyForUMC.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddBypassManualTractionStrategyForUMC.java
rename to src/main/java/com/dptech/dispose/AddBypassManualTractionStrategyForUMC.java
index 70221858..4a6907dc 100644
--- a/src/main/java/com/dptech/umc/AddBypassManualTractionStrategyForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddBypassManualTractionStrategyForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -46,7 +46,7 @@ public class AddBypassManualTractionStrategyForUMC {
protected String ipRange;
/**
- * ȡpolicyNameԵֵ
+ * 获取policyName属性的值。
*
* @return
* possible object is
@@ -58,7 +58,7 @@ public class AddBypassManualTractionStrategyForUMC {
}
/**
- * policyNameԵֵ
+ * 设置policyName属性的值。
*
* @param value
* allowed object is
@@ -70,7 +70,7 @@ public class AddBypassManualTractionStrategyForUMC {
}
/**
- * ȡprotectNameԵֵ
+ * 获取protectName属性的值。
*
* @return
* possible object is
@@ -82,7 +82,7 @@ public class AddBypassManualTractionStrategyForUMC {
}
/**
- * protectNameԵֵ
+ * 设置protectName属性的值。
*
* @param value
* allowed object is
@@ -94,7 +94,7 @@ public class AddBypassManualTractionStrategyForUMC {
}
/**
- * ȡipRangeԵֵ
+ * 获取ipRange属性的值。
*
* @return
* possible object is
@@ -106,7 +106,7 @@ public class AddBypassManualTractionStrategyForUMC {
}
/**
- * ipRangeԵֵ
+ * 设置ipRange属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddBypassManualTractionStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/AddBypassManualTractionStrategyForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddBypassManualTractionStrategyForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddBypassManualTractionStrategyForUMCResponse.java
index 8a1b3382..0e18fcce 100644
--- a/src/main/java/com/dptech/umc/AddBypassManualTractionStrategyForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddBypassManualTractionStrategyForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddBypassManualTractionStrategyForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddBypassManualTractionStrategyForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddCompleteAnomalyDetectionStrategyForUMC.java b/src/main/java/com/dptech/dispose/AddCompleteAnomalyDetectionStrategyForUMC.java
similarity index 81%
rename from src/main/java/com/dptech/umc/AddCompleteAnomalyDetectionStrategyForUMC.java
rename to src/main/java/com/dptech/dispose/AddCompleteAnomalyDetectionStrategyForUMC.java
index 3e1665fd..f47dfa03 100644
--- a/src/main/java/com/dptech/umc/AddCompleteAnomalyDetectionStrategyForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddCompleteAnomalyDetectionStrategyForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -108,7 +108,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
protected int bandWidthThreshold;
/**
- * ȡstrategyNameԵֵ
+ * 获取strategyName属性的值。
*
* @return
* possible object is
@@ -120,7 +120,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * strategyNameԵֵ
+ * 设置strategyName属性的值。
*
* @param value
* allowed object is
@@ -132,7 +132,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡdetectionObjNameԵֵ
+ * 获取detectionObjName属性的值。
*
* @return
* possible object is
@@ -144,7 +144,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * detectionObjNameԵֵ
+ * 设置detectionObjName属性的值。
*
* @param value
* allowed object is
@@ -156,7 +156,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡdirectionԵֵ
+ * 获取direction属性的值。
*
*/
public int getDirection() {
@@ -164,7 +164,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * directionԵֵ
+ * 设置direction属性的值。
*
*/
public void setDirection(int value) {
@@ -172,7 +172,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡsynFloodThresholdԵֵ
+ * 获取synFloodThreshold属性的值。
*
*/
public int getSynFloodThreshold() {
@@ -180,7 +180,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * synFloodThresholdԵֵ
+ * 设置synFloodThreshold属性的值。
*
*/
public void setSynFloodThreshold(int value) {
@@ -188,7 +188,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡsynFloodThresholdTypeԵֵ
+ * 获取synFloodThresholdType属性的值。
*
*/
public int getSynFloodThresholdType() {
@@ -196,7 +196,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * synFloodThresholdTypeԵֵ
+ * 设置synFloodThresholdType属性的值。
*
*/
public void setSynFloodThresholdType(int value) {
@@ -204,7 +204,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡudpFloodThresholdԵֵ
+ * 获取udpFloodThreshold属性的值。
*
*/
public int getUdpFloodThreshold() {
@@ -212,7 +212,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * udpFloodThresholdԵֵ
+ * 设置udpFloodThreshold属性的值。
*
*/
public void setUdpFloodThreshold(int value) {
@@ -220,7 +220,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡudpFloodThresholdTypeԵֵ
+ * 获取udpFloodThresholdType属性的值。
*
*/
public int getUdpFloodThresholdType() {
@@ -228,7 +228,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * udpFloodThresholdTypeԵֵ
+ * 设置udpFloodThresholdType属性的值。
*
*/
public void setUdpFloodThresholdType(int value) {
@@ -236,7 +236,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡicmpFloodThresholdԵֵ
+ * 获取icmpFloodThreshold属性的值。
*
*/
public int getIcmpFloodThreshold() {
@@ -244,7 +244,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * icmpFloodThresholdԵֵ
+ * 设置icmpFloodThreshold属性的值。
*
*/
public void setIcmpFloodThreshold(int value) {
@@ -252,7 +252,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡicmpFloodThresholdTypeԵֵ
+ * 获取icmpFloodThresholdType属性的值。
*
*/
public int getIcmpFloodThresholdType() {
@@ -260,7 +260,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * icmpFloodThresholdTypeԵֵ
+ * 设置icmpFloodThresholdType属性的值。
*
*/
public void setIcmpFloodThresholdType(int value) {
@@ -268,7 +268,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡsynAckFloodThresholdԵֵ
+ * 获取synAckFloodThreshold属性的值。
*
*/
public int getSynAckFloodThreshold() {
@@ -276,7 +276,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * synAckFloodThresholdԵֵ
+ * 设置synAckFloodThreshold属性的值。
*
*/
public void setSynAckFloodThreshold(int value) {
@@ -284,7 +284,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡsynAckFloodThresholdTypeԵֵ
+ * 获取synAckFloodThresholdType属性的值。
*
*/
public int getSynAckFloodThresholdType() {
@@ -292,7 +292,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * synAckFloodThresholdTypeԵֵ
+ * 设置synAckFloodThresholdType属性的值。
*
*/
public void setSynAckFloodThresholdType(int value) {
@@ -300,7 +300,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡfinFloodThresholdԵֵ
+ * 获取finFloodThreshold属性的值。
*
*/
public int getFinFloodThreshold() {
@@ -308,7 +308,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * finFloodThresholdԵֵ
+ * 设置finFloodThreshold属性的值。
*
*/
public void setFinFloodThreshold(int value) {
@@ -316,7 +316,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡfinFloodThresholdTypeԵֵ
+ * 获取finFloodThresholdType属性的值。
*
*/
public int getFinFloodThresholdType() {
@@ -324,7 +324,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * finFloodThresholdTypeԵֵ
+ * 设置finFloodThresholdType属性的值。
*
*/
public void setFinFloodThresholdType(int value) {
@@ -332,7 +332,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡipFragmentFloodThresholdԵֵ
+ * 获取ipFragmentFloodThreshold属性的值。
*
*/
public int getIpFragmentFloodThreshold() {
@@ -340,7 +340,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ipFragmentFloodThresholdԵֵ
+ * 设置ipFragmentFloodThreshold属性的值。
*
*/
public void setIpFragmentFloodThreshold(int value) {
@@ -348,7 +348,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡipFragmentFloodThresholdTypeԵֵ
+ * 获取ipFragmentFloodThresholdType属性的值。
*
*/
public int getIpFragmentFloodThresholdType() {
@@ -356,7 +356,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ipFragmentFloodThresholdTypeԵֵ
+ * 设置ipFragmentFloodThresholdType属性的值。
*
*/
public void setIpFragmentFloodThresholdType(int value) {
@@ -364,7 +364,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡackFloodThresholdԵֵ
+ * 获取ackFloodThreshold属性的值。
*
*/
public int getAckFloodThreshold() {
@@ -372,7 +372,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ackFloodThresholdԵֵ
+ * 设置ackFloodThreshold属性的值。
*
*/
public void setAckFloodThreshold(int value) {
@@ -380,7 +380,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡackFloodThresholdTypeԵֵ
+ * 获取ackFloodThresholdType属性的值。
*
*/
public int getAckFloodThresholdType() {
@@ -388,7 +388,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ackFloodThresholdTypeԵֵ
+ * 设置ackFloodThresholdType属性的值。
*
*/
public void setAckFloodThresholdType(int value) {
@@ -396,7 +396,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡhttpFloodThresholdԵֵ
+ * 获取httpFloodThreshold属性的值。
*
*/
public int getHttpFloodThreshold() {
@@ -404,7 +404,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * httpFloodThresholdԵֵ
+ * 设置httpFloodThreshold属性的值。
*
*/
public void setHttpFloodThreshold(int value) {
@@ -412,7 +412,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡhttpFloodThresholdTypeԵֵ
+ * 获取httpFloodThresholdType属性的值。
*
*/
public int getHttpFloodThresholdType() {
@@ -420,7 +420,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * httpFloodThresholdTypeԵֵ
+ * 设置httpFloodThresholdType属性的值。
*
*/
public void setHttpFloodThresholdType(int value) {
@@ -428,7 +428,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡccFloodThresholdԵֵ
+ * 获取ccFloodThreshold属性的值。
*
*/
public int getCcFloodThreshold() {
@@ -436,7 +436,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ccFloodThresholdԵֵ
+ * 设置ccFloodThreshold属性的值。
*
*/
public void setCcFloodThreshold(int value) {
@@ -444,7 +444,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡccFloodThresholdTypeԵֵ
+ * 获取ccFloodThresholdType属性的值。
*
*/
public int getCcFloodThresholdType() {
@@ -452,7 +452,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ccFloodThresholdTypeԵֵ
+ * 设置ccFloodThresholdType属性的值。
*
*/
public void setCcFloodThresholdType(int value) {
@@ -460,7 +460,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡdnsFloodThresholdԵֵ
+ * 获取dnsFloodThreshold属性的值。
*
*/
public int getDnsFloodThreshold() {
@@ -468,7 +468,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * dnsFloodThresholdԵֵ
+ * 设置dnsFloodThreshold属性的值。
*
*/
public void setDnsFloodThreshold(int value) {
@@ -476,7 +476,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡdnsFloodThresholdTypeԵֵ
+ * 获取dnsFloodThresholdType属性的值。
*
*/
public int getDnsFloodThresholdType() {
@@ -484,7 +484,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * dnsFloodThresholdTypeԵֵ
+ * 设置dnsFloodThresholdType属性的值。
*
*/
public void setDnsFloodThresholdType(int value) {
@@ -492,7 +492,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * ȡbandWidthThresholdԵֵ
+ * 获取bandWidthThreshold属性的值。
*
*/
public int getBandWidthThreshold() {
@@ -500,7 +500,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMC {
}
/**
- * bandWidthThresholdԵֵ
+ * 设置bandWidthThreshold属性的值。
*
*/
public void setBandWidthThreshold(int value) {
diff --git a/src/main/java/com/dptech/umc/AddCompleteAnomalyDetectionStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/AddCompleteAnomalyDetectionStrategyForUMCResponse.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddCompleteAnomalyDetectionStrategyForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddCompleteAnomalyDetectionStrategyForUMCResponse.java
index dabcd244..31381bcc 100644
--- a/src/main/java/com/dptech/umc/AddCompleteAnomalyDetectionStrategyForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddCompleteAnomalyDetectionStrategyForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddCompleteAnomalyDetectionStrategyForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosACProtectionForUMC.java b/src/main/java/com/dptech/dispose/AddDdosACProtectionForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDdosACProtectionForUMC.java
rename to src/main/java/com/dptech/dispose/AddDdosACProtectionForUMC.java
index 1f634469..8f757dc3 100644
--- a/src/main/java/com/dptech/umc/AddDdosACProtectionForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDdosACProtectionForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -98,7 +98,7 @@ public class AddDdosACProtectionForUMC {
protected String threshold;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -110,7 +110,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -122,7 +122,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -134,7 +134,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -146,7 +146,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡfixStringԵֵ
+ * 获取fixString属性的值。
*
* @return
* possible object is
@@ -158,7 +158,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * fixStringԵֵ
+ * 设置fixString属性的值。
*
* @param value
* allowed object is
@@ -170,7 +170,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡstartLocationԵֵ
+ * 获取startLocation属性的值。
*
* @return
* possible object is
@@ -182,7 +182,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * startLocationԵֵ
+ * 设置startLocation属性的值。
*
* @param value
* allowed object is
@@ -194,7 +194,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡendLocationԵֵ
+ * 获取endLocation属性的值。
*
* @return
* possible object is
@@ -206,7 +206,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * endLocationԵֵ
+ * 设置endLocation属性的值。
*
* @param value
* allowed object is
@@ -218,7 +218,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡregularExpressionԵֵ
+ * 获取regularExpression属性的值。
*
* @return
* possible object is
@@ -230,7 +230,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * regularExpressionԵֵ
+ * 设置regularExpression属性的值。
*
* @param value
* allowed object is
@@ -242,7 +242,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡacSipԵֵ
+ * 获取acSip属性的值。
*
* @return
* possible object is
@@ -254,7 +254,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * acSipԵֵ
+ * 设置acSip属性的值。
*
* @param value
* allowed object is
@@ -266,7 +266,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡacSmaskԵֵ
+ * 获取acSmask属性的值。
*
* @return
* possible object is
@@ -278,7 +278,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * acSmaskԵֵ
+ * 设置acSmask属性的值。
*
* @param value
* allowed object is
@@ -290,7 +290,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡacDipԵֵ
+ * 获取acDip属性的值。
*
* @return
* possible object is
@@ -302,7 +302,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * acDipԵֵ
+ * 设置acDip属性的值。
*
* @param value
* allowed object is
@@ -314,7 +314,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡacDmaskԵֵ
+ * 获取acDmask属性的值。
*
* @return
* possible object is
@@ -326,7 +326,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * acDmaskԵֵ
+ * 设置acDmask属性的值。
*
* @param value
* allowed object is
@@ -338,7 +338,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡprotocolԵֵ
+ * 获取protocol属性的值。
*
* @return
* possible object is
@@ -350,7 +350,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * protocolԵֵ
+ * 设置protocol属性的值。
*
* @param value
* allowed object is
@@ -362,7 +362,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡsrcPortMinԵֵ
+ * 获取srcPortMin属性的值。
*
* @return
* possible object is
@@ -374,7 +374,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * srcPortMinԵֵ
+ * 设置srcPortMin属性的值。
*
* @param value
* allowed object is
@@ -386,7 +386,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡsrcPortMaxԵֵ
+ * 获取srcPortMax属性的值。
*
* @return
* possible object is
@@ -398,7 +398,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * srcPortMaxԵֵ
+ * 设置srcPortMax属性的值。
*
* @param value
* allowed object is
@@ -410,7 +410,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡdstPortMinԵֵ
+ * 获取dstPortMin属性的值。
*
* @return
* possible object is
@@ -422,7 +422,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * dstPortMinԵֵ
+ * 设置dstPortMin属性的值。
*
* @param value
* allowed object is
@@ -434,7 +434,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡdstPortMaxԵֵ
+ * 获取dstPortMax属性的值。
*
* @return
* possible object is
@@ -446,7 +446,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * dstPortMaxԵֵ
+ * 设置dstPortMax属性的值。
*
* @param value
* allowed object is
@@ -458,7 +458,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * ȡthresholdԵֵ
+ * 获取threshold属性的值。
*
* @return
* possible object is
@@ -470,7 +470,7 @@ public class AddDdosACProtectionForUMC {
}
/**
- * thresholdԵֵ
+ * 设置threshold属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosACProtectionForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDdosACProtectionForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosACProtectionForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDdosACProtectionForUMCResponse.java
index 49ded2b2..9e9e00e5 100644
--- a/src/main/java/com/dptech/umc/AddDdosACProtectionForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDdosACProtectionForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDdosACProtectionForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDdosACProtectionForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosCCuserGroupV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDdosCCuserGroupV4ForUMC.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosCCuserGroupV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDdosCCuserGroupV4ForUMC.java
index 4a7dae5e..c71697e7 100644
--- a/src/main/java/com/dptech/umc/AddDdosCCuserGroupV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDdosCCuserGroupV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -42,7 +42,7 @@ public class AddDdosCCuserGroupV4ForUMC {
protected String name;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -54,7 +54,7 @@ public class AddDdosCCuserGroupV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -66,7 +66,7 @@ public class AddDdosCCuserGroupV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -78,7 +78,7 @@ public class AddDdosCCuserGroupV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosCCuserGroupV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDdosCCuserGroupV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosCCuserGroupV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDdosCCuserGroupV4ForUMCResponse.java
index 599db812..be2c52de 100644
--- a/src/main/java/com/dptech/umc/AddDdosCCuserGroupV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDdosCCuserGroupV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDdosCCuserGroupV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDdosCCuserGroupV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosDnsRetryProtectForUMC.java b/src/main/java/com/dptech/dispose/AddDdosDnsRetryProtectForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDdosDnsRetryProtectForUMC.java
rename to src/main/java/com/dptech/dispose/AddDdosDnsRetryProtectForUMC.java
index 438a8493..949aeb89 100644
--- a/src/main/java/com/dptech/umc/AddDdosDnsRetryProtectForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDdosDnsRetryProtectForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -54,7 +54,7 @@ public class AddDdosDnsRetryProtectForUMC {
protected String protectthreshold;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -66,7 +66,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -78,7 +78,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -90,7 +90,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -102,7 +102,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -114,7 +114,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
@@ -126,7 +126,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * ȡalertthresholdԵֵ
+ * 获取alertthreshold属性的值。
*
* @return
* possible object is
@@ -138,7 +138,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * alertthresholdԵֵ
+ * 设置alertthreshold属性的值。
*
* @param value
* allowed object is
@@ -150,7 +150,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -162,7 +162,7 @@ public class AddDdosDnsRetryProtectForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosDnsRetryProtectForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDdosDnsRetryProtectForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosDnsRetryProtectForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDdosDnsRetryProtectForUMCResponse.java
index 7c0e5ba6..b655c1e9 100644
--- a/src/main/java/com/dptech/umc/AddDdosDnsRetryProtectForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDdosDnsRetryProtectForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDdosDnsRetryProtectForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDdosDnsRetryProtectForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetSipCusProV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipCusProV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetSipCusProV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetSipCusProV4ForUMC.java
index b080c254..d7051951 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetSipCusProV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipCusProV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -54,7 +54,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -66,7 +66,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -78,7 +78,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -90,7 +90,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -102,7 +102,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * ȡsipԵֵ
+ * 获取sip属性的值。
*
* @return
* possible object is
@@ -114,7 +114,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * sipԵֵ
+ * 设置sip属性的值。
*
* @param value
* allowed object is
@@ -126,7 +126,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -138,7 +138,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -150,7 +150,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -162,7 +162,7 @@ public class AddDdosHttpGetSipCusProV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetSipCusProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipCusProV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetSipCusProV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetSipCusProV4ForUMCResponse.java
index 138b5f39..b7c76f98 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetSipCusProV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipCusProV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDdosHttpGetSipCusProV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDdosHttpGetSipCusProV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetSipGloProV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipGloProV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetSipGloProV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetSipGloProV4ForUMC.java
index 70e9795d..c4a90285 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetSipGloProV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipGloProV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -50,7 +50,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -62,7 +62,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -74,7 +74,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -86,7 +86,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -98,7 +98,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -110,7 +110,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -122,7 +122,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -134,7 +134,7 @@ public class AddDdosHttpGetSipGloProV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetSipGloProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipGloProV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetSipGloProV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetSipGloProV4ForUMCResponse.java
index 8ff1b428..0dab0dfe 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetSipGloProV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetSipGloProV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDdosHttpGetSipGloProV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDdosHttpGetSipGloProV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetUriCusProV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriCusProV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetUriCusProV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetUriCusProV4ForUMC.java
index 21506d0a..840c0ae8 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetUriCusProV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriCusProV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -54,7 +54,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -66,7 +66,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -78,7 +78,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -90,7 +90,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -102,7 +102,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * ȡuriԵֵ
+ * 获取uri属性的值。
*
* @return
* possible object is
@@ -114,7 +114,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * uriԵֵ
+ * 设置uri属性的值。
*
* @param value
* allowed object is
@@ -126,7 +126,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -138,7 +138,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -150,7 +150,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -162,7 +162,7 @@ public class AddDdosHttpGetUriCusProV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetUriCusProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriCusProV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetUriCusProV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetUriCusProV4ForUMCResponse.java
index 692b47c4..25160c17 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetUriCusProV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriCusProV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDdosHttpGetUriCusProV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDdosHttpGetUriCusProV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetUriGloProV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriGloProV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetUriGloProV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetUriGloProV4ForUMC.java
index 6c591e3f..79954956 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetUriGloProV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriGloProV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -50,7 +50,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -62,7 +62,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -74,7 +74,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -86,7 +86,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -98,7 +98,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -110,7 +110,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -122,7 +122,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -134,7 +134,7 @@ public class AddDdosHttpGetUriGloProV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDdosHttpGetUriGloProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriGloProV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDdosHttpGetUriGloProV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDdosHttpGetUriGloProV4ForUMCResponse.java
index 6991cd04..ccc2abf6 100644
--- a/src/main/java/com/dptech/umc/AddDdosHttpGetUriGloProV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDdosHttpGetUriGloProV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDdosHttpGetUriGloProV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDdosHttpGetUriGloProV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDetectionObjectForUMC.java b/src/main/java/com/dptech/dispose/AddDetectionObjectForUMC.java
similarity index 85%
rename from src/main/java/com/dptech/umc/AddDetectionObjectForUMC.java
rename to src/main/java/com/dptech/dispose/AddDetectionObjectForUMC.java
index eeb6a9f6..4f0e5b72 100644
--- a/src/main/java/com/dptech/umc/AddDetectionObjectForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDetectionObjectForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -56,7 +56,7 @@ public class AddDetectionObjectForUMC {
protected int cleaningType;
/**
- * ȡdetectionDevicesԵֵ
+ * 获取detectionDevices属性的值。
*
* @return
* possible object is
@@ -68,7 +68,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * detectionDevicesԵֵ
+ * 设置detectionDevices属性的值。
*
* @param value
* allowed object is
@@ -80,7 +80,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * ȡcleaningDevicesԵֵ
+ * 获取cleaningDevices属性的值。
*
* @return
* possible object is
@@ -92,7 +92,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * cleaningDevicesԵֵ
+ * 设置cleaningDevices属性的值。
*
* @param value
* allowed object is
@@ -104,7 +104,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * ȡdetectionNameԵֵ
+ * 获取detectionName属性的值。
*
* @return
* possible object is
@@ -116,7 +116,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * detectionNameԵֵ
+ * 设置detectionName属性的值。
*
* @param value
* allowed object is
@@ -128,7 +128,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * ȡipSegmentԵֵ
+ * 获取ipSegment属性的值。
*
* @return
* possible object is
@@ -140,7 +140,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * ipSegmentԵֵ
+ * 设置ipSegment属性的值。
*
* @param value
* allowed object is
@@ -152,7 +152,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * ȡipTypeԵֵ
+ * 获取ipType属性的值。
*
*/
public int getIpType() {
@@ -160,7 +160,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * ipTypeԵֵ
+ * 设置ipType属性的值。
*
*/
public void setIpType(int value) {
@@ -168,7 +168,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * ȡcleaningTypeԵֵ
+ * 获取cleaningType属性的值。
*
*/
public int getCleaningType() {
@@ -176,7 +176,7 @@ public class AddDetectionObjectForUMC {
}
/**
- * cleaningTypeԵֵ
+ * 设置cleaningType属性的值。
*
*/
public void setCleaningType(int value) {
diff --git a/src/main/java/com/dptech/umc/AddDetectionObjectForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDetectionObjectForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDetectionObjectForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDetectionObjectForUMCResponse.java
index 2498ad24..16a5bc7e 100644
--- a/src/main/java/com/dptech/umc/AddDetectionObjectForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDetectionObjectForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDetectionObjectForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDetectionObjectForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsDomainCustomV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDnsDomainCustomV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDnsDomainCustomV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDnsDomainCustomV4ForUMC.java
index 32f6ce69..93578f33 100644
--- a/src/main/java/com/dptech/umc/AddDnsDomainCustomV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDnsDomainCustomV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -54,7 +54,7 @@ public class AddDnsDomainCustomV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -66,7 +66,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -78,7 +78,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -90,7 +90,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -102,7 +102,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * ȡdomainԵֵ
+ * 获取domain属性的值。
*
* @return
* possible object is
@@ -114,7 +114,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * domainԵֵ
+ * 设置domain属性的值。
*
* @param value
* allowed object is
@@ -126,7 +126,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -138,7 +138,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -150,7 +150,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -162,7 +162,7 @@ public class AddDnsDomainCustomV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsDomainCustomV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDnsDomainCustomV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDnsDomainCustomV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDnsDomainCustomV4ForUMCResponse.java
index 9a007420..6e052c26 100644
--- a/src/main/java/com/dptech/umc/AddDnsDomainCustomV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDnsDomainCustomV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDnsDomainCustomV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDnsDomainCustomV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsDomainGlobalV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDnsDomainGlobalV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDnsDomainGlobalV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDnsDomainGlobalV4ForUMC.java
index 9b88b208..622361bc 100644
--- a/src/main/java/com/dptech/umc/AddDnsDomainGlobalV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDnsDomainGlobalV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -50,7 +50,7 @@ public class AddDnsDomainGlobalV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -62,7 +62,7 @@ public class AddDnsDomainGlobalV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -74,7 +74,7 @@ public class AddDnsDomainGlobalV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -86,7 +86,7 @@ public class AddDnsDomainGlobalV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -98,7 +98,7 @@ public class AddDnsDomainGlobalV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -110,7 +110,7 @@ public class AddDnsDomainGlobalV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -122,7 +122,7 @@ public class AddDnsDomainGlobalV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -134,7 +134,7 @@ public class AddDnsDomainGlobalV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsDomainGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDnsDomainGlobalV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDnsDomainGlobalV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDnsDomainGlobalV4ForUMCResponse.java
index 275fc6db..4251c24c 100644
--- a/src/main/java/com/dptech/umc/AddDnsDomainGlobalV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDnsDomainGlobalV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDnsDomainGlobalV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDnsDomainGlobalV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSecDomainCustomV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDnsSecDomainCustomV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDnsSecDomainCustomV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDnsSecDomainCustomV4ForUMC.java
index 7ae8e4a0..880a2dc8 100644
--- a/src/main/java/com/dptech/umc/AddDnsSecDomainCustomV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSecDomainCustomV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -54,7 +54,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -66,7 +66,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -78,7 +78,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -90,7 +90,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -102,7 +102,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * ȡdomainԵֵ
+ * 获取domain属性的值。
*
* @return
* possible object is
@@ -114,7 +114,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * domainԵֵ
+ * 设置domain属性的值。
*
* @param value
* allowed object is
@@ -126,7 +126,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -138,7 +138,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -150,7 +150,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -162,7 +162,7 @@ public class AddDnsSecDomainCustomV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSecDomainCustomV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDnsSecDomainCustomV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDnsSecDomainCustomV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDnsSecDomainCustomV4ForUMCResponse.java
index 0d3ef9e9..015fd45b 100644
--- a/src/main/java/com/dptech/umc/AddDnsSecDomainCustomV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSecDomainCustomV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDnsSecDomainCustomV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDnsSecDomainCustomV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSecDomainGlobalV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDnsSecDomainGlobalV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDnsSecDomainGlobalV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDnsSecDomainGlobalV4ForUMC.java
index 404bc9bc..c8434d0e 100644
--- a/src/main/java/com/dptech/umc/AddDnsSecDomainGlobalV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSecDomainGlobalV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -50,7 +50,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -62,7 +62,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -74,7 +74,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -86,7 +86,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -98,7 +98,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -110,7 +110,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -122,7 +122,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -134,7 +134,7 @@ public class AddDnsSecDomainGlobalV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSecDomainGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDnsSecDomainGlobalV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDnsSecDomainGlobalV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDnsSecDomainGlobalV4ForUMCResponse.java
index 759bc47a..2c166e56 100644
--- a/src/main/java/com/dptech/umc/AddDnsSecDomainGlobalV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSecDomainGlobalV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDnsSecDomainGlobalV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDnsSecDomainGlobalV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSipCustomV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDnsSipCustomV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDnsSipCustomV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDnsSipCustomV4ForUMC.java
index c5aeeda3..3edd4f3c 100644
--- a/src/main/java/com/dptech/umc/AddDnsSipCustomV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSipCustomV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -58,7 +58,7 @@ public class AddDnsSipCustomV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -70,7 +70,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -82,7 +82,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -94,7 +94,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -106,7 +106,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * ȡsipstartԵֵ
+ * 获取sipstart属性的值。
*
* @return
* possible object is
@@ -118,7 +118,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * sipstartԵֵ
+ * 设置sipstart属性的值。
*
* @param value
* allowed object is
@@ -130,7 +130,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * ȡsipendԵֵ
+ * 获取sipend属性的值。
*
* @return
* possible object is
@@ -142,7 +142,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * sipendԵֵ
+ * 设置sipend属性的值。
*
* @param value
* allowed object is
@@ -154,7 +154,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -166,7 +166,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -178,7 +178,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -190,7 +190,7 @@ public class AddDnsSipCustomV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSipCustomV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDnsSipCustomV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDnsSipCustomV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDnsSipCustomV4ForUMCResponse.java
index 21e49654..948e1d29 100644
--- a/src/main/java/com/dptech/umc/AddDnsSipCustomV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSipCustomV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDnsSipCustomV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDnsSipCustomV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSipGlobalV4ForUMC.java b/src/main/java/com/dptech/dispose/AddDnsSipGlobalV4ForUMC.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddDnsSipGlobalV4ForUMC.java
rename to src/main/java/com/dptech/dispose/AddDnsSipGlobalV4ForUMC.java
index dbf4d310..45534fca 100644
--- a/src/main/java/com/dptech/umc/AddDnsSipGlobalV4ForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSipGlobalV4ForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -50,7 +50,7 @@ public class AddDnsSipGlobalV4ForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -62,7 +62,7 @@ public class AddDnsSipGlobalV4ForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -74,7 +74,7 @@ public class AddDnsSipGlobalV4ForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -86,7 +86,7 @@ public class AddDnsSipGlobalV4ForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -98,7 +98,7 @@ public class AddDnsSipGlobalV4ForUMC {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -110,7 +110,7 @@ public class AddDnsSipGlobalV4ForUMC {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
@@ -122,7 +122,7 @@ public class AddDnsSipGlobalV4ForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -134,7 +134,7 @@ public class AddDnsSipGlobalV4ForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddDnsSipGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/AddDnsSipGlobalV4ForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddDnsSipGlobalV4ForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddDnsSipGlobalV4ForUMCResponse.java
index 6ff45054..ef5818d5 100644
--- a/src/main/java/com/dptech/umc/AddDnsSipGlobalV4ForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddDnsSipGlobalV4ForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddDnsSipGlobalV4ForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddDnsSipGlobalV4ForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintIcmpForUMC.java b/src/main/java/com/dptech/dispose/AddFingerprintIcmpForUMC.java
similarity index 88%
rename from src/main/java/com/dptech/umc/AddFingerprintIcmpForUMC.java
rename to src/main/java/com/dptech/dispose/AddFingerprintIcmpForUMC.java
index a07156de..c8f6287d 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintIcmpForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintIcmpForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -134,7 +134,7 @@ public class AddFingerprintIcmpForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -146,7 +146,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -158,7 +158,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -170,7 +170,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -182,7 +182,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeytype1Եֵ
+ * 获取keytype1属性的值。
*
* @return
* possible object is
@@ -194,7 +194,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keytype1Եֵ
+ * 设置keytype1属性的值。
*
* @param value
* allowed object is
@@ -206,7 +206,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeyoffset1Եֵ
+ * 获取keyoffset1属性的值。
*
* @return
* possible object is
@@ -218,7 +218,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keyoffset1Եֵ
+ * 设置keyoffset1属性的值。
*
* @param value
* allowed object is
@@ -230,7 +230,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeylength1Եֵ
+ * 获取keylength1属性的值。
*
* @return
* possible object is
@@ -242,7 +242,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keylength1Եֵ
+ * 设置keylength1属性的值。
*
* @param value
* allowed object is
@@ -254,7 +254,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡip1Եֵ
+ * 获取ip1属性的值。
*
* @return
* possible object is
@@ -266,7 +266,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ip1Եֵ
+ * 设置ip1属性的值。
*
* @param value
* allowed object is
@@ -278,7 +278,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡmask1Եֵ
+ * 获取mask1属性的值。
*
* @return
* possible object is
@@ -290,7 +290,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * mask1Եֵ
+ * 设置mask1属性的值。
*
* @param value
* allowed object is
@@ -302,7 +302,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡenable1Եֵ
+ * 获取enable1属性的值。
*
* @return
* possible object is
@@ -314,7 +314,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * enable1Եֵ
+ * 设置enable1属性的值。
*
* @param value
* allowed object is
@@ -326,7 +326,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡcustom1Եֵ
+ * 获取custom1属性的值。
*
* @return
* possible object is
@@ -338,7 +338,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * custom1Եֵ
+ * 设置custom1属性的值。
*
* @param value
* allowed object is
@@ -350,7 +350,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeytype2Եֵ
+ * 获取keytype2属性的值。
*
* @return
* possible object is
@@ -362,7 +362,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keytype2Եֵ
+ * 设置keytype2属性的值。
*
* @param value
* allowed object is
@@ -374,7 +374,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeyoffset2Եֵ
+ * 获取keyoffset2属性的值。
*
* @return
* possible object is
@@ -386,7 +386,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keyoffset2Եֵ
+ * 设置keyoffset2属性的值。
*
* @param value
* allowed object is
@@ -398,7 +398,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeylength2Եֵ
+ * 获取keylength2属性的值。
*
* @return
* possible object is
@@ -410,7 +410,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keylength2Եֵ
+ * 设置keylength2属性的值。
*
* @param value
* allowed object is
@@ -422,7 +422,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡip2Եֵ
+ * 获取ip2属性的值。
*
* @return
* possible object is
@@ -434,7 +434,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ip2Եֵ
+ * 设置ip2属性的值。
*
* @param value
* allowed object is
@@ -446,7 +446,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡmask2Եֵ
+ * 获取mask2属性的值。
*
* @return
* possible object is
@@ -458,7 +458,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * mask2Եֵ
+ * 设置mask2属性的值。
*
* @param value
* allowed object is
@@ -470,7 +470,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡenable2Եֵ
+ * 获取enable2属性的值。
*
* @return
* possible object is
@@ -482,7 +482,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * enable2Եֵ
+ * 设置enable2属性的值。
*
* @param value
* allowed object is
@@ -494,7 +494,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡcustom2Եֵ
+ * 获取custom2属性的值。
*
* @return
* possible object is
@@ -506,7 +506,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * custom2Եֵ
+ * 设置custom2属性的值。
*
* @param value
* allowed object is
@@ -518,7 +518,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeytype3Եֵ
+ * 获取keytype3属性的值。
*
* @return
* possible object is
@@ -530,7 +530,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keytype3Եֵ
+ * 设置keytype3属性的值。
*
* @param value
* allowed object is
@@ -542,7 +542,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeyoffset3Եֵ
+ * 获取keyoffset3属性的值。
*
* @return
* possible object is
@@ -554,7 +554,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keyoffset3Եֵ
+ * 设置keyoffset3属性的值。
*
* @param value
* allowed object is
@@ -566,7 +566,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡkeylength3Եֵ
+ * 获取keylength3属性的值。
*
* @return
* possible object is
@@ -578,7 +578,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * keylength3Եֵ
+ * 设置keylength3属性的值。
*
* @param value
* allowed object is
@@ -590,7 +590,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡip3Եֵ
+ * 获取ip3属性的值。
*
* @return
* possible object is
@@ -602,7 +602,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ip3Եֵ
+ * 设置ip3属性的值。
*
* @param value
* allowed object is
@@ -614,7 +614,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡmask3Եֵ
+ * 获取mask3属性的值。
*
* @return
* possible object is
@@ -626,7 +626,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * mask3Եֵ
+ * 设置mask3属性的值。
*
* @param value
* allowed object is
@@ -638,7 +638,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡenable3Եֵ
+ * 获取enable3属性的值。
*
* @return
* possible object is
@@ -650,7 +650,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * enable3Եֵ
+ * 设置enable3属性的值。
*
* @param value
* allowed object is
@@ -662,7 +662,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡcustom3Եֵ
+ * 获取custom3属性的值。
*
* @return
* possible object is
@@ -674,7 +674,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * custom3Եֵ
+ * 设置custom3属性的值。
*
* @param value
* allowed object is
@@ -686,7 +686,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡthresholdԵֵ
+ * 获取threshold属性的值。
*
* @return
* possible object is
@@ -698,7 +698,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * thresholdԵֵ
+ * 设置threshold属性的值。
*
* @param value
* allowed object is
@@ -710,7 +710,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -722,7 +722,7 @@ public class AddFingerprintIcmpForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintIcmpForUMCResponse.java b/src/main/java/com/dptech/dispose/AddFingerprintIcmpForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddFingerprintIcmpForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddFingerprintIcmpForUMCResponse.java
index f081ecd2..3e1935f5 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintIcmpForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintIcmpForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddFingerprintIcmpForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddFingerprintIcmpForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintOtherForUMC.java b/src/main/java/com/dptech/dispose/AddFingerprintOtherForUMC.java
similarity index 88%
rename from src/main/java/com/dptech/umc/AddFingerprintOtherForUMC.java
rename to src/main/java/com/dptech/dispose/AddFingerprintOtherForUMC.java
index aa796148..ff9ac9a4 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintOtherForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintOtherForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -134,7 +134,7 @@ public class AddFingerprintOtherForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -146,7 +146,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -158,7 +158,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -170,7 +170,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -182,7 +182,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeytype1Եֵ
+ * 获取keytype1属性的值。
*
* @return
* possible object is
@@ -194,7 +194,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keytype1Եֵ
+ * 设置keytype1属性的值。
*
* @param value
* allowed object is
@@ -206,7 +206,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeyoffset1Եֵ
+ * 获取keyoffset1属性的值。
*
* @return
* possible object is
@@ -218,7 +218,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keyoffset1Եֵ
+ * 设置keyoffset1属性的值。
*
* @param value
* allowed object is
@@ -230,7 +230,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeylength1Եֵ
+ * 获取keylength1属性的值。
*
* @return
* possible object is
@@ -242,7 +242,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keylength1Եֵ
+ * 设置keylength1属性的值。
*
* @param value
* allowed object is
@@ -254,7 +254,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡip1Եֵ
+ * 获取ip1属性的值。
*
* @return
* possible object is
@@ -266,7 +266,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ip1Եֵ
+ * 设置ip1属性的值。
*
* @param value
* allowed object is
@@ -278,7 +278,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡmask1Եֵ
+ * 获取mask1属性的值。
*
* @return
* possible object is
@@ -290,7 +290,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * mask1Եֵ
+ * 设置mask1属性的值。
*
* @param value
* allowed object is
@@ -302,7 +302,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡenable1Եֵ
+ * 获取enable1属性的值。
*
* @return
* possible object is
@@ -314,7 +314,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * enable1Եֵ
+ * 设置enable1属性的值。
*
* @param value
* allowed object is
@@ -326,7 +326,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡcustom1Եֵ
+ * 获取custom1属性的值。
*
* @return
* possible object is
@@ -338,7 +338,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * custom1Եֵ
+ * 设置custom1属性的值。
*
* @param value
* allowed object is
@@ -350,7 +350,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeytype2Եֵ
+ * 获取keytype2属性的值。
*
* @return
* possible object is
@@ -362,7 +362,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keytype2Եֵ
+ * 设置keytype2属性的值。
*
* @param value
* allowed object is
@@ -374,7 +374,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeyoffset2Եֵ
+ * 获取keyoffset2属性的值。
*
* @return
* possible object is
@@ -386,7 +386,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keyoffset2Եֵ
+ * 设置keyoffset2属性的值。
*
* @param value
* allowed object is
@@ -398,7 +398,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeylength2Եֵ
+ * 获取keylength2属性的值。
*
* @return
* possible object is
@@ -410,7 +410,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keylength2Եֵ
+ * 设置keylength2属性的值。
*
* @param value
* allowed object is
@@ -422,7 +422,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡip2Եֵ
+ * 获取ip2属性的值。
*
* @return
* possible object is
@@ -434,7 +434,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ip2Եֵ
+ * 设置ip2属性的值。
*
* @param value
* allowed object is
@@ -446,7 +446,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡmask2Եֵ
+ * 获取mask2属性的值。
*
* @return
* possible object is
@@ -458,7 +458,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * mask2Եֵ
+ * 设置mask2属性的值。
*
* @param value
* allowed object is
@@ -470,7 +470,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡenable2Եֵ
+ * 获取enable2属性的值。
*
* @return
* possible object is
@@ -482,7 +482,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * enable2Եֵ
+ * 设置enable2属性的值。
*
* @param value
* allowed object is
@@ -494,7 +494,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡcustom2Եֵ
+ * 获取custom2属性的值。
*
* @return
* possible object is
@@ -506,7 +506,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * custom2Եֵ
+ * 设置custom2属性的值。
*
* @param value
* allowed object is
@@ -518,7 +518,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeytype3Եֵ
+ * 获取keytype3属性的值。
*
* @return
* possible object is
@@ -530,7 +530,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keytype3Եֵ
+ * 设置keytype3属性的值。
*
* @param value
* allowed object is
@@ -542,7 +542,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeyoffset3Եֵ
+ * 获取keyoffset3属性的值。
*
* @return
* possible object is
@@ -554,7 +554,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keyoffset3Եֵ
+ * 设置keyoffset3属性的值。
*
* @param value
* allowed object is
@@ -566,7 +566,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡkeylength3Եֵ
+ * 获取keylength3属性的值。
*
* @return
* possible object is
@@ -578,7 +578,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * keylength3Եֵ
+ * 设置keylength3属性的值。
*
* @param value
* allowed object is
@@ -590,7 +590,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡip3Եֵ
+ * 获取ip3属性的值。
*
* @return
* possible object is
@@ -602,7 +602,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ip3Եֵ
+ * 设置ip3属性的值。
*
* @param value
* allowed object is
@@ -614,7 +614,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡmask3Եֵ
+ * 获取mask3属性的值。
*
* @return
* possible object is
@@ -626,7 +626,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * mask3Եֵ
+ * 设置mask3属性的值。
*
* @param value
* allowed object is
@@ -638,7 +638,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡenable3Եֵ
+ * 获取enable3属性的值。
*
* @return
* possible object is
@@ -650,7 +650,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * enable3Եֵ
+ * 设置enable3属性的值。
*
* @param value
* allowed object is
@@ -662,7 +662,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡcustom3Եֵ
+ * 获取custom3属性的值。
*
* @return
* possible object is
@@ -674,7 +674,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * custom3Եֵ
+ * 设置custom3属性的值。
*
* @param value
* allowed object is
@@ -686,7 +686,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡthresholdԵֵ
+ * 获取threshold属性的值。
*
* @return
* possible object is
@@ -698,7 +698,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * thresholdԵֵ
+ * 设置threshold属性的值。
*
* @param value
* allowed object is
@@ -710,7 +710,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -722,7 +722,7 @@ public class AddFingerprintOtherForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintOtherForUMCResponse.java b/src/main/java/com/dptech/dispose/AddFingerprintOtherForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddFingerprintOtherForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddFingerprintOtherForUMCResponse.java
index 81f446f6..0aac8de2 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintOtherForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintOtherForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddFingerprintOtherForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddFingerprintOtherForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintTcpForUMC.java b/src/main/java/com/dptech/dispose/AddFingerprintTcpForUMC.java
similarity index 88%
rename from src/main/java/com/dptech/umc/AddFingerprintTcpForUMC.java
rename to src/main/java/com/dptech/dispose/AddFingerprintTcpForUMC.java
index 7d20777f..fada4cc4 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintTcpForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintTcpForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -158,7 +158,7 @@ public class AddFingerprintTcpForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -170,7 +170,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -182,7 +182,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -194,7 +194,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -206,7 +206,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeytype1Եֵ
+ * 获取keytype1属性的值。
*
* @return
* possible object is
@@ -218,7 +218,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keytype1Եֵ
+ * 设置keytype1属性的值。
*
* @param value
* allowed object is
@@ -230,7 +230,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeyoffset1Եֵ
+ * 获取keyoffset1属性的值。
*
* @return
* possible object is
@@ -242,7 +242,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keyoffset1Եֵ
+ * 设置keyoffset1属性的值。
*
* @param value
* allowed object is
@@ -254,7 +254,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeylength1Եֵ
+ * 获取keylength1属性的值。
*
* @return
* possible object is
@@ -266,7 +266,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keylength1Եֵ
+ * 设置keylength1属性的值。
*
* @param value
* allowed object is
@@ -278,7 +278,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡport1Եֵ
+ * 获取port1属性的值。
*
* @return
* possible object is
@@ -290,7 +290,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * port1Եֵ
+ * 设置port1属性的值。
*
* @param value
* allowed object is
@@ -302,7 +302,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡflag1Եֵ
+ * 获取flag1属性的值。
*
* @return
* possible object is
@@ -314,7 +314,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * flag1Եֵ
+ * 设置flag1属性的值。
*
* @param value
* allowed object is
@@ -326,7 +326,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡip1Եֵ
+ * 获取ip1属性的值。
*
* @return
* possible object is
@@ -338,7 +338,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ip1Եֵ
+ * 设置ip1属性的值。
*
* @param value
* allowed object is
@@ -350,7 +350,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡmask1Եֵ
+ * 获取mask1属性的值。
*
* @return
* possible object is
@@ -362,7 +362,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * mask1Եֵ
+ * 设置mask1属性的值。
*
* @param value
* allowed object is
@@ -374,7 +374,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡenable1Եֵ
+ * 获取enable1属性的值。
*
* @return
* possible object is
@@ -386,7 +386,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * enable1Եֵ
+ * 设置enable1属性的值。
*
* @param value
* allowed object is
@@ -398,7 +398,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡcustom1Եֵ
+ * 获取custom1属性的值。
*
* @return
* possible object is
@@ -410,7 +410,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * custom1Եֵ
+ * 设置custom1属性的值。
*
* @param value
* allowed object is
@@ -422,7 +422,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeytype2Եֵ
+ * 获取keytype2属性的值。
*
* @return
* possible object is
@@ -434,7 +434,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keytype2Եֵ
+ * 设置keytype2属性的值。
*
* @param value
* allowed object is
@@ -446,7 +446,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeyoffset2Եֵ
+ * 获取keyoffset2属性的值。
*
* @return
* possible object is
@@ -458,7 +458,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keyoffset2Եֵ
+ * 设置keyoffset2属性的值。
*
* @param value
* allowed object is
@@ -470,7 +470,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeylength2Եֵ
+ * 获取keylength2属性的值。
*
* @return
* possible object is
@@ -482,7 +482,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keylength2Եֵ
+ * 设置keylength2属性的值。
*
* @param value
* allowed object is
@@ -494,7 +494,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡport2Եֵ
+ * 获取port2属性的值。
*
* @return
* possible object is
@@ -506,7 +506,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * port2Եֵ
+ * 设置port2属性的值。
*
* @param value
* allowed object is
@@ -518,7 +518,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡflag2Եֵ
+ * 获取flag2属性的值。
*
* @return
* possible object is
@@ -530,7 +530,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * flag2Եֵ
+ * 设置flag2属性的值。
*
* @param value
* allowed object is
@@ -542,7 +542,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡip2Եֵ
+ * 获取ip2属性的值。
*
* @return
* possible object is
@@ -554,7 +554,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ip2Եֵ
+ * 设置ip2属性的值。
*
* @param value
* allowed object is
@@ -566,7 +566,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡmask2Եֵ
+ * 获取mask2属性的值。
*
* @return
* possible object is
@@ -578,7 +578,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * mask2Եֵ
+ * 设置mask2属性的值。
*
* @param value
* allowed object is
@@ -590,7 +590,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡenable2Եֵ
+ * 获取enable2属性的值。
*
* @return
* possible object is
@@ -602,7 +602,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * enable2Եֵ
+ * 设置enable2属性的值。
*
* @param value
* allowed object is
@@ -614,7 +614,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡcustom2Եֵ
+ * 获取custom2属性的值。
*
* @return
* possible object is
@@ -626,7 +626,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * custom2Եֵ
+ * 设置custom2属性的值。
*
* @param value
* allowed object is
@@ -638,7 +638,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeytype3Եֵ
+ * 获取keytype3属性的值。
*
* @return
* possible object is
@@ -650,7 +650,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keytype3Եֵ
+ * 设置keytype3属性的值。
*
* @param value
* allowed object is
@@ -662,7 +662,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeyoffset3Եֵ
+ * 获取keyoffset3属性的值。
*
* @return
* possible object is
@@ -674,7 +674,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keyoffset3Եֵ
+ * 设置keyoffset3属性的值。
*
* @param value
* allowed object is
@@ -686,7 +686,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡkeylength3Եֵ
+ * 获取keylength3属性的值。
*
* @return
* possible object is
@@ -698,7 +698,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * keylength3Եֵ
+ * 设置keylength3属性的值。
*
* @param value
* allowed object is
@@ -710,7 +710,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡport3Եֵ
+ * 获取port3属性的值。
*
* @return
* possible object is
@@ -722,7 +722,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * port3Եֵ
+ * 设置port3属性的值。
*
* @param value
* allowed object is
@@ -734,7 +734,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡflag3Եֵ
+ * 获取flag3属性的值。
*
* @return
* possible object is
@@ -746,7 +746,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * flag3Եֵ
+ * 设置flag3属性的值。
*
* @param value
* allowed object is
@@ -758,7 +758,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡip3Եֵ
+ * 获取ip3属性的值。
*
* @return
* possible object is
@@ -770,7 +770,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ip3Եֵ
+ * 设置ip3属性的值。
*
* @param value
* allowed object is
@@ -782,7 +782,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡmask3Եֵ
+ * 获取mask3属性的值。
*
* @return
* possible object is
@@ -794,7 +794,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * mask3Եֵ
+ * 设置mask3属性的值。
*
* @param value
* allowed object is
@@ -806,7 +806,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡenable3Եֵ
+ * 获取enable3属性的值。
*
* @return
* possible object is
@@ -818,7 +818,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * enable3Եֵ
+ * 设置enable3属性的值。
*
* @param value
* allowed object is
@@ -830,7 +830,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡcustom3Եֵ
+ * 获取custom3属性的值。
*
* @return
* possible object is
@@ -842,7 +842,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * custom3Եֵ
+ * 设置custom3属性的值。
*
* @param value
* allowed object is
@@ -854,7 +854,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡthresholdԵֵ
+ * 获取threshold属性的值。
*
* @return
* possible object is
@@ -866,7 +866,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * thresholdԵֵ
+ * 设置threshold属性的值。
*
* @param value
* allowed object is
@@ -878,7 +878,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -890,7 +890,7 @@ public class AddFingerprintTcpForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintTcpForUMCResponse.java b/src/main/java/com/dptech/dispose/AddFingerprintTcpForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddFingerprintTcpForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddFingerprintTcpForUMCResponse.java
index 0fb51a15..2c579363 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintTcpForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintTcpForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddFingerprintTcpForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddFingerprintTcpForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintUdpForUMC.java b/src/main/java/com/dptech/dispose/AddFingerprintUdpForUMC.java
similarity index 88%
rename from src/main/java/com/dptech/umc/AddFingerprintUdpForUMC.java
rename to src/main/java/com/dptech/dispose/AddFingerprintUdpForUMC.java
index 9842b0bb..9bbfaed0 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintUdpForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintUdpForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -146,7 +146,7 @@ public class AddFingerprintUdpForUMC {
protected String action;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -158,7 +158,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -170,7 +170,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -182,7 +182,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -194,7 +194,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeytype1Եֵ
+ * 获取keytype1属性的值。
*
* @return
* possible object is
@@ -206,7 +206,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keytype1Եֵ
+ * 设置keytype1属性的值。
*
* @param value
* allowed object is
@@ -218,7 +218,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeyoffset1Եֵ
+ * 获取keyoffset1属性的值。
*
* @return
* possible object is
@@ -230,7 +230,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keyoffset1Եֵ
+ * 设置keyoffset1属性的值。
*
* @param value
* allowed object is
@@ -242,7 +242,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeylength1Եֵ
+ * 获取keylength1属性的值。
*
* @return
* possible object is
@@ -254,7 +254,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keylength1Եֵ
+ * 设置keylength1属性的值。
*
* @param value
* allowed object is
@@ -266,7 +266,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡport1Եֵ
+ * 获取port1属性的值。
*
* @return
* possible object is
@@ -278,7 +278,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * port1Եֵ
+ * 设置port1属性的值。
*
* @param value
* allowed object is
@@ -290,7 +290,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡip1Եֵ
+ * 获取ip1属性的值。
*
* @return
* possible object is
@@ -302,7 +302,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ip1Եֵ
+ * 设置ip1属性的值。
*
* @param value
* allowed object is
@@ -314,7 +314,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡmask1Եֵ
+ * 获取mask1属性的值。
*
* @return
* possible object is
@@ -326,7 +326,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * mask1Եֵ
+ * 设置mask1属性的值。
*
* @param value
* allowed object is
@@ -338,7 +338,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡenable1Եֵ
+ * 获取enable1属性的值。
*
* @return
* possible object is
@@ -350,7 +350,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * enable1Եֵ
+ * 设置enable1属性的值。
*
* @param value
* allowed object is
@@ -362,7 +362,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡcustom1Եֵ
+ * 获取custom1属性的值。
*
* @return
* possible object is
@@ -374,7 +374,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * custom1Եֵ
+ * 设置custom1属性的值。
*
* @param value
* allowed object is
@@ -386,7 +386,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeytype2Եֵ
+ * 获取keytype2属性的值。
*
* @return
* possible object is
@@ -398,7 +398,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keytype2Եֵ
+ * 设置keytype2属性的值。
*
* @param value
* allowed object is
@@ -410,7 +410,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeyoffset2Եֵ
+ * 获取keyoffset2属性的值。
*
* @return
* possible object is
@@ -422,7 +422,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keyoffset2Եֵ
+ * 设置keyoffset2属性的值。
*
* @param value
* allowed object is
@@ -434,7 +434,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeylength2Եֵ
+ * 获取keylength2属性的值。
*
* @return
* possible object is
@@ -446,7 +446,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keylength2Եֵ
+ * 设置keylength2属性的值。
*
* @param value
* allowed object is
@@ -458,7 +458,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡport2Եֵ
+ * 获取port2属性的值。
*
* @return
* possible object is
@@ -470,7 +470,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * port2Եֵ
+ * 设置port2属性的值。
*
* @param value
* allowed object is
@@ -482,7 +482,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡip2Եֵ
+ * 获取ip2属性的值。
*
* @return
* possible object is
@@ -494,7 +494,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ip2Եֵ
+ * 设置ip2属性的值。
*
* @param value
* allowed object is
@@ -506,7 +506,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡmask2Եֵ
+ * 获取mask2属性的值。
*
* @return
* possible object is
@@ -518,7 +518,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * mask2Եֵ
+ * 设置mask2属性的值。
*
* @param value
* allowed object is
@@ -530,7 +530,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡenable2Եֵ
+ * 获取enable2属性的值。
*
* @return
* possible object is
@@ -542,7 +542,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * enable2Եֵ
+ * 设置enable2属性的值。
*
* @param value
* allowed object is
@@ -554,7 +554,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡcustom2Եֵ
+ * 获取custom2属性的值。
*
* @return
* possible object is
@@ -566,7 +566,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * custom2Եֵ
+ * 设置custom2属性的值。
*
* @param value
* allowed object is
@@ -578,7 +578,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeytype3Եֵ
+ * 获取keytype3属性的值。
*
* @return
* possible object is
@@ -590,7 +590,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keytype3Եֵ
+ * 设置keytype3属性的值。
*
* @param value
* allowed object is
@@ -602,7 +602,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeyoffset3Եֵ
+ * 获取keyoffset3属性的值。
*
* @return
* possible object is
@@ -614,7 +614,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keyoffset3Եֵ
+ * 设置keyoffset3属性的值。
*
* @param value
* allowed object is
@@ -626,7 +626,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡkeylength3Եֵ
+ * 获取keylength3属性的值。
*
* @return
* possible object is
@@ -638,7 +638,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * keylength3Եֵ
+ * 设置keylength3属性的值。
*
* @param value
* allowed object is
@@ -650,7 +650,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡport3Եֵ
+ * 获取port3属性的值。
*
* @return
* possible object is
@@ -662,7 +662,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * port3Եֵ
+ * 设置port3属性的值。
*
* @param value
* allowed object is
@@ -674,7 +674,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡip3Եֵ
+ * 获取ip3属性的值。
*
* @return
* possible object is
@@ -686,7 +686,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ip3Եֵ
+ * 设置ip3属性的值。
*
* @param value
* allowed object is
@@ -698,7 +698,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡmask3Եֵ
+ * 获取mask3属性的值。
*
* @return
* possible object is
@@ -710,7 +710,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * mask3Եֵ
+ * 设置mask3属性的值。
*
* @param value
* allowed object is
@@ -722,7 +722,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡenable3Եֵ
+ * 获取enable3属性的值。
*
* @return
* possible object is
@@ -734,7 +734,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * enable3Եֵ
+ * 设置enable3属性的值。
*
* @param value
* allowed object is
@@ -746,7 +746,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡcustom3Եֵ
+ * 获取custom3属性的值。
*
* @return
* possible object is
@@ -758,7 +758,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * custom3Եֵ
+ * 设置custom3属性的值。
*
* @param value
* allowed object is
@@ -770,7 +770,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡthresholdԵֵ
+ * 获取threshold属性的值。
*
* @return
* possible object is
@@ -782,7 +782,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * thresholdԵֵ
+ * 设置threshold属性的值。
*
* @param value
* allowed object is
@@ -794,7 +794,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -806,7 +806,7 @@ public class AddFingerprintUdpForUMC {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddFingerprintUdpForUMCResponse.java b/src/main/java/com/dptech/dispose/AddFingerprintUdpForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddFingerprintUdpForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddFingerprintUdpForUMCResponse.java
index d45e5ca3..bce2de0b 100644
--- a/src/main/java/com/dptech/umc/AddFingerprintUdpForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddFingerprintUdpForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddFingerprintUdpForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddFingerprintUdpForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddOneKeyDetection.java b/src/main/java/com/dptech/dispose/AddOneKeyDetection.java
similarity index 87%
rename from src/main/java/com/dptech/umc/AddOneKeyDetection.java
rename to src/main/java/com/dptech/dispose/AddOneKeyDetection.java
index da533b17..32dae46c 100644
--- a/src/main/java/com/dptech/umc/AddOneKeyDetection.java
+++ b/src/main/java/com/dptech/dispose/AddOneKeyDetection.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -54,7 +54,7 @@ public class AddOneKeyDetection {
protected String business;
/**
- * ȡprotectIpԵֵ
+ * 获取protectIp属性的值。
*
* @return
* possible object is
@@ -66,7 +66,7 @@ public class AddOneKeyDetection {
}
/**
- * protectIpԵֵ
+ * 设置protectIp属性的值。
*
* @param value
* allowed object is
@@ -78,7 +78,7 @@ public class AddOneKeyDetection {
}
/**
- * ȡattackTypeԵֵ
+ * 获取attackType属性的值。
*
* @return
* possible object is
@@ -90,7 +90,7 @@ public class AddOneKeyDetection {
}
/**
- * attackTypeԵֵ
+ * 设置attackType属性的值。
*
* @param value
* allowed object is
@@ -102,7 +102,7 @@ public class AddOneKeyDetection {
}
/**
- * ȡdirectionԵֵ
+ * 获取direction属性的值。
*
* @return
* possible object is
@@ -114,7 +114,7 @@ public class AddOneKeyDetection {
}
/**
- * directionԵֵ
+ * 设置direction属性的值。
*
* @param value
* allowed object is
@@ -126,7 +126,7 @@ public class AddOneKeyDetection {
}
/**
- * ȡbandwidthԵֵ
+ * 获取bandwidth属性的值。
*
* @return
* possible object is
@@ -138,7 +138,7 @@ public class AddOneKeyDetection {
}
/**
- * bandwidthԵֵ
+ * 设置bandwidth属性的值。
*
* @param value
* allowed object is
@@ -150,7 +150,7 @@ public class AddOneKeyDetection {
}
/**
- * ȡbusinessԵֵ
+ * 获取business属性的值。
*
* @return
* possible object is
@@ -162,7 +162,7 @@ public class AddOneKeyDetection {
}
/**
- * businessԵֵ
+ * 设置business属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddOneKeyDetectionResponse.java b/src/main/java/com/dptech/dispose/AddOneKeyDetectionResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddOneKeyDetectionResponse.java
rename to src/main/java/com/dptech/dispose/AddOneKeyDetectionResponse.java
index c5c73d21..0e4d0074 100644
--- a/src/main/java/com/dptech/umc/AddOneKeyDetectionResponse.java
+++ b/src/main/java/com/dptech/dispose/AddOneKeyDetectionResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddOneKeyDetectionResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddOneKeyDetectionResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddOneKeyRestore.java b/src/main/java/com/dptech/dispose/AddOneKeyRestore.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddOneKeyRestore.java
rename to src/main/java/com/dptech/dispose/AddOneKeyRestore.java
index da31e444..1f286585 100644
--- a/src/main/java/com/dptech/umc/AddOneKeyRestore.java
+++ b/src/main/java/com/dptech/dispose/AddOneKeyRestore.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -46,7 +46,7 @@ public class AddOneKeyRestore {
protected String direction;
/**
- * ȡprotectIpԵֵ
+ * 获取protectIp属性的值。
*
* @return
* possible object is
@@ -58,7 +58,7 @@ public class AddOneKeyRestore {
}
/**
- * protectIpԵֵ
+ * 设置protectIp属性的值。
*
* @param value
* allowed object is
@@ -70,7 +70,7 @@ public class AddOneKeyRestore {
}
/**
- * ȡattackTypeԵֵ
+ * 获取attackType属性的值。
*
* @return
* possible object is
@@ -82,7 +82,7 @@ public class AddOneKeyRestore {
}
/**
- * attackTypeԵֵ
+ * 设置attackType属性的值。
*
* @param value
* allowed object is
@@ -94,7 +94,7 @@ public class AddOneKeyRestore {
}
/**
- * ȡdirectionԵֵ
+ * 获取direction属性的值。
*
* @return
* possible object is
@@ -106,7 +106,7 @@ public class AddOneKeyRestore {
}
/**
- * directionԵֵ
+ * 设置direction属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddOneKeyRestoreResponse.java b/src/main/java/com/dptech/dispose/AddOneKeyRestoreResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddOneKeyRestoreResponse.java
rename to src/main/java/com/dptech/dispose/AddOneKeyRestoreResponse.java
index 6f0a98fb..2ef77262 100644
--- a/src/main/java/com/dptech/umc/AddOneKeyRestoreResponse.java
+++ b/src/main/java/com/dptech/dispose/AddOneKeyRestoreResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddOneKeyRestoreResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddOneKeyRestoreResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AddProtectionObjectForUMC.java b/src/main/java/com/dptech/dispose/AddProtectionObjectForUMC.java
similarity index 85%
rename from src/main/java/com/dptech/umc/AddProtectionObjectForUMC.java
rename to src/main/java/com/dptech/dispose/AddProtectionObjectForUMC.java
index 864a7996..eb5cc0f0 100644
--- a/src/main/java/com/dptech/umc/AddProtectionObjectForUMC.java
+++ b/src/main/java/com/dptech/dispose/AddProtectionObjectForUMC.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -56,7 +56,7 @@ public class AddProtectionObjectForUMC {
protected int cleaningType;
/**
- * ȡdetectionDevicesԵֵ
+ * 获取detectionDevices属性的值。
*
* @return
* possible object is
@@ -68,7 +68,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * detectionDevicesԵֵ
+ * 设置detectionDevices属性的值。
*
* @param value
* allowed object is
@@ -80,7 +80,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * ȡcleaningDevicesԵֵ
+ * 获取cleaningDevices属性的值。
*
* @return
* possible object is
@@ -92,7 +92,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * cleaningDevicesԵֵ
+ * 设置cleaningDevices属性的值。
*
* @param value
* allowed object is
@@ -104,7 +104,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * ȡprotectionNameԵֵ
+ * 获取protectionName属性的值。
*
* @return
* possible object is
@@ -116,7 +116,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * protectionNameԵֵ
+ * 设置protectionName属性的值。
*
* @param value
* allowed object is
@@ -128,7 +128,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * ȡipSegmentԵֵ
+ * 获取ipSegment属性的值。
*
* @return
* possible object is
@@ -140,7 +140,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * ipSegmentԵֵ
+ * 设置ipSegment属性的值。
*
* @param value
* allowed object is
@@ -152,7 +152,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * ȡipTypeԵֵ
+ * 获取ipType属性的值。
*
*/
public int getIpType() {
@@ -160,7 +160,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * ipTypeԵֵ
+ * 设置ipType属性的值。
*
*/
public void setIpType(int value) {
@@ -168,7 +168,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * ȡcleaningTypeԵֵ
+ * 获取cleaningType属性的值。
*
*/
public int getCleaningType() {
@@ -176,7 +176,7 @@ public class AddProtectionObjectForUMC {
}
/**
- * cleaningTypeԵֵ
+ * 设置cleaningType属性的值。
*
*/
public void setCleaningType(int value) {
diff --git a/src/main/java/com/dptech/umc/AddProtectionObjectForUMCResponse.java b/src/main/java/com/dptech/dispose/AddProtectionObjectForUMCResponse.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AddProtectionObjectForUMCResponse.java
rename to src/main/java/com/dptech/dispose/AddProtectionObjectForUMCResponse.java
index 21a67a2d..b3a2d9bf 100644
--- a/src/main/java/com/dptech/umc/AddProtectionObjectForUMCResponse.java
+++ b/src/main/java/com/dptech/dispose/AddProtectionObjectForUMCResponse.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * anonymous complex type Java ࡣ
+ *
anonymous complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType>
@@ -38,7 +38,7 @@ public class AddProtectionObjectForUMCResponse {
protected NtcRequestResultInfo out;
/**
- * ȡoutԵֵ
+ * 获取out属性的值。
*
* @return
* possible object is
@@ -50,7 +50,7 @@ public class AddProtectionObjectForUMCResponse {
}
/**
- * outԵֵ
+ * 设置out属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/AnomalyDetectionStrategy.java b/src/main/java/com/dptech/dispose/AnomalyDetectionStrategy.java
similarity index 86%
rename from src/main/java/com/dptech/umc/AnomalyDetectionStrategy.java
rename to src/main/java/com/dptech/dispose/AnomalyDetectionStrategy.java
index 42b1a36d..2a89dd0b 100644
--- a/src/main/java/com/dptech/umc/AnomalyDetectionStrategy.java
+++ b/src/main/java/com/dptech/dispose/AnomalyDetectionStrategy.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * AnomalyDetectionStrategy complex type Java ࡣ
+ *
AnomalyDetectionStrategy complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="AnomalyDetectionStrategy">
@@ -107,7 +107,7 @@ public class AnomalyDetectionStrategy {
protected Integer udpFloodThresholdType;
/**
- * ȡackFloodThresholdԵֵ
+ * 获取ackFloodThreshold属性的值。
*
* @return
* possible object is
@@ -119,7 +119,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ackFloodThresholdԵֵ
+ * 设置ackFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -131,7 +131,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡackFloodThresholdTypeԵֵ
+ * 获取ackFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -143,7 +143,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ackFloodThresholdTypeԵֵ
+ * 设置ackFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -155,7 +155,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡbandWidthThresholdԵֵ
+ * 获取bandWidthThreshold属性的值。
*
* @return
* possible object is
@@ -167,7 +167,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * bandWidthThresholdԵֵ
+ * 设置bandWidthThreshold属性的值。
*
* @param value
* allowed object is
@@ -179,7 +179,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡccFloodThresholdԵֵ
+ * 获取ccFloodThreshold属性的值。
*
* @return
* possible object is
@@ -191,7 +191,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ccFloodThresholdԵֵ
+ * 设置ccFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -203,7 +203,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡccFloodThresholdTypeԵֵ
+ * 获取ccFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -215,7 +215,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ccFloodThresholdTypeԵֵ
+ * 设置ccFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -227,7 +227,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡdetectionObjNameԵֵ
+ * 获取detectionObjName属性的值。
*
* @return
* possible object is
@@ -239,7 +239,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * detectionObjNameԵֵ
+ * 设置detectionObjName属性的值。
*
* @param value
* allowed object is
@@ -251,7 +251,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡdirectionԵֵ
+ * 获取direction属性的值。
*
* @return
* possible object is
@@ -263,7 +263,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * directionԵֵ
+ * 设置direction属性的值。
*
* @param value
* allowed object is
@@ -275,7 +275,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡdnsFloodThresholdԵֵ
+ * 获取dnsFloodThreshold属性的值。
*
* @return
* possible object is
@@ -287,7 +287,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * dnsFloodThresholdԵֵ
+ * 设置dnsFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -299,7 +299,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡdnsFloodThresholdTypeԵֵ
+ * 获取dnsFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -311,7 +311,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * dnsFloodThresholdTypeԵֵ
+ * 设置dnsFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -323,7 +323,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡfinFloodThresholdԵֵ
+ * 获取finFloodThreshold属性的值。
*
* @return
* possible object is
@@ -335,7 +335,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * finFloodThresholdԵֵ
+ * 设置finFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -347,7 +347,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡfinFloodThresholdTypeԵֵ
+ * 获取finFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -359,7 +359,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * finFloodThresholdTypeԵֵ
+ * 设置finFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -371,7 +371,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡhttpFloodThresholdԵֵ
+ * 获取httpFloodThreshold属性的值。
*
* @return
* possible object is
@@ -383,7 +383,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * httpFloodThresholdԵֵ
+ * 设置httpFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -395,7 +395,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡhttpFloodThresholdTypeԵֵ
+ * 获取httpFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -407,7 +407,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * httpFloodThresholdTypeԵֵ
+ * 设置httpFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -419,7 +419,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡicmpFloodThresholdԵֵ
+ * 获取icmpFloodThreshold属性的值。
*
* @return
* possible object is
@@ -431,7 +431,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * icmpFloodThresholdԵֵ
+ * 设置icmpFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -443,7 +443,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡicmpFloodThresholdTypeԵֵ
+ * 获取icmpFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -455,7 +455,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * icmpFloodThresholdTypeԵֵ
+ * 设置icmpFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -467,7 +467,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡipFragmentFloodThresholdԵֵ
+ * 获取ipFragmentFloodThreshold属性的值。
*
* @return
* possible object is
@@ -479,7 +479,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ipFragmentFloodThresholdԵֵ
+ * 设置ipFragmentFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -491,7 +491,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡipFragmentFloodThresholdTypeԵֵ
+ * 获取ipFragmentFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -503,7 +503,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ipFragmentFloodThresholdTypeԵֵ
+ * 设置ipFragmentFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -515,7 +515,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡstrategyNameԵֵ
+ * 获取strategyName属性的值。
*
* @return
* possible object is
@@ -527,7 +527,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * strategyNameԵֵ
+ * 设置strategyName属性的值。
*
* @param value
* allowed object is
@@ -539,7 +539,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡsynAckFloodThresholdԵֵ
+ * 获取synAckFloodThreshold属性的值。
*
* @return
* possible object is
@@ -551,7 +551,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * synAckFloodThresholdԵֵ
+ * 设置synAckFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -563,7 +563,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡsynAckFloodThresholdTypeԵֵ
+ * 获取synAckFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -575,7 +575,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * synAckFloodThresholdTypeԵֵ
+ * 设置synAckFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -587,7 +587,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡsynFloodThresholdԵֵ
+ * 获取synFloodThreshold属性的值。
*
* @return
* possible object is
@@ -599,7 +599,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * synFloodThresholdԵֵ
+ * 设置synFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -611,7 +611,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡsynFloodThresholdTypeԵֵ
+ * 获取synFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -623,7 +623,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * synFloodThresholdTypeԵֵ
+ * 设置synFloodThresholdType属性的值。
*
* @param value
* allowed object is
@@ -635,7 +635,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡudpFloodThresholdԵֵ
+ * 获取udpFloodThreshold属性的值。
*
* @return
* possible object is
@@ -647,7 +647,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * udpFloodThresholdԵֵ
+ * 设置udpFloodThreshold属性的值。
*
* @param value
* allowed object is
@@ -659,7 +659,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * ȡudpFloodThresholdTypeԵֵ
+ * 获取udpFloodThresholdType属性的值。
*
* @return
* possible object is
@@ -671,7 +671,7 @@ public class AnomalyDetectionStrategy {
}
/**
- * udpFloodThresholdTypeԵֵ
+ * 设置udpFloodThresholdType属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/ArrayOfAnomalyDetectionStrategy.java b/src/main/java/com/dptech/dispose/ArrayOfAnomalyDetectionStrategy.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfAnomalyDetectionStrategy.java
rename to src/main/java/com/dptech/dispose/ArrayOfAnomalyDetectionStrategy.java
index 503ccc61..7d6810f0 100644
--- a/src/main/java/com/dptech/umc/ArrayOfAnomalyDetectionStrategy.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfAnomalyDetectionStrategy.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfAnomalyDetectionStrategy complex type Java ࡣ
+ *
ArrayOfAnomalyDetectionStrategy complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfAnomalyDetectionStrategy">
diff --git a/src/main/java/com/dptech/umc/ArrayOfBlackAndWhiteListDataForService.java b/src/main/java/com/dptech/dispose/ArrayOfBlackAndWhiteListDataForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfBlackAndWhiteListDataForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfBlackAndWhiteListDataForService.java
index ab89e8b5..b4e86b23 100644
--- a/src/main/java/com/dptech/umc/ArrayOfBlackAndWhiteListDataForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfBlackAndWhiteListDataForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfBlackAndWhiteListDataForService complex type Java ࡣ
+ *
ArrayOfBlackAndWhiteListDataForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfBlackAndWhiteListDataForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfBlackHoleAutoStrategyForService.java b/src/main/java/com/dptech/dispose/ArrayOfBlackHoleAutoStrategyForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfBlackHoleAutoStrategyForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfBlackHoleAutoStrategyForService.java
index 6e08aab1..8d09202a 100644
--- a/src/main/java/com/dptech/umc/ArrayOfBlackHoleAutoStrategyForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfBlackHoleAutoStrategyForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfBlackHoleAutoStrategyForService complex type Java ࡣ
+ *
ArrayOfBlackHoleAutoStrategyForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfBlackHoleAutoStrategyForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfBlackHoleManualStrategyForService.java b/src/main/java/com/dptech/dispose/ArrayOfBlackHoleManualStrategyForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfBlackHoleManualStrategyForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfBlackHoleManualStrategyForService.java
index f5976b17..276367b1 100644
--- a/src/main/java/com/dptech/umc/ArrayOfBlackHoleManualStrategyForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfBlackHoleManualStrategyForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfBlackHoleManualStrategyForService complex type Java ࡣ
+ *
ArrayOfBlackHoleManualStrategyForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfBlackHoleManualStrategyForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfBypassManualTractionStrategyForService.java b/src/main/java/com/dptech/dispose/ArrayOfBypassManualTractionStrategyForService.java
similarity index 95%
rename from src/main/java/com/dptech/umc/ArrayOfBypassManualTractionStrategyForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfBypassManualTractionStrategyForService.java
index 6f29dfba..2300513a 100644
--- a/src/main/java/com/dptech/umc/ArrayOfBypassManualTractionStrategyForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfBypassManualTractionStrategyForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfBypassManualTractionStrategyForService complex type Java ࡣ
+ *
ArrayOfBypassManualTractionStrategyForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfBypassManualTractionStrategyForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDdosACProtectionForService.java b/src/main/java/com/dptech/dispose/ArrayOfDdosACProtectionForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDdosACProtectionForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDdosACProtectionForService.java
index 39028d5b..2a958b6e 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDdosACProtectionForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDdosACProtectionForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDdosACProtectionForService complex type Java ࡣ
+ *
ArrayOfDdosACProtectionForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDdosACProtectionForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDdosCCuserGroupV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDdosCCuserGroupV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDdosCCuserGroupV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDdosCCuserGroupV4ForService.java
index f95be720..c631cb4e 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDdosCCuserGroupV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDdosCCuserGroupV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDdosCCuserGroupV4ForService complex type Java ࡣ
+ *
ArrayOfDdosCCuserGroupV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDdosCCuserGroupV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDdosDnsRetryProtectForService.java b/src/main/java/com/dptech/dispose/ArrayOfDdosDnsRetryProtectForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDdosDnsRetryProtectForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDdosDnsRetryProtectForService.java
index 52dfe24a..cbb39846 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDdosDnsRetryProtectForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDdosDnsRetryProtectForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDdosDnsRetryProtectForService complex type Java ࡣ
+ *
ArrayOfDdosDnsRetryProtectForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDdosDnsRetryProtectForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetSipCusProV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetSipCusProV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDdosHttpGetSipCusProV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetSipCusProV4ForService.java
index 32eadd9a..b639ba0c 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetSipCusProV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetSipCusProV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDdosHttpGetSipCusProV4ForService complex type Java ࡣ
+ *
ArrayOfDdosHttpGetSipCusProV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDdosHttpGetSipCusProV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetSipGloProV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetSipGloProV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDdosHttpGetSipGloProV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetSipGloProV4ForService.java
index 6f5742ec..f7ca04e6 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetSipGloProV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetSipGloProV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDdosHttpGetSipGloProV4ForService complex type Java ࡣ
+ *
ArrayOfDdosHttpGetSipGloProV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDdosHttpGetSipGloProV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetUriCusProV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetUriCusProV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDdosHttpGetUriCusProV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetUriCusProV4ForService.java
index 7c74bee3..b770a249 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetUriCusProV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetUriCusProV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDdosHttpGetUriCusProV4ForService complex type Java ࡣ
+ *
ArrayOfDdosHttpGetUriCusProV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDdosHttpGetUriCusProV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetUriGloProV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetUriGloProV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDdosHttpGetUriGloProV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetUriGloProV4ForService.java
index 128e0c5f..32bcd5e6 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDdosHttpGetUriGloProV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDdosHttpGetUriGloProV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDdosHttpGetUriGloProV4ForService complex type Java ࡣ
+ *
ArrayOfDdosHttpGetUriGloProV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDdosHttpGetUriGloProV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDetectionObjectDataForService.java b/src/main/java/com/dptech/dispose/ArrayOfDetectionObjectDataForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDetectionObjectDataForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDetectionObjectDataForService.java
index eb611540..939145c6 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDetectionObjectDataForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDetectionObjectDataForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDetectionObjectDataForService complex type Java ࡣ
+ *
ArrayOfDetectionObjectDataForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDetectionObjectDataForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDnsDomainCustomV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDnsDomainCustomV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDnsDomainCustomV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDnsDomainCustomV4ForService.java
index f54c0fb8..01a601aa 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDnsDomainCustomV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDnsDomainCustomV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDnsDomainCustomV4ForService complex type Java ࡣ
+ *
ArrayOfDnsDomainCustomV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDnsDomainCustomV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDnsDomainGlobalV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDnsDomainGlobalV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDnsDomainGlobalV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDnsDomainGlobalV4ForService.java
index 635a372e..7edba6a2 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDnsDomainGlobalV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDnsDomainGlobalV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDnsDomainGlobalV4ForService complex type Java ࡣ
+ *
ArrayOfDnsDomainGlobalV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDnsDomainGlobalV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDnsSecDomainCustomV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDnsSecDomainCustomV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDnsSecDomainCustomV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDnsSecDomainCustomV4ForService.java
index 7aa7ffa8..14166a8e 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDnsSecDomainCustomV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDnsSecDomainCustomV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDnsSecDomainCustomV4ForService complex type Java ࡣ
+ *
ArrayOfDnsSecDomainCustomV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDnsSecDomainCustomV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDnsSecDomainGlobalV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDnsSecDomainGlobalV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDnsSecDomainGlobalV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDnsSecDomainGlobalV4ForService.java
index 94bb08b7..f40d81ff 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDnsSecDomainGlobalV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDnsSecDomainGlobalV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDnsSecDomainGlobalV4ForService complex type Java ࡣ
+ *
ArrayOfDnsSecDomainGlobalV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDnsSecDomainGlobalV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDnsSipCustomV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDnsSipCustomV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDnsSipCustomV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDnsSipCustomV4ForService.java
index bd1bbbfd..d85ef028 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDnsSipCustomV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDnsSipCustomV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDnsSipCustomV4ForService complex type Java ࡣ
+ *
ArrayOfDnsSipCustomV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDnsSipCustomV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfDnsSipGlobalV4ForService.java b/src/main/java/com/dptech/dispose/ArrayOfDnsSipGlobalV4ForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfDnsSipGlobalV4ForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfDnsSipGlobalV4ForService.java
index 72c23a21..a1b658e4 100644
--- a/src/main/java/com/dptech/umc/ArrayOfDnsSipGlobalV4ForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfDnsSipGlobalV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfDnsSipGlobalV4ForService complex type Java ࡣ
+ *
ArrayOfDnsSipGlobalV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfDnsSipGlobalV4ForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfFingerprintIcmpForService.java b/src/main/java/com/dptech/dispose/ArrayOfFingerprintIcmpForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfFingerprintIcmpForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfFingerprintIcmpForService.java
index 06e4c01d..259cd24b 100644
--- a/src/main/java/com/dptech/umc/ArrayOfFingerprintIcmpForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfFingerprintIcmpForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfFingerprintIcmpForService complex type Java ࡣ
+ *
ArrayOfFingerprintIcmpForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfFingerprintIcmpForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfFingerprintOtherForService.java b/src/main/java/com/dptech/dispose/ArrayOfFingerprintOtherForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfFingerprintOtherForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfFingerprintOtherForService.java
index 0fb595c6..4939ae63 100644
--- a/src/main/java/com/dptech/umc/ArrayOfFingerprintOtherForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfFingerprintOtherForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfFingerprintOtherForService complex type Java ࡣ
+ *
ArrayOfFingerprintOtherForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfFingerprintOtherForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfFingerprintTcpForService.java b/src/main/java/com/dptech/dispose/ArrayOfFingerprintTcpForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfFingerprintTcpForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfFingerprintTcpForService.java
index eb608d31..451377e1 100644
--- a/src/main/java/com/dptech/umc/ArrayOfFingerprintTcpForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfFingerprintTcpForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfFingerprintTcpForService complex type Java ࡣ
+ *
ArrayOfFingerprintTcpForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfFingerprintTcpForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfFingerprintUdpForService.java b/src/main/java/com/dptech/dispose/ArrayOfFingerprintUdpForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfFingerprintUdpForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfFingerprintUdpForService.java
index 261e00d5..0a44acec 100644
--- a/src/main/java/com/dptech/umc/ArrayOfFingerprintUdpForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfFingerprintUdpForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfFingerprintUdpForService complex type Java ࡣ
+ *
ArrayOfFingerprintUdpForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfFingerprintUdpForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfProtectionObjectDataForService.java b/src/main/java/com/dptech/dispose/ArrayOfProtectionObjectDataForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfProtectionObjectDataForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfProtectionObjectDataForService.java
index 0381ae64..ca61f4dd 100644
--- a/src/main/java/com/dptech/umc/ArrayOfProtectionObjectDataForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfProtectionObjectDataForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfProtectionObjectDataForService complex type Java ࡣ
+ *
ArrayOfProtectionObjectDataForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfProtectionObjectDataForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfProtectionStrategyTemplateForService.java b/src/main/java/com/dptech/dispose/ArrayOfProtectionStrategyTemplateForService.java
similarity index 92%
rename from src/main/java/com/dptech/umc/ArrayOfProtectionStrategyTemplateForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfProtectionStrategyTemplateForService.java
index b1504c94..0df1588d 100644
--- a/src/main/java/com/dptech/umc/ArrayOfProtectionStrategyTemplateForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfProtectionStrategyTemplateForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfProtectionStrategyTemplateForService complex type Java ࡣ
+ *
ArrayOfProtectionStrategyTemplateForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfProtectionStrategyTemplateForService">
diff --git a/src/main/java/com/dptech/umc/ArrayOfProtectionTargetWithStrategyForService.java b/src/main/java/com/dptech/dispose/ArrayOfProtectionTargetWithStrategyForService.java
similarity index 95%
rename from src/main/java/com/dptech/umc/ArrayOfProtectionTargetWithStrategyForService.java
rename to src/main/java/com/dptech/dispose/ArrayOfProtectionTargetWithStrategyForService.java
index e5398c8b..f71e80c4 100644
--- a/src/main/java/com/dptech/umc/ArrayOfProtectionTargetWithStrategyForService.java
+++ b/src/main/java/com/dptech/dispose/ArrayOfProtectionTargetWithStrategyForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import java.util.ArrayList;
import java.util.List;
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * ArrayOfProtectionTargetWithStrategyForService complex type Java ࡣ
+ *
ArrayOfProtectionTargetWithStrategyForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="ArrayOfProtectionTargetWithStrategyForService">
diff --git a/src/main/java/com/dptech/umc/BlackAndWhiteListDataForService.java b/src/main/java/com/dptech/dispose/BlackAndWhiteListDataForService.java
similarity index 90%
rename from src/main/java/com/dptech/umc/BlackAndWhiteListDataForService.java
rename to src/main/java/com/dptech/dispose/BlackAndWhiteListDataForService.java
index 001dca0c..077eef51 100644
--- a/src/main/java/com/dptech/umc/BlackAndWhiteListDataForService.java
+++ b/src/main/java/com/dptech/dispose/BlackAndWhiteListDataForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * BlackAndWhiteListDataForService complex type Java ࡣ
+ *
BlackAndWhiteListDataForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="BlackAndWhiteListDataForService">
@@ -81,7 +81,7 @@ public class BlackAndWhiteListDataForService {
protected JAXBElement timeType;
/**
- * ȡdipEndIpԵֵ
+ * 获取dipEndIp属性的值。
*
* @return
* possible object is
@@ -93,7 +93,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * dipEndIpԵֵ
+ * 设置dipEndIp属性的值。
*
* @param value
* allowed object is
@@ -105,7 +105,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡdipStartIpԵֵ
+ * 获取dipStartIp属性的值。
*
* @return
* possible object is
@@ -117,7 +117,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * dipStartIpԵֵ
+ * 设置dipStartIp属性的值。
*
* @param value
* allowed object is
@@ -129,7 +129,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡdipTypeԵֵ
+ * 获取dipType属性的值。
*
* @return
* possible object is
@@ -141,7 +141,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * dipTypeԵֵ
+ * 设置dipType属性的值。
*
* @param value
* allowed object is
@@ -153,7 +153,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡhourԵֵ
+ * 获取hour属性的值。
*
* @return
* possible object is
@@ -165,7 +165,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * hourԵֵ
+ * 设置hour属性的值。
*
* @param value
* allowed object is
@@ -177,7 +177,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡminuteԵֵ
+ * 获取minute属性的值。
*
* @return
* possible object is
@@ -189,7 +189,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * minuteԵֵ
+ * 设置minute属性的值。
*
* @param value
* allowed object is
@@ -201,7 +201,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -213,7 +213,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -225,7 +225,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡprotectionTypeԵֵ
+ * 获取protectionType属性的值。
*
* @return
* possible object is
@@ -237,7 +237,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * protectionTypeԵֵ
+ * 设置protectionType属性的值。
*
* @param value
* allowed object is
@@ -249,7 +249,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡsecondԵֵ
+ * 获取second属性的值。
*
* @return
* possible object is
@@ -261,7 +261,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * secondԵֵ
+ * 设置second属性的值。
*
* @param value
* allowed object is
@@ -273,7 +273,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡsipEndIpԵֵ
+ * 获取sipEndIp属性的值。
*
* @return
* possible object is
@@ -285,7 +285,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * sipEndIpԵֵ
+ * 设置sipEndIp属性的值。
*
* @param value
* allowed object is
@@ -297,7 +297,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡsipStartIpԵֵ
+ * 获取sipStartIp属性的值。
*
* @return
* possible object is
@@ -309,7 +309,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * sipStartIpԵֵ
+ * 设置sipStartIp属性的值。
*
* @param value
* allowed object is
@@ -321,7 +321,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡsipTypeԵֵ
+ * 获取sipType属性的值。
*
* @return
* possible object is
@@ -333,7 +333,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * sipTypeԵֵ
+ * 设置sipType属性的值。
*
* @param value
* allowed object is
@@ -345,7 +345,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * ȡtimeTypeԵֵ
+ * 获取timeType属性的值。
*
* @return
* possible object is
@@ -357,7 +357,7 @@ public class BlackAndWhiteListDataForService {
}
/**
- * timeTypeԵֵ
+ * 设置timeType属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/BlackHoleAutoStrategyForService.java b/src/main/java/com/dptech/dispose/BlackHoleAutoStrategyForService.java
similarity index 87%
rename from src/main/java/com/dptech/umc/BlackHoleAutoStrategyForService.java
rename to src/main/java/com/dptech/dispose/BlackHoleAutoStrategyForService.java
index 22077cfd..88c7f489 100644
--- a/src/main/java/com/dptech/umc/BlackHoleAutoStrategyForService.java
+++ b/src/main/java/com/dptech/dispose/BlackHoleAutoStrategyForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * BlackHoleAutoStrategyForService complex type Java ࡣ
+ *
BlackHoleAutoStrategyForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="BlackHoleAutoStrategyForService">
@@ -50,7 +50,7 @@ public class BlackHoleAutoStrategyForService {
protected JAXBElement policyName;
/**
- * ȡblackHoleThresholdԵֵ
+ * 获取blackHoleThreshold属性的值。
*
* @return
* possible object is
@@ -62,7 +62,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * blackHoleThresholdԵֵ
+ * 设置blackHoleThreshold属性的值。
*
* @param value
* allowed object is
@@ -74,7 +74,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * ȡblackHoleTimeԵֵ
+ * 获取blackHoleTime属性的值。
*
* @return
* possible object is
@@ -86,7 +86,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * blackHoleTimeԵֵ
+ * 设置blackHoleTime属性的值。
*
* @param value
* allowed object is
@@ -98,7 +98,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * ȡdetectModeԵֵ
+ * 获取detectMode属性的值。
*
* @return
* possible object is
@@ -110,7 +110,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * detectModeԵֵ
+ * 设置detectMode属性的值。
*
* @param value
* allowed object is
@@ -122,7 +122,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * ȡdetectNameԵֵ
+ * 获取detectName属性的值。
*
* @return
* possible object is
@@ -134,7 +134,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * detectNameԵֵ
+ * 设置detectName属性的值。
*
* @param value
* allowed object is
@@ -146,7 +146,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * ȡpolicyNameԵֵ
+ * 获取policyName属性的值。
*
* @return
* possible object is
@@ -158,7 +158,7 @@ public class BlackHoleAutoStrategyForService {
}
/**
- * policyNameԵֵ
+ * 设置policyName属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/BlackHoleManualStrategyForService.java b/src/main/java/com/dptech/dispose/BlackHoleManualStrategyForService.java
similarity index 88%
rename from src/main/java/com/dptech/umc/BlackHoleManualStrategyForService.java
rename to src/main/java/com/dptech/dispose/BlackHoleManualStrategyForService.java
index bb00cc7d..2418db44 100644
--- a/src/main/java/com/dptech/umc/BlackHoleManualStrategyForService.java
+++ b/src/main/java/com/dptech/dispose/BlackHoleManualStrategyForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * BlackHoleManualStrategyForService complex type Java ࡣ
+ *
BlackHoleManualStrategyForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="BlackHoleManualStrategyForService">
@@ -45,7 +45,7 @@ public class BlackHoleManualStrategyForService {
protected JAXBElement policyName;
/**
- * ȡdetectNameԵֵ
+ * 获取detectName属性的值。
*
* @return
* possible object is
@@ -57,7 +57,7 @@ public class BlackHoleManualStrategyForService {
}
/**
- * detectNameԵֵ
+ * 设置detectName属性的值。
*
* @param value
* allowed object is
@@ -69,7 +69,7 @@ public class BlackHoleManualStrategyForService {
}
/**
- * ȡipAddressԵֵ
+ * 获取ipAddress属性的值。
*
* @return
* possible object is
@@ -81,7 +81,7 @@ public class BlackHoleManualStrategyForService {
}
/**
- * ipAddressԵֵ
+ * 设置ipAddress属性的值。
*
* @param value
* allowed object is
@@ -93,7 +93,7 @@ public class BlackHoleManualStrategyForService {
}
/**
- * ȡpolicyNameԵֵ
+ * 获取policyName属性的值。
*
* @return
* possible object is
@@ -105,7 +105,7 @@ public class BlackHoleManualStrategyForService {
}
/**
- * policyNameԵֵ
+ * 设置policyName属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/BypassManualTractionStrategyForService.java b/src/main/java/com/dptech/dispose/BypassManualTractionStrategyForService.java
similarity index 89%
rename from src/main/java/com/dptech/umc/BypassManualTractionStrategyForService.java
rename to src/main/java/com/dptech/dispose/BypassManualTractionStrategyForService.java
index eda5fb70..d35e532c 100644
--- a/src/main/java/com/dptech/umc/BypassManualTractionStrategyForService.java
+++ b/src/main/java/com/dptech/dispose/BypassManualTractionStrategyForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * BypassManualTractionStrategyForService complex type Java ࡣ
+ *
BypassManualTractionStrategyForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="BypassManualTractionStrategyForService">
@@ -49,7 +49,7 @@ public class BypassManualTractionStrategyForService {
protected JAXBElement protectName;
/**
- * ȡenabledԵֵ
+ * 获取enabled属性的值。
*
* @return
* possible object is
@@ -61,7 +61,7 @@ public class BypassManualTractionStrategyForService {
}
/**
- * enabledԵֵ
+ * 设置enabled属性的值。
*
* @param value
* allowed object is
@@ -73,7 +73,7 @@ public class BypassManualTractionStrategyForService {
}
/**
- * ȡipRangeԵֵ
+ * 获取ipRange属性的值。
*
* @return
* possible object is
@@ -85,7 +85,7 @@ public class BypassManualTractionStrategyForService {
}
/**
- * ipRangeԵֵ
+ * 设置ipRange属性的值。
*
* @param value
* allowed object is
@@ -97,7 +97,7 @@ public class BypassManualTractionStrategyForService {
}
/**
- * ȡpolicyNameԵֵ
+ * 获取policyName属性的值。
*
* @return
* possible object is
@@ -109,7 +109,7 @@ public class BypassManualTractionStrategyForService {
}
/**
- * policyNameԵֵ
+ * 设置policyName属性的值。
*
* @param value
* allowed object is
@@ -121,7 +121,7 @@ public class BypassManualTractionStrategyForService {
}
/**
- * ȡprotectNameԵֵ
+ * 获取protectName属性的值。
*
* @return
* possible object is
@@ -133,7 +133,7 @@ public class BypassManualTractionStrategyForService {
}
/**
- * protectNameԵֵ
+ * 设置protectName属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/DdosACProtectionForService.java b/src/main/java/com/dptech/dispose/DdosACProtectionForService.java
similarity index 90%
rename from src/main/java/com/dptech/umc/DdosACProtectionForService.java
rename to src/main/java/com/dptech/dispose/DdosACProtectionForService.java
index 8a552b6a..0290eeb7 100644
--- a/src/main/java/com/dptech/umc/DdosACProtectionForService.java
+++ b/src/main/java/com/dptech/dispose/DdosACProtectionForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * DdosACProtectionForService complex type Java ࡣ
+ *
DdosACProtectionForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="DdosACProtectionForService">
@@ -97,7 +97,7 @@ public class DdosACProtectionForService {
protected JAXBElement threshold;
/**
- * ȡacDipԵֵ
+ * 获取acDip属性的值。
*
* @return
* possible object is
@@ -109,7 +109,7 @@ public class DdosACProtectionForService {
}
/**
- * acDipԵֵ
+ * 设置acDip属性的值。
*
* @param value
* allowed object is
@@ -121,7 +121,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡacDmaskԵֵ
+ * 获取acDmask属性的值。
*
* @return
* possible object is
@@ -133,7 +133,7 @@ public class DdosACProtectionForService {
}
/**
- * acDmaskԵֵ
+ * 设置acDmask属性的值。
*
* @param value
* allowed object is
@@ -145,7 +145,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡacSipԵֵ
+ * 获取acSip属性的值。
*
* @return
* possible object is
@@ -157,7 +157,7 @@ public class DdosACProtectionForService {
}
/**
- * acSipԵֵ
+ * 设置acSip属性的值。
*
* @param value
* allowed object is
@@ -169,7 +169,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡacSmaskԵֵ
+ * 获取acSmask属性的值。
*
* @return
* possible object is
@@ -181,7 +181,7 @@ public class DdosACProtectionForService {
}
/**
- * acSmaskԵֵ
+ * 设置acSmask属性的值。
*
* @param value
* allowed object is
@@ -193,7 +193,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡdstPortMaxԵֵ
+ * 获取dstPortMax属性的值。
*
* @return
* possible object is
@@ -205,7 +205,7 @@ public class DdosACProtectionForService {
}
/**
- * dstPortMaxԵֵ
+ * 设置dstPortMax属性的值。
*
* @param value
* allowed object is
@@ -217,7 +217,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡdstPortMinԵֵ
+ * 获取dstPortMin属性的值。
*
* @return
* possible object is
@@ -229,7 +229,7 @@ public class DdosACProtectionForService {
}
/**
- * dstPortMinԵֵ
+ * 设置dstPortMin属性的值。
*
* @param value
* allowed object is
@@ -241,7 +241,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡendLocationԵֵ
+ * 获取endLocation属性的值。
*
* @return
* possible object is
@@ -253,7 +253,7 @@ public class DdosACProtectionForService {
}
/**
- * endLocationԵֵ
+ * 设置endLocation属性的值。
*
* @param value
* allowed object is
@@ -265,7 +265,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡfixStringԵֵ
+ * 获取fixString属性的值。
*
* @return
* possible object is
@@ -277,7 +277,7 @@ public class DdosACProtectionForService {
}
/**
- * fixStringԵֵ
+ * 设置fixString属性的值。
*
* @param value
* allowed object is
@@ -289,7 +289,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -301,7 +301,7 @@ public class DdosACProtectionForService {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -313,7 +313,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -325,7 +325,7 @@ public class DdosACProtectionForService {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -337,7 +337,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡprotocolԵֵ
+ * 获取protocol属性的值。
*
* @return
* possible object is
@@ -349,7 +349,7 @@ public class DdosACProtectionForService {
}
/**
- * protocolԵֵ
+ * 设置protocol属性的值。
*
* @param value
* allowed object is
@@ -361,7 +361,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡregularExpressionԵֵ
+ * 获取regularExpression属性的值。
*
* @return
* possible object is
@@ -373,7 +373,7 @@ public class DdosACProtectionForService {
}
/**
- * regularExpressionԵֵ
+ * 设置regularExpression属性的值。
*
* @param value
* allowed object is
@@ -385,7 +385,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡsrcPortMaxԵֵ
+ * 获取srcPortMax属性的值。
*
* @return
* possible object is
@@ -397,7 +397,7 @@ public class DdosACProtectionForService {
}
/**
- * srcPortMaxԵֵ
+ * 设置srcPortMax属性的值。
*
* @param value
* allowed object is
@@ -409,7 +409,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡsrcPortMinԵֵ
+ * 获取srcPortMin属性的值。
*
* @return
* possible object is
@@ -421,7 +421,7 @@ public class DdosACProtectionForService {
}
/**
- * srcPortMinԵֵ
+ * 设置srcPortMin属性的值。
*
* @param value
* allowed object is
@@ -433,7 +433,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡstartLocationԵֵ
+ * 获取startLocation属性的值。
*
* @return
* possible object is
@@ -445,7 +445,7 @@ public class DdosACProtectionForService {
}
/**
- * startLocationԵֵ
+ * 设置startLocation属性的值。
*
* @param value
* allowed object is
@@ -457,7 +457,7 @@ public class DdosACProtectionForService {
}
/**
- * ȡthresholdԵֵ
+ * 获取threshold属性的值。
*
* @return
* possible object is
@@ -469,7 +469,7 @@ public class DdosACProtectionForService {
}
/**
- * thresholdԵֵ
+ * 设置threshold属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/DdosCCuserGroupV4ForService.java b/src/main/java/com/dptech/dispose/DdosCCuserGroupV4ForService.java
similarity index 88%
rename from src/main/java/com/dptech/umc/DdosCCuserGroupV4ForService.java
rename to src/main/java/com/dptech/dispose/DdosCCuserGroupV4ForService.java
index 0ada1427..fcfecab8 100644
--- a/src/main/java/com/dptech/umc/DdosCCuserGroupV4ForService.java
+++ b/src/main/java/com/dptech/dispose/DdosCCuserGroupV4ForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * DdosCCuserGroupV4ForService complex type Java ࡣ
+ *
DdosCCuserGroupV4ForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="DdosCCuserGroupV4ForService">
@@ -41,7 +41,7 @@ public class DdosCCuserGroupV4ForService {
protected JAXBElement objName;
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -53,7 +53,7 @@ public class DdosCCuserGroupV4ForService {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -65,7 +65,7 @@ public class DdosCCuserGroupV4ForService {
}
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -77,7 +77,7 @@ public class DdosCCuserGroupV4ForService {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/DdosDnsRetryProtectForService.java b/src/main/java/com/dptech/dispose/DdosDnsRetryProtectForService.java
similarity index 89%
rename from src/main/java/com/dptech/umc/DdosDnsRetryProtectForService.java
rename to src/main/java/com/dptech/dispose/DdosDnsRetryProtectForService.java
index 4d497d71..a5fb68dd 100644
--- a/src/main/java/com/dptech/umc/DdosDnsRetryProtectForService.java
+++ b/src/main/java/com/dptech/dispose/DdosDnsRetryProtectForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * DdosDnsRetryProtectForService complex type Java ࡣ
+ *
DdosDnsRetryProtectForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="DdosDnsRetryProtectForService">
@@ -53,7 +53,7 @@ public class DdosDnsRetryProtectForService {
protected JAXBElement protectthreshold;
/**
- * ȡactionԵֵ
+ * 获取action属性的值。
*
* @return
* possible object is
@@ -65,7 +65,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * actionԵֵ
+ * 设置action属性的值。
*
* @param value
* allowed object is
@@ -77,7 +77,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * ȡalertthresholdԵֵ
+ * 获取alertthreshold属性的值。
*
* @return
* possible object is
@@ -89,7 +89,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * alertthresholdԵֵ
+ * 设置alertthreshold属性的值。
*
* @param value
* allowed object is
@@ -101,7 +101,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * ȡnameԵֵ
+ * 获取name属性的值。
*
* @return
* possible object is
@@ -113,7 +113,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * nameԵֵ
+ * 设置name属性的值。
*
* @param value
* allowed object is
@@ -125,7 +125,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -137,7 +137,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -149,7 +149,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * ȡprotectthresholdԵֵ
+ * 获取protectthreshold属性的值。
*
* @return
* possible object is
@@ -161,7 +161,7 @@ public class DdosDnsRetryProtectForService {
}
/**
- * protectthresholdԵֵ
+ * 设置protectthreshold属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/umc/DdosGlobalAckPayloadForService.java b/src/main/java/com/dptech/dispose/DdosGlobalAckPayloadForService.java
similarity index 88%
rename from src/main/java/com/dptech/umc/DdosGlobalAckPayloadForService.java
rename to src/main/java/com/dptech/dispose/DdosGlobalAckPayloadForService.java
index 310eeaf4..f9187be8 100644
--- a/src/main/java/com/dptech/umc/DdosGlobalAckPayloadForService.java
+++ b/src/main/java/com/dptech/dispose/DdosGlobalAckPayloadForService.java
@@ -1,5 +1,5 @@
-package com.dptech.umc;
+package com.dptech.dispose;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
/**
- * DdosGlobalAckPayloadForService complex type Java ࡣ
+ *
DdosGlobalAckPayloadForService complex type的 Java 类。
*
- *
ģʽƬָڴеԤݡ
+ *
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="DdosGlobalAckPayloadForService">
@@ -53,7 +53,7 @@ public class DdosGlobalAckPayloadForService {
protected JAXBElement payloadcontentenable;
/**
- * ȡobjNameԵֵ
+ * 获取objName属性的值。
*
* @return
* possible object is
@@ -65,7 +65,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * objNameԵֵ
+ * 设置objName属性的值。
*
* @param value
* allowed object is
@@ -77,7 +77,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * ȡpayloadOffsetMaxԵֵ
+ * 获取payloadOffsetMax属性的值。
*
* @return
* possible object is
@@ -89,7 +89,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * payloadOffsetMaxԵֵ
+ * 设置payloadOffsetMax属性的值。
*
* @param value
* allowed object is
@@ -101,7 +101,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * ȡpayloadOffsetMinԵֵ
+ * 获取payloadOffsetMin属性的值。
*
* @return
* possible object is
@@ -113,7 +113,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * payloadOffsetMinԵֵ
+ * 设置payloadOffsetMin属性的值。
*
* @param value
* allowed object is
@@ -125,7 +125,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * ȡpayloadThresholdԵֵ
+ * 获取payloadThreshold属性的值。
*
* @return
* possible object is
@@ -137,7 +137,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * payloadThresholdԵֵ
+ * 设置payloadThreshold属性的值。
*
* @param value
* allowed object is
@@ -149,7 +149,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * ȡpayloadcontentenableԵֵ
+ * 获取payloadcontentenable属性的值。
*
* @return
* possible object is
@@ -161,7 +161,7 @@ public class DdosGlobalAckPayloadForService {
}
/**
- * payloadcontentenableԵֵ
+ * 设置payloadcontentenable属性的值。
*
* @param value
* allowed object is
diff --git a/src/main/java/com/dptech/dispose/DdosGlobalIcmpFragForService.java b/src/main/java/com/dptech/dispose/DdosGlobalIcmpFragForService.java
new file mode 100644
index 00000000..76263439
--- /dev/null
+++ b/src/main/java/com/dptech/dispose/DdosGlobalIcmpFragForService.java
@@ -0,0 +1,119 @@
+
+package com.dptech.dispose;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * DdosGlobalIcmpFragForService complex type的 Java 类。
+ *
+ *
以下模式片段指定包含在此类中的预期内容。
+ *
+ *
+ * <complexType name="DdosGlobalIcmpFragForService">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="icmpenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="icmpthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DdosGlobalIcmpFragForService", namespace = "http://data.ntc.dp.com", propOrder = {
+ "icmpenable",
+ "icmpthreshold",
+ "objName"
+})
+public class DdosGlobalIcmpFragForService {
+
+ @XmlElementRef(name = "icmpenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement icmpenable;
+ @XmlElementRef(name = "icmpthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement icmpthreshold;
+ @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement objName;
+
+ /**
+ * 获取icmpenable属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getIcmpenable() {
+ return icmpenable;
+ }
+
+ /**
+ * 设置icmpenable属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setIcmpenable(JAXBElement value) {
+ this.icmpenable = value;
+ }
+
+ /**
+ * 获取icmpthreshold属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getIcmpthreshold() {
+ return icmpthreshold;
+ }
+
+ /**
+ * 设置icmpthreshold属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setIcmpthreshold(JAXBElement value) {
+ this.icmpthreshold = value;
+ }
+
+ /**
+ * 获取objName属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getObjName() {
+ return objName;
+ }
+
+ /**
+ * 设置objName属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setObjName(JAXBElement value) {
+ this.objName = value;
+ }
+
+}
diff --git a/src/main/java/com/dptech/dispose/DdosGlobalIcmpLengthForService.java b/src/main/java/com/dptech/dispose/DdosGlobalIcmpLengthForService.java
new file mode 100644
index 00000000..c83fb53c
--- /dev/null
+++ b/src/main/java/com/dptech/dispose/DdosGlobalIcmpLengthForService.java
@@ -0,0 +1,147 @@
+
+package com.dptech.dispose;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * DdosGlobalIcmpLengthForService complex type的 Java 类。
+ *
+ *
以下模式片段指定包含在此类中的预期内容。
+ *
+ *
+ * <complexType name="DdosGlobalIcmpLengthForService">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="lengthenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="maxlength" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="minlength" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DdosGlobalIcmpLengthForService", namespace = "http://data.ntc.dp.com", propOrder = {
+ "lengthenable",
+ "maxlength",
+ "minlength",
+ "objName"
+})
+public class DdosGlobalIcmpLengthForService {
+
+ @XmlElementRef(name = "lengthenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement lengthenable;
+ @XmlElementRef(name = "maxlength", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement maxlength;
+ @XmlElementRef(name = "minlength", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement minlength;
+ @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement objName;
+
+ /**
+ * 获取lengthenable属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getLengthenable() {
+ return lengthenable;
+ }
+
+ /**
+ * 设置lengthenable属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setLengthenable(JAXBElement value) {
+ this.lengthenable = value;
+ }
+
+ /**
+ * 获取maxlength属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getMaxlength() {
+ return maxlength;
+ }
+
+ /**
+ * 设置maxlength属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setMaxlength(JAXBElement value) {
+ this.maxlength = value;
+ }
+
+ /**
+ * 获取minlength属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getMinlength() {
+ return minlength;
+ }
+
+ /**
+ * 设置minlength属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setMinlength(JAXBElement value) {
+ this.minlength = value;
+ }
+
+ /**
+ * 获取objName属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getObjName() {
+ return objName;
+ }
+
+ /**
+ * 设置objName属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setObjName(JAXBElement value) {
+ this.objName = value;
+ }
+
+}
diff --git a/src/main/java/com/dptech/dispose/DdosGlobalIcmpPayloadForService.java b/src/main/java/com/dptech/dispose/DdosGlobalIcmpPayloadForService.java
new file mode 100644
index 00000000..94dc0d12
--- /dev/null
+++ b/src/main/java/com/dptech/dispose/DdosGlobalIcmpPayloadForService.java
@@ -0,0 +1,175 @@
+
+package com.dptech.dispose;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * DdosGlobalIcmpPayloadForService complex type的 Java 类。
+ *
+ *
以下模式片段指定包含在此类中的预期内容。
+ *
+ *
+ * <complexType name="DdosGlobalIcmpPayloadForService">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DdosGlobalIcmpPayloadForService", namespace = "http://data.ntc.dp.com", propOrder = {
+ "objName",
+ "payloadOffsetMax",
+ "payloadOffsetMin",
+ "payloadThreshold",
+ "payloadcontentenable"
+})
+public class DdosGlobalIcmpPayloadForService {
+
+ @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement objName;
+ @XmlElementRef(name = "payloadOffsetMax", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement payloadOffsetMax;
+ @XmlElementRef(name = "payloadOffsetMin", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement payloadOffsetMin;
+ @XmlElementRef(name = "payloadThreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement payloadThreshold;
+ @XmlElementRef(name = "payloadcontentenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement payloadcontentenable;
+
+ /**
+ * 获取objName属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getObjName() {
+ return objName;
+ }
+
+ /**
+ * 设置objName属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setObjName(JAXBElement value) {
+ this.objName = value;
+ }
+
+ /**
+ * 获取payloadOffsetMax属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getPayloadOffsetMax() {
+ return payloadOffsetMax;
+ }
+
+ /**
+ * 设置payloadOffsetMax属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setPayloadOffsetMax(JAXBElement value) {
+ this.payloadOffsetMax = value;
+ }
+
+ /**
+ * 获取payloadOffsetMin属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getPayloadOffsetMin() {
+ return payloadOffsetMin;
+ }
+
+ /**
+ * 设置payloadOffsetMin属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setPayloadOffsetMin(JAXBElement value) {
+ this.payloadOffsetMin = value;
+ }
+
+ /**
+ * 获取payloadThreshold属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getPayloadThreshold() {
+ return payloadThreshold;
+ }
+
+ /**
+ * 设置payloadThreshold属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setPayloadThreshold(JAXBElement value) {
+ this.payloadThreshold = value;
+ }
+
+ /**
+ * 获取payloadcontentenable属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getPayloadcontentenable() {
+ return payloadcontentenable;
+ }
+
+ /**
+ * 设置payloadcontentenable属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setPayloadcontentenable(JAXBElement value) {
+ this.payloadcontentenable = value;
+ }
+
+}
diff --git a/src/main/java/com/dptech/dispose/DdosGlobalOtherFragForService.java b/src/main/java/com/dptech/dispose/DdosGlobalOtherFragForService.java
new file mode 100644
index 00000000..1d4322ff
--- /dev/null
+++ b/src/main/java/com/dptech/dispose/DdosGlobalOtherFragForService.java
@@ -0,0 +1,119 @@
+
+package com.dptech.dispose;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * DdosGlobalOtherFragForService complex type的 Java 类。
+ *
+ *
以下模式片段指定包含在此类中的预期内容。
+ *
+ *
+ * <complexType name="DdosGlobalOtherFragForService">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="otherenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="otherthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DdosGlobalOtherFragForService", namespace = "http://data.ntc.dp.com", propOrder = {
+ "objName",
+ "otherenable",
+ "otherthreshold"
+})
+public class DdosGlobalOtherFragForService {
+
+ @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement objName;
+ @XmlElementRef(name = "otherenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement otherenable;
+ @XmlElementRef(name = "otherthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
+ protected JAXBElement otherthreshold;
+
+ /**
+ * 获取objName属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getObjName() {
+ return objName;
+ }
+
+ /**
+ * 设置objName属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setObjName(JAXBElement value) {
+ this.objName = value;
+ }
+
+ /**
+ * 获取otherenable属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getOtherenable() {
+ return otherenable;
+ }
+
+ /**
+ * 设置otherenable属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setOtherenable(JAXBElement value) {
+ this.otherenable = value;
+ }
+
+ /**
+ * 获取otherthreshold属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public JAXBElement getOtherthreshold() {
+ return otherthreshold;
+ }
+
+ /**
+ * 设置otherthreshold属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ *
+ */
+ public void setOtherthreshold(JAXBElement value) {
+ this.otherthreshold = value;
+ }
+
+}
diff --git a/src/main/java/com/dptech/dispose/DdosGlobalSynFloodForService.java b/src/main/java/com/dptech/dispose/DdosGlobalSynFloodForService.java
new file mode 100644
index 00000000..483cfb15
--- /dev/null
+++ b/src/main/java/com/dptech/dispose/DdosGlobalSynFloodForService.java
@@ -0,0 +1,147 @@
+
+package com.dptech.dispose;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *