diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 78203bdb..00000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -# Default ignored files -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -/intellij-javadocs-4.0.1.xml -/sqldialects.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 00000000..75710ead --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +phoenix-boot \ No newline at end of file diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml deleted file mode 100644 index 4d74162f..00000000 --- a/.idea/checkstyle-idea.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/checkstyleidea-libs/readme.txt b/.idea/checkstyleidea-libs/readme.txt deleted file mode 100644 index 0c0262b6..00000000 --- a/.idea/checkstyleidea-libs/readme.txt +++ /dev/null @@ -1,6 +0,0 @@ -This folder contains libraries copied from the "phoenix_ddos_handle" project. -It is managed by the CheckStyle-IDEA IDE plugin. -Do not modify this folder while the IDE is running. -When the IDE is stopped, you may delete this folder at any time. It will be recreated as needed. -In order to prevent the CheckStyle-IDEA IDE plugin from creating this folder, -uncheck the "Copy libraries from project directory" option in the CheckStyle-IDEA settings dialog. diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 4ff9ea74..6f0ca870 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -2,7 +2,6 @@ - @@ -12,7 +11,6 @@ - \ No newline at end of file diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml deleted file mode 100644 index d23598aa..00000000 --- a/.idea/dataSources.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - mysql.8 - true - com.mysql.cj.jdbc.Driver - jdbc:mysql://172.28.72.118:33061/ - - - \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml index 78bf31cb..aa00ffab 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -3,6 +3,5 @@ - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index b000b0f5..920df0a2 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -8,10 +8,9 @@ - + \ No newline at end of file diff --git a/.idea/sqldialects.xml.abc b/.idea/sqldialects.xml.abc deleted file mode 100644 index 96bade10..00000000 --- a/.idea/sqldialects.xml.abc +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 94a25f7f..35eb1ddf 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/bin/log_clean.sh b/bin/log_clean.sh deleted file mode 100644 index 2d03a517..00000000 --- a/bin/log_clean.sh +++ /dev/null @@ -1,3 +0,0 @@ -# 把下面语句编辑到crontab里,定时清理日志,每天凌晨1点清理日志,保留7天日志 - -0 1 * * * find /apprun/phoenix-boot/logs -mtime +7 -name "*.log.*" -exec rm -rf {} \; \ No newline at end of file diff --git a/bin/processor_check.sh b/bin/processor_check.sh deleted file mode 100644 index c534ba25..00000000 --- a/bin/processor_check.sh +++ /dev/null @@ -1,26 +0,0 @@ -# crontab里加上进程自动拉起任务,做个简单的监控 -# */1 * * * * source /etc/profile;sh /apprun/${YOUR_APP_NAME}/bin/processor_check.sh -# processor_check.sh脚本内容如下 - -#!/bin/bash -APP_NAME=phoenix-boot.jar -WORK_PATH=$(cd `dirname $0`; pwd) - -pids=`ps -ef | grep $APP_NAME | grep -v grep | wc -l` -if [ "$pids" -le 0 ] -then - echo "start $APP_NAME processor ......" - cd $WORK_PATH - cd .. - nohup sh bin/start.sh >/dev/null 2>&1 & - sleep 5 - pids=`ps -ef | grep $APP_NAME | grep -v grep | wc -l` - if [ "$pids" -gt 0 ] - then - echo "$APP_NAME processor started" - else - echo "Failed to start $APP_NAME processor" - fi -else - echo "$APP_NAME processor is running ......" -fi \ No newline at end of file diff --git a/bin/start.sh b/bin/start.sh deleted file mode 100644 index 4b13f70e..00000000 --- a/bin/start.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -JAVA_DEBUG_OPTS=" -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n " -JAVA_JMX_OPTS=" -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false " -JAVA_OPTS="-Djava.security.egd=file:/dev/./urandom -server -Xms512M -Xmx512M -Xss256K -XX:MetaspaceSize=16M -XX:MaxMetaspaceSize=128M -XX:MaxDirectMemorySize=1g -XX:SurvivorRatio=8 -XX:+UseG1GC -XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp/heapdump.hprof" -WORK_PATH=$(cd `dirname $0`; pwd) -cd $WORK_PATH -cd .. -$JAVA_HOME/bin/java $JAVA_DEBUG_OPTS $JAVA_JMX_OPTS $JAVA_OPTS -jar phoenix-boot.jar diff --git a/bin/stop.sh b/bin/stop.sh deleted file mode 100644 index 22a18a57..00000000 --- a/bin/stop.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -APP_NAME=phoenix-boot.jar - -pids=`ps -ef | grep $APP_NAME | grep -v grep | awk '{print $2}'` -for pid in $pids -do - echo stop $APP_NAME java process: $pid - kill -9 $pid -done - -nr_pids=`ps -ef | grep $APP_NAME | grep -v grep | wc -l` -while [ $nr_pids -gt 0 ] -do - nr_pids=`ps -ef | grep $APP_NAME | grep -v grep | wc -l` -done \ No newline at end of file diff --git a/pom.xml b/pom.xml index c7b5cb0b..a5ca4f32 100644 --- a/pom.xml +++ b/pom.xml @@ -219,7 +219,7 @@ - com.cmcc.hy.phoenix.PhoenixBootApplication + com.dispose.PhoenixBootApplication true lib/ diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/MyRequestBodyAdvice.java b/src/main/java/com/cmcc/hy/phoenix/aop/MyRequestBodyAdvice.java deleted file mode 100644 index 8e1bfe6e..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/aop/MyRequestBodyAdvice.java +++ /dev/null @@ -1,110 +0,0 @@ -package com.cmcc.hy.phoenix.aop; - -import java.io.IOException; -import java.io.InputStream; -import java.lang.reflect.Type; -import java.nio.charset.StandardCharsets; - -import javax.annotation.Resource; - -import org.apache.commons.codec.binary.Base64; -import org.apache.commons.io.IOUtils; -import org.springframework.core.MethodParameter; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpInputMessage; -import org.springframework.http.converter.HttpMessageConverter; -import org.springframework.web.bind.annotation.ControllerAdvice; -import org.springframework.web.servlet.mvc.method.annotation.RequestBodyAdvice; - -import com.cmcc.aqb.enc.dec.AesECB; -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; -import com.cmcc.hy.phoenix.config.MyConfig; - -import lombok.extern.slf4j.Slf4j; - -/** - * - * - * @author phoenix - * @date 2020年2月10日 - */ -@Slf4j -@ControllerAdvice(basePackages = { "com.cmcc.hy.phoenix.controller" }) -public class MyRequestBodyAdvice implements RequestBodyAdvice { - - @Resource - private MyConfig myConfig; - - @Override - public boolean supports(MethodParameter methodParameter, Type targetType, - Class> converterType) { - // TODO Auto-generated method stub - return Boolean.parseBoolean(myConfig.getRequestDecSwitch()); - } - - @Override - public HttpInputMessage beforeBodyRead(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, - Class> converterType) throws IOException { - // TODO Auto-generated method stub - if (parameter.hasMethodAnnotation(ReqDec.class)) { - try { - return decBody(inputMessage); - } catch (Exception e) { - log.error("报文解密异常", e); - throw new RuntimeException(e); - } - } - return inputMessage; - } - - private HttpInputMessage decBody(HttpInputMessage inputMessage) throws Exception { - String enc = IOUtils.toString(inputMessage.getBody(), StandardCharsets.UTF_8); - log.info("接收密文: {}", enc); - String plain = new String(AesECB.decByAes(Base64.decodeBase64(enc), myConfig.getAesKey())); - log.info("解密明文: {}", plain); - InputStream is = IOUtils.toInputStream(plain, "UTF-8"); - return new MyHttpInputMessage(inputMessage.getHeaders(), is); - } - - @Override - public Object afterBodyRead(Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, - Class> converterType) { - // TODO Auto-generated method stub - log.info("RequestBodyAdvice afterBodyRead body {}", body); - return body; - } - - @Override - public Object handleEmptyBody(Object body, HttpInputMessage inputMessage, MethodParameter parameter, - Type targetType, Class> converterType) { - // TODO Auto-generated method stub - log.info("RequestBodyAdvice handleEmptyBody body {}", body); - return body; - } - -} - -class MyHttpInputMessage implements HttpInputMessage { - - private HttpHeaders headers; - - private InputStream body; - - public MyHttpInputMessage(HttpHeaders headers, InputStream body) throws Exception { - this.headers = headers; - this.body = body; - } - - @Override - public HttpHeaders getHeaders() { - // TODO Auto-generated method stub - return headers; - } - - @Override - public InputStream getBody() throws IOException { - // TODO Auto-generated method stub - return body; - } - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/MyResponseBodyAdvice.java b/src/main/java/com/cmcc/hy/phoenix/aop/MyResponseBodyAdvice.java deleted file mode 100644 index 9fb6029e..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/aop/MyResponseBodyAdvice.java +++ /dev/null @@ -1,71 +0,0 @@ -package com.cmcc.hy.phoenix.aop; - -import java.nio.charset.StandardCharsets; - -import javax.annotation.Resource; - -import org.apache.commons.codec.binary.Base64; -import org.apache.commons.lang3.StringUtils; -import org.springframework.core.MethodParameter; -import org.springframework.http.MediaType; -import org.springframework.http.converter.HttpMessageConverter; -import org.springframework.http.server.ServerHttpRequest; -import org.springframework.http.server.ServerHttpResponse; -import org.springframework.web.bind.annotation.ControllerAdvice; -import org.springframework.web.servlet.mvc.method.annotation.ResponseBodyAdvice; - -import com.cmcc.aqb.enc.dec.AesECB; -import com.cmcc.hy.phoenix.annotation.bodyencdec.RespEnc; -import com.cmcc.hy.phoenix.config.MyConfig; -import com.cmcc.hy.phoenix.pojo.vo.MyResp; -import com.cmcc.hy.phoenix.pojo.vo.Resp; - -import lombok.extern.slf4j.Slf4j; - -/** - * - * - * @author phoenix - * @date 2020年2月10日 - */ -@Slf4j -@ControllerAdvice(basePackages = { "com.cmcc.hy.phoenix.controller" }) -public class MyResponseBodyAdvice implements ResponseBodyAdvice { - - @Resource - private MyConfig myConfig; - - @Override - public boolean supports(MethodParameter returnType, Class> converterType) { - // TODO Auto-generated method stub - return returnType.hasMethodAnnotation(RespEnc.class) && Boolean.parseBoolean(myConfig.getResponseEncSwitch()); - } - - @Override - public Object beforeBodyWrite(Object body, MethodParameter returnType, MediaType selectedContentType, - Class> selectedConverterType, ServerHttpRequest request, - ServerHttpResponse response) { - // TODO Auto-generated method stub - if (body != null) { - try { - MyResp resp = (MyResp) body; - String data = (String) resp.getData(); - if (StringUtils.isNotEmpty(data)) { - String newData = Base64.encodeBase64String( - AesECB.encByAes(data.getBytes(StandardCharsets.UTF_8), myConfig.getAesKey())); - resp.setData(newData); - return resp; - } else { - if (Resp.SUCCESS.getCode() != resp.getCode()) { - return resp; - } - } - } catch (Exception e) { - log.error("response数据加密异常", e); - return MyResp.result(Resp.ERROR); - } - } - return body; - } - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/AuthController.java b/src/main/java/com/cmcc/hy/phoenix/controller/AuthController.java deleted file mode 100644 index c0aaebce..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/AuthController.java +++ /dev/null @@ -1,144 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; -import com.cmcc.hy.phoenix.pojo.vo.*; -import com.cmcc.hy.phoenix.service.LoginService; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.Builder; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.HttpHeaders; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.*; - -import javax.annotation.Resource; -import java.security.NoSuchAlgorithmException; -import java.util.*; - -@Controller -@RequestMapping(value = "/handle") -@Slf4j -@Api(value = "抗DDoS处置平台认证接口", tags = "抗DDoS处置平台认证接口") -@Component -public class AuthController { - @Resource - private ObjectMapper objectMapper; - - @Resource - private LoginService loginService; - - @PostMapping("/login") - @ResponseBody - @ApiOperation("登录") - @ReqDec - @Builder - public ProtocolResp userLogin(@RequestBody(required = true) ProtocolDTO mr, - @RequestHeader HttpHeaders headers) { - String msgCtx = ""; - ErrorCode err = ErrorCode.ERR_OK; - - log.info("请求token: {}", headers.get("Authorization")); - log.info("请求参数 {}", mr); - - - if(mr == null) { - err = ErrorCode.ERR_PARAMS; - return ProtocolResp.result(err, -1, msgCtx); - } else if (mr.IsRequestTimeout()) { - err = ErrorCode.ERR_REQTIMEOUT; - } else { - try { - if(mr.getCmdId() == ConstValue.ProtocolCmdId.AUTH_LOGIN) { - EnumMap loginMap = userLogin(mr); - err = loginMap.keySet().iterator().next(); - msgCtx = loginMap.get(err); - } else if (mr.getCmdId() == ConstValue.ProtocolCmdId.AUTH_LOGOUT) { - if(headers.get("Authorization") == null) { - err = ErrorCode.ERR_MISSAUTHHEAD; - } else { - String token = Objects. - requireNonNull(headers.get("Authorization")) - .get(0).replaceFirst("Bearer ", ""); - - err = loginService.authTokenCheck(token); - - EnumMap loginMap = userLogout(mr, token); - err = loginMap.keySet().iterator().next(); - msgCtx = loginMap.get(err); - } - }else { - err = ErrorCode.ERR_UNKNOWNCMD; - } - } catch (JsonProcessingException | NoSuchAlgorithmException ex) { - log.error(ex.getMessage()); - err = ErrorCode.ERR_EXCEPTION; - } - } - - return ProtocolResp.result(err, mr.getCmdId(), msgCtx); - } - - private EnumMap userLogout(ProtocolDTO mr, String token) - throws JsonProcessingException { - EnumMap retMap = new EnumMap<>(ErrorCode.class); - ErrorCode err = ErrorCode.ERR_OK; - - UserLogoutRsp rspInfo = UserLogoutRsp.builder() - .userName("") - .status(err.getCode()) - .message(err.getMsg()).build(); - - UserLogoutReq reqInfo = objectMapper.readValue(mr.getMsgContent(), UserLogoutReq.class); - rspInfo.setUserName(reqInfo.getUserName()); - - err = loginService.logoutService(reqInfo.userName, token); - - rspInfo.setStatus(err.getCode()); - rspInfo.setMessage(err.getMsg()); - - retMap.put(err, objectMapper.writeValueAsString(rspInfo)); - - return retMap; - } - - private EnumMap userLogin(ProtocolDTO mr) - throws NoSuchAlgorithmException, JsonProcessingException { - EnumMap retMap = new EnumMap<>(ErrorCode.class); - ErrorCode err = ErrorCode.ERR_OK; - - UserLoginRsp rspInfo = UserLoginRsp.builder() - .userName("") - .token("") - .status(err.getCode()) - .message(err.getMsg()) - .expireTime(0L) - .logTime(System.currentTimeMillis()).build(); - - UserLoginReq reqInfo = objectMapper.readValue(mr.getMsgContent(), UserLoginReq.class); - - rspInfo.setUserName(reqInfo.getUserName()); - - EnumMap logMap = loginService.loginService(reqInfo.getUserName(), - reqInfo.getPassword()); - - if(logMap.isEmpty()) { - err = ErrorCode.ERR_USERNOTFOUND; - } else { - err = logMap.keySet().iterator().next(); - rspInfo.setToken(logMap.get(err)); - } - - rspInfo.setStatus(err.getCode()); - rspInfo.setMessage(err.getMsg()); - - retMap.put(err, objectMapper.writeValueAsString(rspInfo)); - - return retMap; - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/DebugController.java b/src/main/java/com/cmcc/hy/phoenix/controller/DebugController.java deleted file mode 100644 index 0da0b29b..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/DebugController.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; -import com.cmcc.hy.phoenix.pojo.vo.ProtocolResp; -import com.cmcc.hy.phoenix.service.DisposeDeviceManager; -import com.cmcc.hy.phoenix.service.UserAccountCacheService; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.Builder; -import lombok.extern.slf4j.Slf4j; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseBody; - -import javax.annotation.Resource; - -@Controller -@RequestMapping(value = "/debug") -@Slf4j -@Api(value = "抗DDoS处置平台调试接口", tags = "抗DDoS处置平台调试接口") -@Component -public class DebugController { - @Resource - private ObjectMapper objectMapper; - - @Resource - private UserAccountCacheService userAccountService; - - @Resource - private DisposeDeviceManager disposeDevMgr; - - @GetMapping("/cacheuser") - @ResponseBody - @ApiOperation("获取缓存用户") - @ReqDec - @Builder - public ProtocolResp getCacheUsers(@RequestBody(required = true) ProtocolDTO mr) throws JsonProcessingException { - - return ProtocolResp.result(ErrorCode.ERR_OK, -1, userAccountService.getCacheUser()); - - } - - @GetMapping("/devs") - @ResponseBody - @ApiOperation("获取所有处置设备") - @ReqDec - @Builder - public ProtocolResp getDisposeDevs(@RequestBody(required = true) ProtocolDTO mr) throws JsonProcessingException { - - return ProtocolResp.result(ErrorCode.ERR_OK, - -1, - objectMapper.writeValueAsString(disposeDevMgr.getAllDisposeDevs())); - - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/DemoController.java b/src/main/java/com/cmcc/hy/phoenix/controller/DemoController.java deleted file mode 100644 index 575156e8..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/DemoController.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import com.cmcc.hy.phoenix.pojo.Save; -import com.cmcc.hy.phoenix.pojo.Update; -import com.cmcc.hy.phoenix.pojo.dto.DemoDTO; - -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RestController; - -/** - * - * - * @author phoenix - * @date 2020年2月8日 - */ -@RestController -public class DemoController { - - /** - * @Validated中group定义验证边界,Save说明只验证DemoDTO中的username和age - * @see com.cmcc.hy.phoenix.controller.IDemoController#save(com.cmcc.hy.phoenix.pojo.dto.DemoDTO) - */ - @PostMapping("/demo") - public DemoDTO save(@RequestBody @Validated({ Save.class }) DemoDTO demoDTO) { - return demoDTO; - } - - @PutMapping("/demo") - public DemoDTO update(@RequestBody @Validated({ Update.class }) DemoDTO demoDTO) { - return demoDTO; - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/DisposeInfoController.java b/src/main/java/com/cmcc/hy/phoenix/controller/DisposeInfoController.java deleted file mode 100644 index 57e86cf2..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/DisposeInfoController.java +++ /dev/null @@ -1,213 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.cmcc.hy.phoenix.pojo.po.DeviceCapacityInfo; -import com.cmcc.hy.phoenix.pojo.po.DisposeDeviceInfo; -import com.cmcc.hy.phoenix.pojo.vo.*; -import com.cmcc.hy.phoenix.pojo.po.DisposeCapacityInfo; -import com.cmcc.hy.phoenix.service.DisposeDeviceManager; -import com.cmcc.hy.phoenix.service.LoginService; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter; -import com.fasterxml.jackson.databind.ser.impl.SimpleFilterProvider; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.Builder; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.HttpHeaders; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseBody; -import org.springframework.web.bind.annotation.RequestHeader; - -import javax.annotation.Resource; -import java.io.IOException; -import java.util.*; - -import static com.cmcc.hy.phoenix.common.ErrorCode.ERR_OK; - -@Controller -@RequestMapping(value = "/handle") -@Slf4j -@Api(value = "抗DDoS处置平台认证接口", tags = "抗DDoS处置平台认证接口") -@Component -public class DisposeInfoController { - @Resource - private ObjectMapper objectMapper; - - @Resource - private LoginService loginService; - - @Resource - private DisposeDeviceManager deviceManager; - - SimpleFilterProvider filterProvider = new SimpleFilterProvider(); - - @PostMapping("/information") - @ResponseBody - @ApiOperation("获取节点信息") - @ReqDec - @Builder - public ProtocolResp disposeInfo(@RequestBody(required = true) ProtocolDTO mr, - @RequestHeader HttpHeaders headers){ - // 存放返回信息Json字符串 - String msgCtx = ""; - ErrorCode err = ERR_OK; - - log.info("请求token: {}", headers.get("Authorization")); - log.info("请求参数 {}", mr); - - // 参数检测 - if (mr == null) { - err = ErrorCode.ERR_PARAMS; - return ProtocolResp.result(err, -1, msgCtx); - } else if (mr.IsRequestTimeout()) { - err = ErrorCode.ERR_REQTIMEOUT; - } else { - try{ - // 获取 Token - String token = Objects - .requireNonNull(headers.get("Authorization")) - .get(0).replaceFirst("Bearer ", ""); - - // 判断Head头是否存在 - if (headers.get("Authorization") == null) { - err = ErrorCode.ERR_MISSAUTHHEAD; - } else if ((err = loginService.authTokenCheck(token)) == ERR_OK) { - // Token 正确则处理业务 - switch (mr.getCmdId()) { - case ConstValue.ProtocolCmdId.GET_DISPOSE_POINT_CATACITY: - msgCtx = getDevCapInfo(mr); - break; - case ConstValue.ProtocolCmdId.GET_DISPOSE_POINT_LIST: - msgCtx = getDisposeDevicesList(); - break; - - case ConstValue.ProtocolCmdId.GET_DISPOSE_POINT_DETAILS: - msgCtx = getDisposeDevicesDetails(mr); - break; - - - default: - err = ErrorCode.ERR_UNKNOWNCMD; - } - } - } catch (JsonProcessingException ex) { - log.error(ex.getMessage()); - ex.printStackTrace(); - err = ErrorCode.ERR_EXCEPTION; - } catch (IOException e) { - e.printStackTrace(); - err = ErrorCode.ERR_EXCEPTION; - } - } - - if(err != ERR_OK) { - msgCtx = err.getMsg(); - } - - return ProtocolResp.result(err, mr.getCmdId(), msgCtx); - } - - private String getDisposeDevicesList() throws IOException { - DisposeDevicesResp rspInfo = new DisposeDevicesResp(new ArrayList<>()); - - Map devs = deviceManager.getAllDisposeDevs(); - - devs.forEach((k, v) -> { - rspInfo.getItems().add(DisposeDeviceInfo.builder() - .id(String.valueOf(v.getId())) - .type(v.getType()) - .name(v.getName()) - .ip(v.getIpv4()).build()); - }); - - String[] filterItems = new String[] {"areaCode", "readme", "capacity"}; - filterProvider.addFilter("DeviceInfo", //添加过滤器名称 - SimpleBeanPropertyFilter.serializeAllExcept(filterItems)); - - objectMapper.setFilterProvider(filterProvider); - - return objectMapper.writeValueAsString(rspInfo); - } - - private String getDisposeDevicesDetails(ProtocolDTO mr) throws JsonProcessingException { - DisposeDevicesResp rspInfo = new DisposeDevicesResp(new ArrayList<>()); - - GetInfoById reqInfo = objectMapper.readValue(mr.getMsgContent(), GetInfoById.class); - - Map devs = deviceManager.getAllDisposeDevs(); - - devs.forEach((k, v) -> { - if(Arrays.stream(reqInfo.getId()).anyMatch(str -> str.equals(String.valueOf(v.getId())))) { - List devCaps = new ArrayList<>(); - - v.getDevCaps().forEach(m -> { - DeviceCapacityInfo devCapInfo = DeviceCapacityInfo.builder() - .capacity(m.getCapacity()) - .tolFlowCapacity(m.getTolFlowCapacity()) - .build(); - if(m.getCapacity() == ConstValue.DisposeDeviceCapacity.CLEANUP.getCode()) { - devCapInfo.setDisposeIp(v.getDisposeIp().toArray(new String[v.getDisposeIp().size()])); - } - devCaps.add(devCapInfo); - }); - - rspInfo.getItems().add(DisposeDeviceInfo.builder() - .id(String.valueOf(v.getId())) - .type(v.getType()) - .name(v.getName()) - .ip(v.getIpv4()) - .areaCode(v.getAreaCode()) - .readme(v.getReadme()) - .capacity(devCaps) - .build()); - } - }); - - String[] filterItems = new String[] {}; - filterProvider.addFilter("DeviceInfo", //添加过滤器名称 - SimpleBeanPropertyFilter.serializeAllExcept(filterItems)); - filterProvider.addFilter("DeviceCapacityInfo", //添加过滤器名称 - SimpleBeanPropertyFilter.serializeAllExcept(filterItems)); - - objectMapper.setFilterProvider(filterProvider); - - return objectMapper.writeValueAsString(rspInfo); - } - - private String getDevCapInfo(ProtocolDTO mr) throws JsonProcessingException { - - DisposeCapacityResp rspInfo = new DisposeCapacityResp(new ArrayList<>()); - - GetInfoById reqInfo = objectMapper.readValue(mr.getMsgContent(), GetInfoById.class); - - for (String v: reqInfo.getId() - ) { - - List capInfo = deviceManager.getDeviceCapacityInfoByDeviceId(Long.valueOf(v)); - - DisposeCapacityInfo ret = DisposeCapacityInfo.builder() - .id(v) - .capacity(capInfo).build(); - - rspInfo.getItems().add(ret); - } - - String[] filterItems = new String[] {"disposeIp"}; - filterProvider.addFilter("DeviceCapacityInfo", //添加过滤器名称 - SimpleBeanPropertyFilter.serializeAllExcept(filterItems)); - - objectMapper.setFilterProvider(filterProvider); - - return objectMapper.writeValueAsString(rspInfo); - } -} \ No newline at end of file diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/DisposePointController.java b/src/main/java/com/cmcc/hy/phoenix/controller/DisposePointController.java deleted file mode 100644 index 83f06664..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/DisposePointController.java +++ /dev/null @@ -1,145 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; -import com.cmcc.hy.phoenix.pojo.entity.DeviceCapacity; -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.cmcc.hy.phoenix.pojo.po.DeviceCmdInfo; -import com.cmcc.hy.phoenix.pojo.vo.AddDispointPointReq; -import com.cmcc.hy.phoenix.pojo.vo.DevManagerResp; -import com.cmcc.hy.phoenix.pojo.vo.ProtocolResp; -import com.cmcc.hy.phoenix.service.DisposeDeviceManager; -import com.cmcc.hy.phoenix.service.LoginService; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.Builder; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.HttpHeaders; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.*; - -import javax.annotation.Resource; -import java.security.NoSuchAlgorithmException; -import java.util.ArrayList; -import java.util.EnumMap; -import java.util.List; -import java.util.Objects; - -import static com.cmcc.hy.phoenix.common.ErrorCode.ERR_OK; - -@Controller -@RequestMapping(value = "/handle") -@Slf4j -@Api(value = "抗DDoS处置平台认证接口", tags = "抗DDoS处置平台认证接口") -@Component -public class DisposePointController { - - @Resource - private ObjectMapper objectMapper; - - @Resource - private LoginService loginService; - - @Resource - private DisposeDeviceManager disposeDeviceManager; - - @PostMapping("/manager") - @ResponseBody - @ApiOperation("节点管理") - @ReqDec - @Builder - public ProtocolResp disposePointManager(@RequestBody(required = true) ProtocolDTO mr, - @RequestHeader HttpHeaders headers) { - // 存放返回信息Json字符串 - String msgCtx = ""; - ErrorCode err = ERR_OK; - - log.info("请求token: {}", headers.get("Authorization")); - log.info("请求参数 {}", mr); - - // 参数检测 - if (mr == null) { - err = ErrorCode.ERR_PARAMS; - return ProtocolResp.result(err, -1, msgCtx); - } else if (mr.IsRequestTimeout()) { - err = ErrorCode.ERR_REQTIMEOUT; - } else { - try { - // 获取 Token - String token = Objects. - requireNonNull(headers.get("Authorization")) - .get(0).replaceFirst("Bearer ", ""); - - // 判断Head头是否存在 - if (headers.get("Authorization") == null) { - err = ErrorCode.ERR_MISSAUTHHEAD; - } else if ((err = loginService.authTokenCheck(token)) == ERR_OK) { - // Token 正确则处理业务 - switch (mr.getCmdId()) { - case ConstValue.ProtocolCmdId.ADD_DISPOSE_POINT: - msgCtx = addDisposePoint(mr); - break; - case ConstValue.ProtocolCmdId.DEL_DISPOSE_POINT: - break; - - default: - err = ErrorCode.ERR_UNKNOWNCMD; - } - } - } catch (JsonProcessingException ex) { - log.error(ex.getMessage()); - err = ErrorCode.ERR_EXCEPTION; - } - } - - return ProtocolResp.result(err, mr.getCmdId(), msgCtx); - } - - private String addDisposePoint(ProtocolDTO mr) - throws JsonProcessingException { - ErrorCode err = ErrorCode.ERR_OK; - - DevManagerResp rspInfo = new DevManagerResp(); - List devRsp = new ArrayList<>(); - rspInfo.setResult(devRsp); - - - AddDispointPointReq reqInfo = objectMapper.readValue(mr.getMsgContent(), AddDispointPointReq.class); - - reqInfo.getItems().forEach(v -> { - // - DisposeDevice dev = new DisposeDevice(); - - dev.setIpv4(v.getIp()); - dev.setType(v.getType()); - dev.setAreaCode(v.getAreaCode()); - dev.setName(v.getName()); - dev.setReadme(v.getReadme()); - dev.setManufacturer(v.getManufacturer()); - dev.setModel(v.getModel()); - dev.setVersion(v.getVersion()); - - dev.setDevCaps(new ArrayList<>()); - - v.getCapacity().forEach(k -> { - DeviceCapacity devCap = new DeviceCapacity(); - devCap.setCapacity(k.getType()); - devCap.setTolFlowCapacity(k.getTolFlowCapacity()); - dev.getDevCaps().add(devCap); - }); - - EnumMap ret = disposeDeviceManager.addNewDisposeDevice(dev); - - ErrorCode errno = ret.keySet().iterator().next(); - devRsp.add(new DeviceCmdInfo(v.getId(), String.valueOf(ret.get(errno)), errno.getCode(), errno.getMsg())); - - }); - - return objectMapper.writeValueAsString(rspInfo); - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/ProtocolController.java b/src/main/java/com/cmcc/hy/phoenix/controller/ProtocolController.java deleted file mode 100644 index 3e8dd2c5..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/ProtocolController.java +++ /dev/null @@ -1,75 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import javax.annotation.Resource; - -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.help.GitInformation; -import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; -import com.cmcc.hy.phoenix.pojo.vo.Resp; -import com.cmcc.hy.phoenix.pojo.vo.GetVersion; -import com.cmcc.hy.phoenix.pojo.vo.ProtocolResp; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.Builder; -import org.springframework.context.annotation.PropertySource; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.*; - -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.extern.slf4j.Slf4j; - -/** - * 通信协议控制器定义 - */ -@Controller -@RequestMapping(value = "/dispose") -@Slf4j -@Api(value = "抗DDoS处置平台接口", tags = "抗DDoS处置平台接口") -@Component -@PropertySource("classpath:git.properties") -public class ProtocolController { - @Resource - private ObjectMapper objectMapper; - - @Resource - private GitInformation gitInfo; - - /** - * - * @return - */ - @PostMapping("/version") - @ResponseBody - @ApiOperation("获取版本信息") - @ReqDec - @Builder - public ProtocolResp GetVersion(@RequestBody(required = true) ProtocolDTO mr) { - String msgCtx; - log.info("请求参数 {}", mr); - - if(mr == null) { - return ProtocolResp.result(ErrorCode.ERR_PARAMS); - } else if (mr.IsRequestTimeout()) { - return ProtocolResp.result(ErrorCode.ERR_REQTIMEOUT); - } - - try { - GetVersion ver = GetVersion.builder().commit_id(gitInfo.getCommit_id()) - .commit_describe(gitInfo.getCommit_describe()) - .commit_time(gitInfo.getCommit_time()) - .tag_name(gitInfo.getTag_name()) - .tags(gitInfo.getTags()) - .build(); - msgCtx = objectMapper.writeValueAsString(ver); - } catch (JsonProcessingException ex) { - log.error(ex.getMessage()); - return ProtocolResp.result(Resp.SYSTEM_ERROR); - } - - return ProtocolResp.result(ErrorCode.ERR_OK, mr.getCmdId(), msgCtx); - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/TestController.java b/src/main/java/com/cmcc/hy/phoenix/controller/TestController.java deleted file mode 100644 index 50e4ada3..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/TestController.java +++ /dev/null @@ -1,92 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import javax.annotation.Resource; - -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseBody; - -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; -import com.cmcc.hy.phoenix.annotation.bodyencdec.RespEnc; -import com.cmcc.hy.phoenix.pojo.dto.MyReqDTO; -import com.cmcc.hy.phoenix.pojo.vo.MyResp; -import com.cmcc.hy.phoenix.pojo.vo.Resp; -import com.cmcc.hy.phoenix.service.AsyncService; -import com.cmcc.hy.phoenix.service.UserService; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.extern.slf4j.Slf4j; - -/** - * 对外服务定义 - * - * @author phoenix - * @date 2020年2月4日 - */ -@Controller -@RequestMapping(value = "/test") -@Slf4j -@Api(value = "测试控制器", tags = "测试控制器接口说明") -public class TestController { - - @Resource - private AsyncService asyncService; - - @Resource - private UserService userService; - - /** - * - * @return - */ - @PostMapping("/post") - @ResponseBody - @ApiOperation("postTest测试实体参数请求接口") - @ReqDec - public MyResp postTest(@RequestBody(required = false) MyReqDTO mr) { - log.info("请求参数 {}", mr); - if(mr == null) { - return MyResp.result(Resp.PARAM_ERROR); - } - return MyResp.result(Resp.SUCCESS); - } - - /** - * - * @return - */ - @GetMapping("/ok/{id}") - @ResponseBody - @RespEnc - public MyResp okTest(@PathVariable long id) { - return MyResp.builder().data(userService.testService(id)).code(Resp.SUCCESS.getCode()).msg(Resp.SUCCESS.getMsg()) - .build(); - } - - /** - * - * @return - */ - @GetMapping("/mail") - @ResponseBody - public MyResp sendMail() { - //asyncService.sendMail("这是邮件内容"); - log.info("记住我的线程名 {},和实际发送的线程名不一样", Thread.currentThread().getName()); - return MyResp.result(Resp.SUCCESS); - } - - /** - * - * @return - */ - @GetMapping("/exception") - public MyResp exception() { - throw new RuntimeException("抛出异常"); - } - -} \ No newline at end of file diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/taskController.java b/src/main/java/com/cmcc/hy/phoenix/controller/taskController.java deleted file mode 100644 index a210aba1..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/controller/taskController.java +++ /dev/null @@ -1,427 +0,0 @@ -package com.cmcc.hy.phoenix.controller; - -import com.cmcc.hy.phoenix.annotation.bodyencdec.ReqDec; -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.dispose.DisposeProcess; -import com.cmcc.hy.phoenix.dispose.DptechUMC; -import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; -import com.cmcc.hy.phoenix.pojo.vo.*; -import com.cmcc.hy.phoenix.service.LoginService; -import com.dptech.umc.NtcRequestResultInfo; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import lombok.Builder; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.HttpHeaders; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.*; - -import javax.annotation.Resource; - -import java.util.ArrayList; -import java.util.EnumMap; -import java.util.List; -import java.util.Objects; - -import static com.cmcc.hy.phoenix.common.ErrorCode.ERR_OK; - -@Controller -@RequestMapping(value = "/handle") -@Slf4j -@Api(value = "抗DDoS处置平台认证接口", tags = "抗DDoS处置平台认证接口") -@Component -public class taskController { - - @Resource - private ObjectMapper objectMapper; - - @Resource - private LoginService loginService; - - @PostMapping("/command") - @ResponseBody - @ApiOperation("处置任务接口") - @ReqDec - @Builder - public ProtocolResp disposeTaskCommand(@RequestBody(required = true) ProtocolDTO mr, - @RequestHeader HttpHeaders headers) throws JsonProcessingException { - // 存放返回信息Json字符串 - String msgCtx = ""; - ErrorCode err = ERR_OK; - - log.info("请求token: {}", headers.get("Authorization")); - log.info("请求参数 {}", mr); - - // 参数检测 - if (mr == null) { - err = ErrorCode.ERR_PARAMS; - return ProtocolResp.result(err, -1, msgCtx); - } else if (mr.IsRequestTimeout()) { - err = ErrorCode.ERR_REQTIMEOUT; - } else { - try { - // 获取 Token - String token = Objects. - requireNonNull(headers.get("Authorization")) - .get(0).replaceFirst("Bearer ", ""); - - // 判断Head头是否存在 - if (headers.get("Authorization") == null) { - err = ErrorCode.ERR_MISSAUTHHEAD; - } else if ((err = loginService.authTokenCheck(token)) == ERR_OK) { - // Token 正确则处理业务 - switch (mr.getCmdId()) { - case ConstValue.ProtocolCmdId.START_DISPOSE_CMD: - EnumMap startMap = StartTaskByTaskId(mr); - err = startMap.keySet().iterator().next(); - msgCtx = startMap.get(err); - break; - //停止清洗任务 - case ConstValue.ProtocolCmdId.STOP_DISPOSE_CMD_BY_TASKID: - EnumMap stopMap = StopTaskByTaskId(mr); - err = stopMap.keySet().iterator().next(); - msgCtx = stopMap.get(err); - break; - case ConstValue.ProtocolCmdId.STOP_DISPOSE_CMD_BY_IP: - EnumMap stopMapByIp = StopTaskByIp(mr); - err = stopMapByIp.keySet().iterator().next(); - msgCtx = stopMapByIp.get(err); - break; - case ConstValue.ProtocolCmdId.STOP_DISPOSE_CMD_BY_POINT: - EnumMap stopMapByPoint = StopTaskByPoint(mr); - err = stopMapByPoint.keySet().iterator().next(); - msgCtx = stopMapByPoint.get(err); - break; - case ConstValue.ProtocolCmdId.STOP_DISPOSE_CMD_ALL: - EnumMap stopMapByAll = StopTaskAll(mr); - err = stopMapByAll.keySet().iterator().next(); - msgCtx = stopMapByAll.get(err); - break; - default: - err = ErrorCode.ERR_UNKNOWNCMD; - } - } - } catch (JsonProcessingException ex) { - log.error(ex.getMessage()); - err = ErrorCode.ERR_EXCEPTION; - } - } - - return ProtocolResp.result(err, mr.getCmdId(), msgCtx); - } - - private EnumMap StopTaskByTaskId(ProtocolDTO mr) throws JsonProcessingException { - String ipAddr = "10.88.77.15"; - DisposeProcess dp = new DptechUMC(ipAddr); - EnumMap retMap = new EnumMap<>(ErrorCode.class); - ErrorCode err = ErrorCode.ERR_OK; - - List results = new ArrayList<>(); - StopTaskRsp repInfo = StopTaskRsp.builder().result(results).build(); - - StopTaskReq reqInfo = objectMapper.readValue(mr.getMsgContent(), StopTaskReq.class); - //遍历处置任务唯一编号taskId - if (reqInfo.getTaskId().size() == 0) { - System.out.println("无指定TaskId的清洗任务"); - err = ErrorCode.ERR_INPUTMISS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - - for (String v : reqInfo.getTaskId()) { - System.out.println(v); - //每个taskId对应保护IP disposeIp,通过taskId获取disposeIp - String disposeIp = "192.168.5.2"; - int attackType = 1; - int direction = 0; - - NtcRequestResultInfo ntc_result = dp.stopAbnormalTask(disposeIp, attackType, direction); - - StopTaskResult sig_results = new StopTaskResult(); - sig_results.setTaskId(v); - sig_results.setType(0); //目前只有清洗设备 - sig_results.setDisposeIp(disposeIp); - if (ntc_result.getResultRetVal().equals(0)) { - sig_results.setStatus(ntc_result.getResultRetVal()); - } - - //把每一次遍历的结果都存入results - results.add(sig_results); - repInfo.setResult(results); - } - - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - - private EnumMap StopTaskByIp(ProtocolDTO mr) throws JsonProcessingException { - String ipAddr = "10.88.77.15"; - DisposeProcess dp = new DptechUMC(ipAddr); - EnumMap retMap = new EnumMap<>(ErrorCode.class); - ErrorCode err = ErrorCode.ERR_OK; - - List results = new ArrayList<>(); - StopTaskRsp repInfo = StopTaskRsp.builder().result(results).build(); - - StopTaskByIpReq reqInfo = objectMapper.readValue(mr.getMsgContent(), StopTaskByIpReq.class); - if (reqInfo.getItems().size() == 0) { - System.out.println("无该处置IP的清洗任务"); - err = ErrorCode.ERR_INPUTMISS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } else { - for (StopTaskByIpReqMsg v : reqInfo.getItems() - ) { - if ((v.getType() < -1) || (v.getType() > 3)) { - System.out.println("任务类型输入错误"); - err = ErrorCode.ERR_PARAMS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } else if ((v.getId().length() == 0) || (String.valueOf(v.getType()).length() == 0) || (v.getDisposeIP().length() == 0)) { - System.out.println("缺少必要输入信息"); - err = ErrorCode.ERR_INPUTMISS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - } - } - - - for (StopTaskByIpReqMsg v : reqInfo.getItems() - ) { - //输出指定IP - System.out.println(v.getDisposeIP()); - int attackType = 1; - int direction = 0; - - NtcRequestResultInfo ntc_result = dp.stopAbnormalTask(v.getDisposeIP(), attackType, direction); - - StopTaskResult result = new StopTaskResult(); - result.setId(v.getId()); - result.setType(v.getType()); - result.setDisposeIp(v.getDisposeIP()); - if (ntc_result.getResultRetVal().equals(0)) { - result.setStatus(ntc_result.getResultRetVal()); - } - - //数据库中对应设备Id(deviceId)找到taskId,测试情况假设deviceId与找到taskId相同 - String taskId = v.getId(); - result.setTaskId(taskId); - - //把每一次遍历的结果都存入results - results.add(result); - repInfo.setResult(results); - } - - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - - private EnumMap StopTaskByPoint(ProtocolDTO mr) throws JsonProcessingException { - String ipAddr = "10.88.77.15"; - DisposeProcess dp = new DptechUMC(ipAddr); - EnumMap retMap = new EnumMap<>(ErrorCode.class); - ErrorCode err = ErrorCode.ERR_OK; - - List results = new ArrayList<>(); - StopTaskRsp repInfo = StopTaskRsp.builder().result(results).build(); - - StopTaskByPonitReq reqInfo = objectMapper.readValue(mr.getMsgContent(), StopTaskByPonitReq.class); - - if (reqInfo.getItems().size() == 0) { - System.out.println("无该指定能力节点的清洗任务"); - err = ErrorCode.ERR_INPUTMISS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } else { - for (StopTaskByPonitReqMsg v : reqInfo.getItems() - ) { - if ((v.getType() < -1) || (v.getType() > 3)) { - System.out.println("任务类型输入错误"); - err = ErrorCode.ERR_PARAMS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } else if ((v.getId().length() == 0) || (String.valueOf(v.getType()).length() == 0)) { - System.out.println("缺少必要输入信息"); - err = ErrorCode.ERR_INPUTMISS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - } - } - - for (StopTaskByPonitReqMsg v : reqInfo.getItems() - ) { - //通过能力节点唯一标识符id找到对应的清洗IP,清洗IP以列表形式保存,一能力节点会对应多个IP - //foreach嵌套-List getDisposeIP - List getDisposeIps = new ArrayList<>(); - getDisposeIps.add("192.168.1.1"); - getDisposeIps.add("192.168.2.1"); - int attackType = 1; - int direction = 0; - int taskid = 0; - - for (String getDisposeIp : getDisposeIps - ) { - NtcRequestResultInfo ntc_result = dp.stopAbnormalTask(getDisposeIp, attackType, direction); - StopTaskResult result = new StopTaskResult(); - result.setId(v.getId()); - result.setType(v.getType()); - result.setDisposeIp(getDisposeIp); - if (ntc_result.getResultRetVal().equals(0)) { - result.setStatus(ntc_result.getResultRetVal()); - } - - //数据库中对应设备Id(deviceId)找到taskId - //test taskId自增1 - String taskId = String.valueOf(taskid); - result.setTaskId(taskId); - - //把每一次遍历的结果都存入results - results.add(result); - repInfo.setResult(results); - taskid++; - } - } - - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - - private EnumMap StopTaskAll(ProtocolDTO mr) throws JsonProcessingException { - String ipAddr = "10.88.77.15"; - DisposeProcess dp = new DptechUMC(ipAddr); - EnumMap retMap = new EnumMap<>(ErrorCode.class); - ErrorCode err = ErrorCode.ERR_OK; - - List results = new ArrayList<>(); - StopTaskRsp repInfo = StopTaskRsp.builder().result(results).build(); - - StopTaskAllReq reqInfo = objectMapper.readValue(mr.getMsgContent(), StopTaskAllReq.class); - - if (String.valueOf(reqInfo.getType()).length() == 0) { - System.out.println("缺少必要输入参数"); - err = ErrorCode.ERR_INPUTMISS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } else if ((reqInfo.getType() < -1) || (reqInfo.getType() > 3)) { - System.out.println("任务类型输入错误"); - err = ErrorCode.ERR_PARAMS; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - - int type = reqInfo.getType(); - if (type == 0) { - //任务类型为清洗,清洗所有清洗任务 - //MySql获取所有taskId,遍历执行清洗任务,测试添加多个taskId - List taskIds = new ArrayList<>(); - taskIds.add("1"); - taskIds.add("2"); - taskIds.add("3"); - taskIds.add("4"); - - String disposeIp = ""; - - for (String v : taskIds - ) { - //每个taskId对应disposeIp,通过taskId获取disposeIp - //test 不同的taskId对应不同disposeIp - if (v.equals("1")) { - disposeIp = "192.168.10.1"; - } else if (v.equals("2")) { - disposeIp = "192.168.10.2"; - } else if (v.equals("3")) { - disposeIp = "192.168.10.3"; - } else { - disposeIp = "192.168.10.4"; - } - - int attackType = 1; - int direction = 0; - - NtcRequestResultInfo ntc_result = dp.stopAbnormalTask(disposeIp, attackType, direction); - - StopTaskResult result = new StopTaskResult(); - result.setTaskId(v); - result.setType(0); //目前只有清洗设备 - result.setDisposeIp(disposeIp); - if (ntc_result.getResultRetVal().equals(0)) { - result.setStatus(ntc_result.getResultRetVal()); - } - - //数据库中对应设备taskId(deviceId)找到Id,测试情况假设deviceId与找到taskId相同 - result.setId(v); - - //把每一次遍历的结果都存入results - results.add(result); - repInfo.setResult(results); - } - } - - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - - - private EnumMap StartTaskByTaskId(ProtocolDTO mr) throws JsonProcessingException { - String ipAddr = "10.88.77.15"; - DisposeProcess dp = new DptechUMC(ipAddr); - EnumMap retMap = new EnumMap<>(ErrorCode.class); - ErrorCode err = ErrorCode.ERR_OK; - int status_result = 0; - - StartTaskRep repInfo = StartTaskRep.builder() - .id("") - .taskId("") - .expireTime(0L) - .status(err.getCode()).build(); - - StartTaskReq reqInfo = objectMapper.readValue(mr.getMsgContent(), StartTaskReq.class); - - List attackTypes = reqInfo.getAttackType(); - int direction = reqInfo.getFlowDirection(); - String disposeIp = reqInfo.getDisposeIp(); - - for (Integer attackType : attackTypes - ) { - NtcRequestResultInfo ntc_result = dp.startAbnormalTask(disposeIp, attackType, direction); - int ret_err = -1; - if (ntc_result.getResultRetVal().equals(ret_err)) { - System.out.println("启动清洗任务失败"); - err = ErrorCode.ERR_UNKNOWNCMD; - repInfo = null; - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - - status_result = ntc_result.getResultRetVal(); - } - - repInfo.setId(reqInfo.getId()); - //MySql 根据设备Id查找对应的taskId - //test 假设设备id与taskId相同 - repInfo.setTaskId(reqInfo.getId()); - repInfo.setExpireTime(System.currentTimeMillis()+reqInfo.getDisposeTime()); - repInfo.setStatus(status_result); - - //启动清洗任务成功,task数据到MySql - - retMap.put(err, objectMapper.writeValueAsString(repInfo)); - return retMap; - } - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/dispose/DisposeProcess.java b/src/main/java/com/cmcc/hy/phoenix/dispose/DisposeProcess.java deleted file mode 100644 index 31499266..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/dispose/DisposeProcess.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.cmcc.hy.phoenix.dispose; - -import com.dptech.umc.NtcRequestResultInfo; - -public interface DisposeProcess { - public int runDispose(String ip); - - public T getAllDetectionObject(); - - public T getAllProtectionObject(); - - public String getDetectionDevices(); - - public String getProtectDevices(); - - public NtcRequestResultInfo stopAbnormalTask(String abnormalIp, int attackType, int direction); - - public NtcRequestResultInfo startAbnormalTask(String abnormalIp, int attackType, int direction); - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/exception/GlobalExceptionHandler.java b/src/main/java/com/cmcc/hy/phoenix/exception/GlobalExceptionHandler.java deleted file mode 100644 index f4b277dd..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/exception/GlobalExceptionHandler.java +++ /dev/null @@ -1,64 +0,0 @@ -package com.cmcc.hy.phoenix.exception; - -import java.util.HashMap; -import java.util.Map; -import java.util.Set; - -import javax.servlet.http.HttpServletRequest; -import javax.validation.ConstraintViolation; -import javax.validation.ConstraintViolationException; - -import org.apache.commons.lang3.exception.ExceptionUtils; -import org.springframework.web.bind.MethodArgumentNotValidException; -import org.springframework.web.bind.MissingPathVariableException; -import org.springframework.web.bind.annotation.ControllerAdvice; -import org.springframework.web.bind.annotation.ExceptionHandler; -import org.springframework.web.bind.annotation.ResponseBody; - -import com.cmcc.hy.phoenix.pojo.vo.MyResp; -import com.cmcc.hy.phoenix.pojo.vo.Resp; - -import lombok.extern.slf4j.Slf4j; - -/** - * 全局异常处理 - * - * @author phoenix - * @date 2020年2月5日 - */ - -@ControllerAdvice -@Slf4j -public class GlobalExceptionHandler { - - @ExceptionHandler(Throwable.class) - @ResponseBody - public MyResp handleException(HttpServletRequest request, Throwable e) { - log.error("进入全局异常处理", e); - Map map = new HashMap<>(2); - map.put("url", request.getRequestURL().toString()); - map.put("exception", ExceptionUtils.getMessage(e)); - return MyResp.builder().code(Resp.ERROR.getCode()).msg(Resp.ERROR.getMsg()).data(map).build(); - } - - @ExceptionHandler(Exception.class) - @ResponseBody - public MyResp paramException(HttpServletRequest request, Exception e) { - log.error("进入参数校验异常处理", e); - StringBuffer errorMsg = new StringBuffer(); - if (e instanceof ConstraintViolationException) { - Set> cves = ((ConstraintViolationException) e).getConstraintViolations(); - cves.forEach(ex -> errorMsg.append(ex.getMessage())); - } else if (e instanceof MissingPathVariableException) { - errorMsg.append("请检查参数 " + ((MissingPathVariableException) e).getVariableName()); - } else if (e instanceof MethodArgumentNotValidException) { - errorMsg.append( - ((MethodArgumentNotValidException) e).getBindingResult().getAllErrors().get(0).getDefaultMessage()); - } else { - log.error("请求异常", e); - errorMsg.append("参数异常"); - } - return MyResp.builder().code(Resp.PARAM_ERROR.getCode()).msg(errorMsg.toString()).build(); - } - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/manager/GlobalManager.java b/src/main/java/com/cmcc/hy/phoenix/manager/GlobalManager.java deleted file mode 100644 index 923f1d39..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/manager/GlobalManager.java +++ /dev/null @@ -1,63 +0,0 @@ -package com.cmcc.hy.phoenix.manager; - -import com.cmcc.hy.phoenix.pojo.entity.InfoCollection; -import com.cmcc.hy.phoenix.pojo.entity.User; - -/** - * 系统在15张数据表规模以下的,建议整个工程就一个manager 项目主程负责编写这个接口,掌握整个系统的数据逻辑操作 - * - * @author phoenix - * @date 2020年2月8日 - */ -public interface GlobalManager { - - /** - * - * @Description: 整个工程会有多个service需要这个方法 - * @param id - * @return - */ - public User findUserById(long id); - - /** - * - * @Description: TODO(这里用一句话描述这个方法的作用) - * @param phone - * @param productType - * @return - */ - public int deleteIcByPhoneAndPt(String phone, String productType); - - /** - * - * @Description: TODO(这里用一句话描述这个方法的作用) - * @return - */ - public int deleteAllIc(); - - /** - * - * @Description: TODO(这里用一句话描述这个方法的作用) - * @param ic - * @return - */ - public int saveInfoCollection(InfoCollection ic); - - /** - * - * @Description: TODO(这里用一句话描述这个方法的作用) - * @param phone - * @param productType - * @return - */ - public InfoCollection findIcByPhoneAndProductType(String phone, String productType); - - /** - * - * @Description: TODO(这里用一句话描述这个方法的作用) - * @param id - * @return - */ - public InfoCollection findIcById(long id); - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/manager/impl/GlobalManagerImpl.java b/src/main/java/com/cmcc/hy/phoenix/manager/impl/GlobalManagerImpl.java deleted file mode 100644 index 6dc517bb..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/manager/impl/GlobalManagerImpl.java +++ /dev/null @@ -1,108 +0,0 @@ -package com.cmcc.hy.phoenix.manager.impl; - -import java.util.List; - -import javax.annotation.Resource; - -import org.springframework.stereotype.Component; - -import com.cmcc.hy.phoenix.aop.cache.CacheDel; -import com.cmcc.hy.phoenix.aop.cache.CacheGet; -import com.cmcc.hy.phoenix.aop.cache.CachePut; -import com.cmcc.hy.phoenix.aop.cache.MyCache; -import com.cmcc.hy.phoenix.manager.GlobalManager; -import com.cmcc.hy.phoenix.mapper.InfoCollectionMapper; -import com.cmcc.hy.phoenix.mapper.UserMapper; -import com.cmcc.hy.phoenix.pojo.entity.InfoCollection; -import com.cmcc.hy.phoenix.pojo.entity.User; -import com.cmcc.hy.phoenix.redis.RedisClient; - -import cn.hutool.core.collection.CollectionUtil; -import lombok.extern.slf4j.Slf4j; -import tk.mybatis.mapper.entity.Example; -import tk.mybatis.mapper.entity.Example.Criteria; - -/** - * 此类依赖所有DAO以及redisClient 数据缓存也在这里,外部系统调用也在这里 - * - * @author phoenix - * @date 2020年2月8日 - */ -@Component -@Slf4j -public class GlobalManagerImpl implements GlobalManager { - - @Resource - private UserMapper userMapper; - - @Resource - private InfoCollectionMapper infoCollectionMapper; - - @Resource - private RedisClient redisClient; - - @Override - public User findUserById(long id) { - // TODO Auto-generated method stub - // 封装DAO - User user = userMapper.selectByPrimaryKey(id); - log.info("manager层出查询出用户信息 {}", user); - redisClient.put("test", "mocktest", 100); - return user; - } - - @CacheDel(clazz = InfoCollection.class, key = { "#phone", "#productType" }) - @Override - public int deleteIcByPhoneAndPt(String phone, String productType) { - // TODO Auto-generated method stub - Example example = new Example(InfoCollection.class); - Criteria c = example.createCriteria(); - c.andEqualTo("phoneNumber", phone); - c.andEqualTo("productType", productType); - return infoCollectionMapper.deleteByExample(example); - } - - @Override - public int deleteAllIc() { - // TODO Auto-generated method stub - List list = infoCollectionMapper.selectAll(); - list.forEach((ic)->infoCollectionMapper.delete(ic)); - return list.size(); - } - - /** - * 这里key的设置需要查看该对象的查询方法的key设置,保持key全覆盖 - * - * @see com.cmcc.hy.phoenix.manager.GlobalManager#saveInfoCollection(com.cmcc.hy.phoenix.pojo.entity.InfoCollection) - */ - @MyCache(put = { @CachePut(key = "#ic.id"), @CachePut(key = { "#ic.phoneNumber", "#ic.productType" }) }) - @Override - public int saveInfoCollection(InfoCollection ic) { - // TODO Auto-generated method stub - return infoCollectionMapper.insert(ic); - } - - @CacheGet(key = {"#phone","#productType"}) - @Override - public InfoCollection findIcByPhoneAndProductType(String phone, String productType) { - // TODO Auto-generated method stub - log.info("根据手机号,产品类型查询用户信息"); - Example example = new Example(InfoCollection.class); - Criteria c = example.createCriteria(); - c.andEqualTo("phoneNumber", phone); - c.andEqualTo("productType", productType); - List list = infoCollectionMapper.selectByExample(example); - if (CollectionUtil.isNotEmpty(list)) { - return list.get(0); - } - return null; - } - - @CacheGet(key = "#id") - @Override - public InfoCollection findIcById(long id) { - log.info("根据ID查询用户信息"); - return infoCollectionMapper.selectByPrimaryKey(id); - } - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/DeviceCapacityMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/DeviceCapacityMapper.java deleted file mode 100644 index f59a63ef..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/mapper/DeviceCapacityMapper.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.DeviceCapacity; -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import tk.mybatis.mapper.common.Mapper; - -import java.util.List; - -public interface DeviceCapacityMapper extends Mapper { - List getDeviceCapacityByDeviceId(Long id); -} diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapper.java deleted file mode 100644 index 2ef71117..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapper.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.cmcc.hy.phoenix.pojo.po.DeviceCapacityInfo; -import tk.mybatis.mapper.common.IdsMapper; -import tk.mybatis.mapper.common.Mapper; -import tk.mybatis.mapper.common.MySqlMapper; - -import java.util.List; - -/** - * The interface Dispose device mapper. - */ -public interface DisposeDeviceMapper extends Mapper, - IdsMapper, MySqlMapper { - - /** - * 获取所有处置设备 - * - * @return the all - */ - List getAllDisposeDevice(); - - DisposeDevice getDisposeDisposeDevByIp(String ipv4); - List getDisposeDisposeDevById(Long devId); - - void addNewDisposeDevice(DisposeDevice dev); - - void updateDisposeDeviceByIp(String ipv4); - - void removeDisposeDevice(String ipAddr); -} diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeTaskMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeTaskMapper.java deleted file mode 100644 index 7e1fc286..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeTaskMapper.java +++ /dev/null @@ -1,40 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.cmcc.hy.phoenix.pojo.entity.InfoCollection; -import com.cmcc.hy.phoenix.pojo.po.DeviceCapacityInfo; -import tk.mybatis.mapper.common.IdsMapper; -import tk.mybatis.mapper.common.Mapper; -import com.cmcc.hy.phoenix.pojo.entity.DisposeTask; -import tk.mybatis.mapper.common.MySqlMapper; - -import java.util.List; - -public interface DisposeTaskMapper extends Mapper, - MySqlMapper { - - /** - * 获取所有处置任务 - * - * @return the all - */ - List getAllDisposeTask(); - - /** - * 获取所有处置任务唯一编号 - */ - List getAllTaskId(); - - /** - * 通过处置任务唯一编号获取设备唯一标识符 - */ - Long getDeviceIdByTaskId(); - - /** - * 通过设备唯一标识符获取处置任务唯一编号 - */ - Long getTaskIdByDeviceId(); -} - - - diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/InfoCollectionMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/InfoCollectionMapper.java deleted file mode 100644 index 589a6bbd..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/mapper/InfoCollectionMapper.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.InfoCollection; - -import tk.mybatis.mapper.common.Mapper; -import tk.mybatis.mapper.common.MySqlMapper; - -public interface InfoCollectionMapper extends Mapper, MySqlMapper { - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/UserAccountMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/UserAccountMapper.java deleted file mode 100644 index 34519bad..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/mapper/UserAccountMapper.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.UserAccount; -import org.apache.ibatis.annotations.Param; -import tk.mybatis.mapper.common.IdsMapper; -import tk.mybatis.mapper.common.Mapper; -import tk.mybatis.mapper.common.MySqlMapper; - -import java.sql.Timestamp; -import java.util.List; - -public interface UserAccountMapper extends Mapper, - IdsMapper, MySqlMapper { - - UserAccount getUserByName(String username); - - void lockUserAccount(@Param("username")String username); - void unlockUserAccount(@Param("username")String username); - void refreshLoginTime(@Param("username")String username); -} diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/UserMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/UserMapper.java deleted file mode 100644 index bf29d1a9..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/mapper/UserMapper.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.User; - -import tk.mybatis.mapper.common.IdsMapper; -import tk.mybatis.mapper.common.Mapper; -import tk.mybatis.mapper.common.MySqlMapper; - -/** - *

- * User Mapper - *

- * - * @description: User Mapper - * @author phoenix - * @date 2020年2月8日 - */ -public interface UserMapper extends Mapper,IdsMapper,MySqlMapper { - - /** - * 根据用户名统计(假设它是一个很复杂的SQL) - * - * @param name 用户名 - * @return 统计结果 - */ - int countByName(String name); - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/Save.java b/src/main/java/com/cmcc/hy/phoenix/pojo/Save.java deleted file mode 100644 index 7dbe571b..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/Save.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.cmcc.hy.phoenix.pojo; - -/** - * - * - * @author phoenix - * @date 2020年2月8日 - */ -public interface Save { -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/Update.java b/src/main/java/com/cmcc/hy/phoenix/pojo/Update.java deleted file mode 100644 index f75a2340..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/Update.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.cmcc.hy.phoenix.pojo; - -/** - * - * - * @author phoenix - * @date 2020年2月8日 - */ -public interface Update { -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/dto/DemoDTO.java b/src/main/java/com/cmcc/hy/phoenix/pojo/dto/DemoDTO.java deleted file mode 100644 index 055c085d..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/dto/DemoDTO.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.dto; - -import com.cmcc.hy.phoenix.annotation.UserId; -import com.cmcc.hy.phoenix.pojo.Save; -import com.cmcc.hy.phoenix.pojo.Update; - -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Getter; -import lombok.NoArgsConstructor; -import lombok.Setter; -import lombok.ToString; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.NotBlank; - -/** - * - * - * @author phoenix - * @date 2020年2月8日 - */ -@Getter -@Setter -@Builder -@ToString -@NoArgsConstructor -@AllArgsConstructor -public class DemoDTO { - - @UserId(groups = { Update.class }) - private Long id; - - @NotBlank(message = "username 不能为空", groups = { Save.class, Update.class }) - private String username; - - @Min(value = 0, message = "age 在必须 0 - 150 之间", groups = { Save.class, Update.class }) - @Max(value = 150, message = "age 在必须 0 - 150 之间", groups = { Save.class, Update.class }) - private Integer age; - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/dto/MyReqDTO.java b/src/main/java/com/cmcc/hy/phoenix/pojo/dto/MyReqDTO.java deleted file mode 100644 index ca1c28c0..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/dto/MyReqDTO.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.dto; - -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -/** - * 请求参数实体 - * - * @author phoenix - * @date 2020年2月4日 - */ -@Getter -@Setter -@ToString -@Builder -@ApiModel("MyReq请求参数实体") -public class MyReqDTO { - - @ApiModelProperty("MyReq的id参数") - private Long id; - @ApiModelProperty("MyReq的type参数") - private Integer type; - @ApiModelProperty("MyReq的msg参数") - private String msg; - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/dto/ProtocolDTO.java b/src/main/java/com/cmcc/hy/phoenix/pojo/dto/ProtocolDTO.java deleted file mode 100644 index 9f826c80..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/dto/ProtocolDTO.java +++ /dev/null @@ -1,60 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.dto; - - -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.*; - -/** - * 通信协议定义 - */ -@Getter -@Setter -@ToString -@ApiModel("通信协议实体") -@NoArgsConstructor -public class ProtocolDTO { - @ApiModelProperty(value="命令编号(必要字段): \n" + - "0-9999范围为请求命令\n" + - "10000-19999 范围为对应请求的响应命令\n" + - "响应命令值为10000+请求命令值\n", required = true, - allowableValues = "rang[0, 19999]", - example = "1") - private int cmdId; - - @ApiModelProperty(value="协议版本号", required = true, example = "1") - private int ver; - - @ApiModelProperty(value="msgContent字段内容编码格式:\n" + - "0:无编码格式,普通字符串\n" + - "1:base64编码格式\n" + - "2:采用AES加密后的base64编码格式\n", required = true, - allowableValues = "0, 1, 2", - example = "0") - private int cryptoType; - - @ApiModelProperty(value="当前UTC时间戳", required = true, example = "1526625689000") - private Long timeStamp; - - @ApiModelProperty(value="协议详细内容,Json字符串格式。\n" + - "保存该cmdId命令相关的详细内容,\n" + - "具体每个cmdId命令的详细内容参看对应的命令协议定义", required = false, - example = "{}") - private String msgContent; - - @ApiModelProperty(value="服务器返回状态码", required = false, - example = "200") - private int code; - - public Boolean IsRequestTimeout() { - Long current = System.currentTimeMillis(); - Long timeDiff = current - this.timeStamp; - - if (timeDiff > 0 && timeDiff <= 3000) { - return false; - } - - return false; - } -} - diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DeviceCapacity.java b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DeviceCapacity.java deleted file mode 100644 index f6980ac0..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DeviceCapacity.java +++ /dev/null @@ -1,57 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.entity; - -import lombok.*; -import tk.mybatis.mapper.annotation.KeySql; - -import javax.persistence.Id; -import javax.persistence.Table; -import java.io.Serializable; - -/** - * The type Device capacity. - */ -@Getter -@Setter -@ToString -@NoArgsConstructor -@AllArgsConstructor -@Builder -@Table(name = "dispose_device") -public class DeviceCapacity implements Serializable { - - /** - * The constant serialVersionUID. - */ - private static final long serialVersionUID = 1L; - - /** - * 设备能力唯一标识符 - */ - @Id - @KeySql(useGeneratedKeys = true) - private Long id; - - /** - * 设备唯一标识符 - */ - private Integer deviceId; - - /** - * 0:清洗 1:高防 2:黑洞 - */ - private Integer capacity; - - /** - * 处置设备储备能力(MB) - */ - private Integer tolFlowCapacity; - - public DeviceCapacity(Integer capacity, Integer tolFlowCapacity) { - this.capacity = capacity; - this.tolFlowCapacity = tolFlowCapacity; - } - - public DeviceCapacity(Integer capacity) { - this.capacity = capacity; - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeDevice.java b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeDevice.java deleted file mode 100644 index 9c9c5f4c..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeDevice.java +++ /dev/null @@ -1,96 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.entity; - -import lombok.*; -import tk.mybatis.mapper.annotation.KeySql; -import tk.mybatis.mapper.annotation.NameStyle; -import tk.mybatis.mapper.code.Style; - -import javax.persistence.Id; -import javax.persistence.Table; -import javax.persistence.Transient; -import java.io.Serializable; -import java.util.List; - -/** - * The type Dispose device. - */ -@Getter -@Setter -@ToString -@NoArgsConstructor -@AllArgsConstructor -@Builder -@Table(name = "dispose_device") -@NameStyle(Style.normal) -public class DisposeDevice implements Serializable { - - /** - * The constant serialVersionUID. - */ - private static final long serialVersionUID = 1L; - - /** - * 设备唯一标识符 - */ - @Id - //@KeySql(useGeneratedKeys = true) - private Long id; - - /** - * 设备IPv4地址 - */ - private String ipv4; - - /** - * 设备IPv6地址 - */ - private String ipv6; - - /** - * 能力节点类型,0:平台,1:设备 - */ - private Integer type; - - /** - * The Area code. - */ - private Integer areaCode; - - /** - * 设备名称 - */ - private String name; - - /** - * 生产厂商 - */ - private String manufacturer; - - /** - * 型号 - */ - private String model; - - /** - * 软件版本 - */ - private String version; - - /** - * 备注 - */ - private String readme; - - - /** - * 能力设备支持的能力列表 - */ - @Transient - private List devCaps; - - /** - * 处置设备支持的处置IP,从处置设备获取 - */ - @Transient - private List disposeIp; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeTask.java b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeTask.java deleted file mode 100644 index b69262fb..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeTask.java +++ /dev/null @@ -1,70 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.entity; - -import lombok.*; -import tk.mybatis.mapper.annotation.NameStyle; -import tk.mybatis.mapper.code.Style; - -import javax.persistence.Id; -import javax.persistence.Table; -import java.io.Serializable; - - -/** - * The type Dispose task. - */ -@Getter -@Setter -@ToString -@NoArgsConstructor -@AllArgsConstructor -@Builder -@Table(name = "dispose_task") -@NameStyle(Style.normal) -public class DisposeTask implements Serializable { - /** - * 处置任务唯一编号 - */ - @Id - //@KeySql(useGeneratedKeys = true) - private Long id; - - /** - * 设备唯一标识符 - */ - private Integer deviceId; - - /** - * 用户ID - */ - private Long accountId; - - /** - * 设备能力唯一标识符 - */ - private Long capacityId; - - /** - * 处置IP地址,A.B.C.D格式 - */ - private String disposeIp; - - /** - * 任务开始时间. - */ - private String beginTime; - - /** - * 任务计划结束时间 - */ - private String planEndTime; - - /** - * 任务结束时间 - */ - private String endTime; - - /** - * 任务状态 0:成功;其它:失败原因 - */ - private Integer status; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/InfoCollection.java b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/InfoCollection.java deleted file mode 100644 index 4fc7b93f..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/InfoCollection.java +++ /dev/null @@ -1,43 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.entity; - -import java.io.Serializable; -import java.util.Date; - -import javax.persistence.Id; -import javax.persistence.Table; - -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; -import tk.mybatis.mapper.annotation.KeySql; - -@Getter -@Setter -@ToString -@Builder -@Table(name = "info_collection") -public class InfoCollection implements Serializable { - - private static final long serialVersionUID = 1L; - - @Id - @KeySql(useGeneratedKeys = true) - private Long id; - private String username; - private String organization; - private String provinceCode; - private String province; - private String city; - private String district; - private String address; - private String email; - - private String phoneNumber; - private String comment; - private String productType; - private Integer syncStatus; - private Date createTime; - private Date updateTime; - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/User.java b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/User.java deleted file mode 100644 index 3b6290e3..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/User.java +++ /dev/null @@ -1,86 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.entity; - -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Getter; -import lombok.NoArgsConstructor; -import lombok.Setter; -import lombok.ToString; -import tk.mybatis.mapper.annotation.KeySql; - -import javax.persistence.Id; -import javax.persistence.Table; -import java.io.Serializable; -import java.util.Date; - -/** - *

- * 用户实体类 - *

- * - * @description: 用户实体类 - * @author phoenix - * @date 2020年2月8日 - */ -@Getter -@Setter -@ToString -@NoArgsConstructor -@AllArgsConstructor -@Builder -@Table(name = "phoenix_user") -public class User implements Serializable { - private static final long serialVersionUID = -1840831686851699943L; - - /** - * 主键 - */ - @Id - @KeySql(useGeneratedKeys = true) - private Long id; - - /** - * 用户名 - */ - private String name; - - /** - * 加密后的密码 - */ - private String password; - - /** - * 加密使用的盐 - */ - private String salt; - - /** - * 邮箱 - */ - private String email; - - /** - * 手机号码 - */ - private String phoneNumber; - - /** - * 状态,-1:逻辑删除,0:禁用,1:启用 - */ - private Integer status; - - /** - * 创建时间 - */ - private Date createTime; - - /** - * 上次登录时间 - */ - private Date lastLoginTime; - - /** - * 上次更新时间 - */ - private Date lastUpdateTime; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/UserAccount.java b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/UserAccount.java deleted file mode 100644 index 0ac854b9..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/UserAccount.java +++ /dev/null @@ -1,63 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.entity; - -import io.swagger.models.auth.In; -import lombok.*; -import tk.mybatis.mapper.annotation.KeySql; -import tk.mybatis.mapper.annotation.NameStyle; -import tk.mybatis.mapper.code.Style; - -import javax.persistence.Id; -import javax.persistence.Table; -import java.io.Serializable; - -/** - * The type User account. - */ -@Getter -@Setter -@ToString -@NoArgsConstructor -@AllArgsConstructor -@Builder -@Table(name = "user_account") -@NameStyle(Style.normal) -public class UserAccount implements Serializable { - - /** - * The constant serialVersionUID. - */ - private static final long serialVersionUID = 1L; - - /** - * 账户唯一编号 - */ - @Id - @KeySql(useGeneratedKeys = true) - private Long id; - - /** - * 用户名 - */ - private String username; - - /** - * 密码, SHA256 - */ - private String password; - - /** - * 最后一次成功登录时间 - */ - private String lastLoginTime; - - - /** - * 账户锁定时间 - */ - private String lockTime; - - /** - * 账户状态 - */ - private Integer status; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeciveCaps.java b/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeciveCaps.java deleted file mode 100644 index 4ec2d696..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeciveCaps.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.po; - -import lombok.*; -import org.springframework.lang.Nullable; - -@Getter -@Setter -@AllArgsConstructor -@NoArgsConstructor -@Builder -public class DeciveCaps { - private int type; - @Nullable - private int tolFlowCapacity; - @Nullable - private String disposeIp; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeviceCapacityInfo.java b/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeviceCapacityInfo.java deleted file mode 100644 index 8404c90e..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeviceCapacityInfo.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.po; - -import com.fasterxml.jackson.annotation.JsonFilter; -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import org.springframework.lang.Nullable; - -@Getter -@Setter -@Builder -@JsonFilter("DeviceCapacityInfo") -public class DeviceCapacityInfo { - private int capacity; - @Nullable - private int tolFlowCapacity; - private int usedCapacity; - private String[] disposeIp; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeviceCmdInfo.java b/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeviceCmdInfo.java deleted file mode 100644 index 33d2b142..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DeviceCmdInfo.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.po; - -import com.fasterxml.jackson.annotation.JsonFilter; -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -@AllArgsConstructor -@Builder -public class DeviceCmdInfo { - private String id; - private String devId; - private int status; - private String message; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeAddInfo.java b/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeAddInfo.java deleted file mode 100644 index d253c858..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeAddInfo.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.po; - -import lombok.*; -import org.springframework.lang.Nullable; - -import java.util.List; - -@Getter -@Setter -@NoArgsConstructor -@AllArgsConstructor -@Builder -public class DisposeAddInfo { - private String id; - private int type; - private String name; - private String ip; - private int areaCode; - @Nullable - private String manufacturer; - @Nullable - private String model; - @Nullable - private String version; - @Nullable - private String readme; - private List capacity; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeCapacityInfo.java b/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeCapacityInfo.java deleted file mode 100644 index fd0dd041..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeCapacityInfo.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.po; - -import com.cmcc.hy.phoenix.pojo.po.DeviceCapacityInfo; -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; - -import java.util.List; - -@Getter -@Setter -@AllArgsConstructor -@Builder -public class DisposeCapacityInfo { - private String id; - private List capacity; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeDeviceInfo.java b/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeDeviceInfo.java deleted file mode 100644 index 9a0a4cf9..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/po/DisposeDeviceInfo.java +++ /dev/null @@ -1,24 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.po; - -import com.fasterxml.jackson.annotation.JsonFilter; -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import org.springframework.lang.Nullable; - -import java.util.List; - -@Getter -@Setter -@Builder -@JsonFilter("DeviceInfo") -public class DisposeDeviceInfo { - private String id; - private int type; - private String name; - private String ip; - private int areaCode; - @Nullable - private String readme; - private List capacity; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/po/UserAccountCache.java b/src/main/java/com/cmcc/hy/phoenix/pojo/po/UserAccountCache.java deleted file mode 100644 index 6cc05ca6..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/po/UserAccountCache.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.po; - -import lombok.*; - -@Setter -@Getter -@Builder -@NoArgsConstructor -@AllArgsConstructor -public class UserAccountCache { - private String username; - private String token; - private Long lastAccess; - private Integer pwdErrTimes; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/AddDispointPointReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/AddDispointPointReq.java deleted file mode 100644 index 49f950be..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/AddDispointPointReq.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import com.cmcc.hy.phoenix.pojo.po.DisposeAddInfo; -import lombok.AllArgsConstructor; -import lombok.Getter; -import lombok.NoArgsConstructor; -import lombok.Setter; - -import java.util.List; - -@Getter -@Setter -@NoArgsConstructor -@AllArgsConstructor -public class AddDispointPointReq { - private List items; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DevManagerResp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DevManagerResp.java deleted file mode 100644 index 605d2cab..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DevManagerResp.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import com.cmcc.hy.phoenix.pojo.po.DeviceCmdInfo; -import lombok.*; - -import java.util.List; - -@Getter -@Setter -@NoArgsConstructor -@AllArgsConstructor -@Builder -public class DevManagerResp { - private List result; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DisposeCapacityResp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DisposeCapacityResp.java deleted file mode 100644 index 5a392bf8..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DisposeCapacityResp.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import com.cmcc.hy.phoenix.pojo.po.DisposeCapacityInfo; -import lombok.Setter; -import lombok.Getter; -import lombok.Builder; - -import java.util.List; - -@Getter -@Setter -@Builder -public class DisposeCapacityResp { - private List items; - - public DisposeCapacityResp(List ret) { - this.items = ret; - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DisposeDevicesResp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DisposeDevicesResp.java deleted file mode 100644 index 28f05a04..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/DisposeDevicesResp.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import com.cmcc.hy.phoenix.pojo.po.DisposeDeviceInfo; -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; - -import java.util.List; - -@Getter -@Setter -@Builder -public class DisposeDevicesResp { - List items; - - public DisposeDevicesResp(List devInfos){ - this.items = devInfos; - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/GetInfoById.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/GetInfoById.java deleted file mode 100644 index 71caf30e..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/GetInfoById.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -public class GetInfoById { - private String[] id; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/GetVersion.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/GetVersion.java deleted file mode 100644 index cc99ac60..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/GetVersion.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; -import lombok.Builder; - -@Getter -@Setter -@ToString -@Builder -public class GetVersion { - private String commit_id; - private String commit_describe; - private String commit_time; - private String tag_name; - private String tags; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/MyResp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/MyResp.java deleted file mode 100644 index b8e1bca3..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/MyResp.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -/** - * 前后端交互统一数据格式 - * - * @author phoenix - * @date 2020年2月4日 - */ -@Getter -@Setter -@ToString -@Builder -public class MyResp { - - private int code; - private Object data; - private String msg; - - public static MyResp result(Resp resp) { - return MyResp.builder().code(resp.getCode()).msg(resp.getMsg()).build(); - } - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/ProtocolResp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/ProtocolResp.java deleted file mode 100644 index a2e2c89f..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/ProtocolResp.java +++ /dev/null @@ -1,78 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import io.swagger.annotations.ApiModelProperty; -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -/** - * 服务器响应请求通信协议 - */ -@Getter -@Setter -@ToString -@Builder -public class ProtocolResp { - @ApiModelProperty(value="命令编号(必要字段): \n" + - "0-9999范围为请求命令\n" + - "10000-19999 范围为对应请求的响应命令\n" + - "响应命令值为10000+请求命令值\n", required = true, - allowableValues = "rang[0, 19999]", - example = "1") - private int cmdId; - - @ApiModelProperty(value="协议版本号", required = true, example = "1") - private int ver; - - @ApiModelProperty(value="msgContent字段内容编码格式:\n" + - "0:无编码格式,普通字符串\n" + - "1:base64编码格式\n" + - "2:采用AES加密后的base64编码格式\n", required = true, - allowableValues = "0, 1, 2", - example = "0") - private int cryptoType; - - @ApiModelProperty(value="当前UTC时间戳", required = true, example = "1526625689000") - private Long timeStamp; - - @ApiModelProperty(value="协议详细内容,Json字符串格式。\n" + - "保存该cmdId命令相关的详细内容,\n" + - "具体每个cmdId命令的详细内容参看对应的命令协议定义", required = false, - example = "{}") - private String msgContent; - - @ApiModelProperty(value="服务器返回状态码", required = false, - example = "200") - private int code; - - public static ProtocolResp result(Resp resp) { - return ProtocolResp.builder().code(resp.getCode()).msgContent(resp.getMsg()).build(); - } - - public static ProtocolResp result(ErrorCode err) { - return ProtocolResp.builder() - .ver(ConstValue.Protocol.VERSION) - .cryptoType(ConstValue.Protocol.CRYPTO_NONE) - .code(err.getHttpCode()) - .timeStamp(System.currentTimeMillis()) - .msgContent(err.getMsg()).build(); - } - - public static ProtocolResp result(ErrorCode err, Integer cmdId, String respMsg) { - return result(err, cmdId, respMsg, ConstValue.Protocol.CRYPTO_NONE); - } - - public static ProtocolResp result(ErrorCode err, Integer cmdId, String respMsg, Integer crypto) { - - return ProtocolResp.builder() - .cmdId(cmdId + ConstValue.Protocol.RESP_CMD_BASE) - .ver(ConstValue.Protocol.VERSION) - .cryptoType(crypto) - .timeStamp(System.currentTimeMillis()) - .code(err.getHttpCode()) - .msgContent(respMsg).build(); - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/Resp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/Resp.java deleted file mode 100644 index 287da0d6..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/Resp.java +++ /dev/null @@ -1,40 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -/** - * 后端返回码定义 - * - * @author phoenix - * @date 2020年2月4日 - */ -public enum Resp { - - // 成功返回码 - SUCCESS(200, "SUCCESS"), - - // 3XX - PARAM_ERROR(300, "自定义参数错误"), - - // 4XX - SYSTEM_ERROR(400, "系统内部自定义错误"), - - // 5XX - ERROR(500, "服务端系统错误"), - - ; - - private int code; - private String msg; - - Resp(int code, String msg) { - this.code = code; - this.msg = msg; - } - - public int getCode() { - return code; - } - - public String getMsg() { - return msg; - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StartTaskRep.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StartTaskRep.java deleted file mode 100644 index 145f33d2..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StartTaskRep.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -@Getter -@Setter -@ToString -@Builder -public class StartTaskRep { - private String id; - private String taskId; - private long expireTime; - private int status; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StartTaskReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StartTaskReq.java deleted file mode 100644 index 2895102f..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StartTaskReq.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -import java.util.List; - -@Getter -@Setter -public class StartTaskReq { - private String id; - private int type; - private String disposeIp; - private long disposeTime; - private int flowDirection; - private List attackType; - private int flowBandwidth; -} - diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskAllReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskAllReq.java deleted file mode 100644 index 4b7369cb..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskAllReq.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -public class StopTaskAllReq { - int type; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByIpReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByIpReq.java deleted file mode 100644 index 811e9d12..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByIpReq.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -import java.util.List; - -@Getter -@Setter -public class StopTaskByIpReq { - public List items; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByIpReqMsg.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByIpReqMsg.java deleted file mode 100644 index ac55aba8..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByIpReqMsg.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -public class StopTaskByIpReqMsg { - private String id; - //任务类型 0:清洗 1:高防 2:黑洞 3:检测 -1: 所有类型 - private int type; - //处置IP - private String disposeIP; - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByPonitReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByPonitReq.java deleted file mode 100644 index 7bfe6b5d..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByPonitReq.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -import java.util.List; - -@Getter -@Setter -public class StopTaskByPonitReq { - public List items; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByPonitReqMsg.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByPonitReqMsg.java deleted file mode 100644 index 9aac64b6..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskByPonitReqMsg.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -public class StopTaskByPonitReqMsg { - private String id; - //任务类型 0:清洗 1:高防 2:黑洞 3:检测 -1: 所有类型 - private int type; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskReq.java deleted file mode 100644 index f98a27de..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskReq.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; -import java.util.List; - -@Getter -@Setter -public class StopTaskReq { - public List taskId; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskResult.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskResult.java deleted file mode 100644 index 6052ed9d..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskResult.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -public class StopTaskResult { - private String id; - private String taskId; - private int type; - private String disposeIp; - private int leftTime; - private int status; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskRsp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskRsp.java deleted file mode 100644 index a9e49b42..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/StopTaskRsp.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -import java.util.List; - -@Getter -@Setter -@ToString -@Builder -public class StopTaskRsp { - public List result; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLoginReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLoginReq.java deleted file mode 100644 index 2d9b8bff..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLoginReq.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -public class UserLoginReq { - public String userName; - public String password; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLoginRsp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLoginRsp.java deleted file mode 100644 index 9b44365f..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLoginRsp.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -@Getter -@Setter -@ToString -@Builder -public class UserLoginRsp { - private String userName; - private String token; - private Long logTime; - private Long expireTime; - private Integer status; - private String message; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLogoutReq.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLogoutReq.java deleted file mode 100644 index 849c9426..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLogoutReq.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Getter; -import lombok.Setter; - -@Getter -@Setter -public class UserLogoutReq { - public String userName; - public String token; -} \ No newline at end of file diff --git a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLogoutRsp.java b/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLogoutRsp.java deleted file mode 100644 index ea823742..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/vo/UserLogoutRsp.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.cmcc.hy.phoenix.pojo.vo; - -import lombok.Builder; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; - -@Getter -@Setter -@ToString -@Builder -public class UserLogoutRsp { - private String userName; - private Integer status; - private String message; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/AsyncService.java b/src/main/java/com/cmcc/hy/phoenix/service/AsyncService.java deleted file mode 100644 index e193d718..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/AsyncService.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -/** - * - * - * @author phoenix - * @date 2020年2月7日 - */ -public interface AsyncService { - - - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/DisposeDeviceManager.java b/src/main/java/com/cmcc/hy/phoenix/service/DisposeDeviceManager.java deleted file mode 100644 index f39f091a..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/DisposeDeviceManager.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.cmcc.hy.phoenix.pojo.po.DeviceCapacityInfo; - -import java.util.EnumMap; -import java.util.List; -import java.util.Map; - -public interface DisposeDeviceManager { - void loadDisposeFromDB(); - EnumMap addNewDisposeDevice(DisposeDevice dev); - - Map getAllDisposeDevs(); - - List getDeviceCapacityInfoById(Long id); - - List getDeviceCapacityInfoByDeviceId(Long deviceId); -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/DisposeService.java b/src/main/java/com/cmcc/hy/phoenix/service/DisposeService.java deleted file mode 100644 index 76196b1a..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/DisposeService.java +++ /dev/null @@ -1,4 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -public interface DisposeService { -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/LoginService.java b/src/main/java/com/cmcc/hy/phoenix/service/LoginService.java deleted file mode 100644 index efc230f3..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/LoginService.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -import com.cmcc.hy.phoenix.common.ErrorCode; - -import java.security.NoSuchAlgorithmException; -import java.util.EnumMap; - -public interface LoginService { - public EnumMap loginService(String username, String password) throws NoSuchAlgorithmException; - public ErrorCode logoutService(String username, String token); - ErrorCode authTokenCheck(String token); -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/UserAccountCacheService.java b/src/main/java/com/cmcc/hy/phoenix/service/UserAccountCacheService.java deleted file mode 100644 index 377f8b4f..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/UserAccountCacheService.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.fasterxml.jackson.core.JsonProcessingException; - -import java.security.NoSuchAlgorithmException; - -public interface UserAccountCacheService { - String getUserToken(String username) throws NoSuchAlgorithmException; - int getUsrPwdErrTimes(String username); - void setUserPwdErrTimes(String username, Integer errTimes); - void cleanUserToken(String username); - ErrorCode verifyUserLogin(String username, String token); - ErrorCode verifyToken(String token); - - String getCacheUser() throws JsonProcessingException; -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/UserService.java b/src/main/java/com/cmcc/hy/phoenix/service/UserService.java deleted file mode 100644 index 29ad9627..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/UserService.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -/** - * 接口定义 - * - * @author phoenix - * @date 2020年2月5日 - */ -public interface UserService { - - /** - * - * @Description: 服务测试方法 - * @param id - * @return - */ - public String testService(long id); - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/impl/AsyncServiceImpl.java b/src/main/java/com/cmcc/hy/phoenix/service/impl/AsyncServiceImpl.java deleted file mode 100644 index fbc69c12..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/impl/AsyncServiceImpl.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.cmcc.hy.phoenix.service.impl; - -import org.springframework.scheduling.annotation.Async; -import org.springframework.stereotype.Service; - -import com.cmcc.hy.phoenix.service.AsyncService; - -import lombok.extern.slf4j.Slf4j; - -/** - * - * - * @author phoenix - * @date 2020年2月5日 - */ -@Service -@Slf4j -public class AsyncServiceImpl implements AsyncService { - - - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/impl/DisposeDeviceManagerImpl.java b/src/main/java/com/cmcc/hy/phoenix/service/impl/DisposeDeviceManagerImpl.java deleted file mode 100644 index 73a5d6bc..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/impl/DisposeDeviceManagerImpl.java +++ /dev/null @@ -1,161 +0,0 @@ -package com.cmcc.hy.phoenix.service.impl; - -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.dispose.DeviceRouter; -import com.cmcc.hy.phoenix.dispose.DisposeProcess; -import com.cmcc.hy.phoenix.mapper.DeviceCapacityMapper; -import com.cmcc.hy.phoenix.mapper.DisposeDeviceMapper; -import com.cmcc.hy.phoenix.pojo.entity.DeviceCapacity; -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.cmcc.hy.phoenix.pojo.po.DeviceCapacityInfo; -import com.dptech.umc.DetectionObjectDataForService; -import com.dptech.umc.ProtectionObjectDataForService; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.extern.slf4j.Slf4j; -import org.springframework.jdbc.datasource.DataSourceTransactionManager; -import org.springframework.stereotype.Service; -import org.springframework.transaction.TransactionDefinition; -import org.springframework.transaction.TransactionStatus; -import com.cmcc.hy.phoenix.service.DisposeDeviceManager; - -import javax.annotation.Resource; -import java.util.ArrayList; -import java.util.EnumMap; -import java.util.List; -import java.util.Map; -import java.util.Arrays; -import java.util.concurrent.ConcurrentHashMap; - -@Service -@Slf4j -public class DisposeDeviceManagerImpl implements DisposeDeviceManager { - @Resource - private ObjectMapper objectMapper; - - @Resource - private DataSourceTransactionManager dataSourceTransactionManager; - @Resource - private TransactionDefinition transactionDefinition; - - - @Resource - private DisposeDeviceMapper disposeDeviceMapper; - - @Resource - private DeviceCapacityMapper deviceCapacityMapper; - - private final ConcurrentHashMap disposeDevMap = new ConcurrentHashMap<>(); - - @Override - public List getDeviceCapacityInfoByDeviceId(Long deviceId) { - List devList = new ArrayList<>(); - - List devCaps = deviceCapacityMapper.getDeviceCapacityByDeviceId(deviceId); - - devCaps.forEach(v -> { - devList.add(DeviceCapacityInfo.builder() - .capacity(v.getCapacity()) - .tolFlowCapacity(v.getTolFlowCapacity()) - .usedCapacity(0) - .disposeIp(new String[]{}).build()); - }); - - return devList; - } - - @Override - public List getDeviceCapacityInfoById(Long id) { - - List dev = disposeDeviceMapper.getDisposeDisposeDevById(id); - - return dev; - } - - @Override - public EnumMap addNewDisposeDevice(DisposeDevice dev) { - TransactionStatus transactionStatus = null; - - EnumMap retMap = new EnumMap<>(ErrorCode.class); - if(isDisposeDeviceExists(dev.getIpv4())){ - retMap.put(ErrorCode.ERR_DEVICEEXISTS, -1L); - return retMap; - } - - List disposeIp = getDisposeIpFromDevice(dev.getType(), dev.getIpv4()); - - if(disposeIp == null) { - retMap.put(ErrorCode.ERR_NOSUCHDEVICE, -1L); - return retMap; - } - - if(dev.getDisposeIp() == null) { - dev.setDisposeIp(disposeIp); - } else { - dev.getDisposeIp().addAll(disposeIp); - } - - try { - transactionStatus = dataSourceTransactionManager.getTransaction(transactionDefinition); - disposeDeviceMapper.addNewDisposeDevice(dev); - dataSourceTransactionManager.commit(transactionStatus); - retMap.put(ErrorCode.ERR_OK, dev.getId()); - addDisposeDeviceToCache(dev); - } catch (Exception ex) { - assert transactionStatus != null; - dataSourceTransactionManager.rollback(transactionStatus); - retMap.put(ErrorCode.ERR_EXCEPTION, -1L); - } - - return retMap; - } - - @Override - public void loadDisposeFromDB() { - List dp = disposeDeviceMapper.getAllDisposeDevice(); - - dp.forEach(v -> { - v.setDisposeIp(getDisposeIpFromDevice(v.getType(), v.getIpv4())); - disposeDevMap.put(v.getIpv4(), v); - }); - } - - @Override - public Map getAllDisposeDevs() { - return disposeDevMap; - } - - private Boolean isDisposeDeviceExists(String ipv4) { - return disposeDevMap.containsKey(ipv4); - } - - private void addDisposeDeviceToCache(DisposeDevice dev) { - disposeDevMap.put(dev.getIpv4(), dev); - } - - private List getDisposeIpFromDevice(int devType, String ipAddr) { - DisposeProcess dptechUMC = DeviceRouter.deviceRouterFactory(devType, ipAddr); - - if(dptechUMC == null) { - return null; - } - - try { - List detDevs = dptechUMC.getAllProtectionObject(); - - List ipList = new ArrayList<>(); - - detDevs.forEach(v -> { - String ipSegment = v.getIpSegment().getValue(); - - if(ipSegment.length() > 0) { - ipList.addAll(Arrays.asList(v.getIpSegment().getValue().replaceAll("\\d{1,}_", "").split(","))); - } - }); - - return ipList; - } catch(Exception ex) { - log.info(ex.getMessage()); - return null; - } - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/impl/LoginServiceImpl.java b/src/main/java/com/cmcc/hy/phoenix/service/impl/LoginServiceImpl.java deleted file mode 100644 index be21db42..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/impl/LoginServiceImpl.java +++ /dev/null @@ -1,92 +0,0 @@ -package com.cmcc.hy.phoenix.service.impl; - -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.mapper.UserAccountMapper; -import com.cmcc.hy.phoenix.pojo.entity.UserAccount; -import com.cmcc.hy.phoenix.service.LoginService; -import com.cmcc.hy.phoenix.service.UserAccountCacheService; -import lombok.extern.slf4j.Slf4j; -import org.springframework.stereotype.Service; - -import javax.annotation.Resource; -import java.security.NoSuchAlgorithmException; -import java.util.EnumMap; - -@Service -@Slf4j -public class LoginServiceImpl implements LoginService { - @Resource - private UserAccountCacheService userAccountService; - - @Resource - private UserAccountMapper userAccountMapper; - - @Override - public ErrorCode authTokenCheck(String token) { - return ErrorCode.ERR_OK; - //return userAccountService.verifyToken(token); - } - - @Override - public EnumMap loginService(String username, String password) throws NoSuchAlgorithmException { - EnumMap retMap = new EnumMap<>(ErrorCode.class); - -// Example exp = new Example(UserAccount.class); -// exp.createCriteria().andEqualTo("username", username); - userAccountMapper.refreshLoginTime(username); - UserAccount loginUser = userAccountMapper.getUserByName(username); - - // 用户为空 - if(loginUser == null) { - retMap.put(ErrorCode.ERR_USERNOTFOUND, ""); - } else { - if(loginUser.getStatus() == ConstValue.UserAccountStatus.LOCKED) { - retMap.put(ErrorCode.ERR_USERLOCK, ""); - } else if(!loginUser.getPassword().equals(password)) { - // 密码错误 - int errTimes = userAccountService.getUsrPwdErrTimes(username) + 1; - - // 更新密码错误次数 - userAccountService.setUserPwdErrTimes(username, errTimes); - - if(errTimes == ConstValue.GlobalConfigure.ALLOW_PWD_ERR_TIMES - 1) { - // 提示用户即将锁定账户 - retMap.put(ErrorCode.ERR_PASSWORDMORE, ""); - } else if(errTimes >= ConstValue.GlobalConfigure.ALLOW_PWD_ERR_TIMES) { - // 锁定账户 - retMap.put(ErrorCode.ERR_USERLOCK, ""); - userAccountMapper.lockUserAccount(username); - } else { - retMap.put(ErrorCode.ERR_PASSWORD, ""); - } - } else { - retMap.put(ErrorCode.ERR_OK, userAccountService.getUserToken(username)); - userAccountService.setUserPwdErrTimes(username, 0); - } - } - - return retMap; - } - - @Override - public ErrorCode logoutService(String username, String token) { - ErrorCode err = ErrorCode.ERR_OK; - - UserAccount loginUser = userAccountMapper.getUserByName(username); - - // 用户为空 - if(loginUser == null) { - err = ErrorCode.ERR_USERNOTFOUND; - } else { - - err = userAccountService.verifyUserLogin(username, token); - - if(err == ErrorCode.ERR_OK) { - userAccountService.cleanUserToken(username); - } - } - - return err; - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/impl/UserAccountCacheServiceImpl.java b/src/main/java/com/cmcc/hy/phoenix/service/impl/UserAccountCacheServiceImpl.java deleted file mode 100644 index 70afd84f..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/impl/UserAccountCacheServiceImpl.java +++ /dev/null @@ -1,178 +0,0 @@ -package com.cmcc.hy.phoenix.service.impl; - -import cn.hutool.core.convert.Convert; -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.pojo.po.UserAccountCache; -import com.cmcc.hy.phoenix.service.UserAccountCacheService; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.extern.slf4j.Slf4j; -import org.apache.commons.codec.binary.Hex; -import org.springframework.stereotype.Service; - -import javax.annotation.Resource; -import java.security.MessageDigest; -import java.security.NoSuchAlgorithmException; -import java.util.Optional; -import java.util.Random; -import java.util.concurrent.ConcurrentHashMap; - -@Service -@Slf4j -public class UserAccountCacheServiceImpl implements UserAccountCacheService { - - @Resource - private ObjectMapper objectMapper; - - private ConcurrentHashMap userAccountMap = new ConcurrentHashMap<>(); - - @Override - public ErrorCode verifyToken(String token) { - //userAccountMap - - if(!userAccountMap.containsKey(token)){ - return ErrorCode.ERR_LOGOUT; - } else { - UserAccountCache uc = userAccountMap.get(token); - - if((System.currentTimeMillis() - uc.getLastAccess()) - >= ConstValue.GlobalConfigure.TOKEN_TIMEOUT_MS) { - return ErrorCode.ERR_TOKENTIMEOUT; - } - - return ErrorCode.ERR_OK; - } - } - - @Override - public ErrorCode verifyUserLogin(String username, String token) { - Optional findRet = userAccountMap.values().stream() - .filter(userAccountCache -> username.equals(userAccountCache.getUsername())) - .findFirst(); - - if(!findRet.isPresent()) { - return ErrorCode.ERR_LOGOUT; - } - - UserAccountCache uc = findRet.get(); - - if(uc.getToken().length() == 0) { - return ErrorCode.ERR_LOGOUT; - } - - if((System.currentTimeMillis() - uc.getLastAccess()) - >= ConstValue.GlobalConfigure.TOKEN_TIMEOUT_MS) - { - return ErrorCode.ERR_TOKENTIMEOUT; - } - - if(!uc.getToken().equals(token)) { - return ErrorCode.ERR_TOKENNOTFOUND; - } - - return ErrorCode.ERR_OK; - } - - @Override - public String getCacheUser() throws JsonProcessingException { - return objectMapper.writeValueAsString(userAccountMap); - } - - @Override - public void cleanUserToken(String username) { - Optional findRet = userAccountMap.values().stream() - .filter(userAccountCache -> username.equals(userAccountCache.getUsername())) - .findFirst(); - - if(findRet.isPresent()) { - UserAccountCache uc = findRet.get(); - userAccountMap.remove(uc.getToken()); - } - } - - @Override - public int getUsrPwdErrTimes(String username) { - Optional findRet = userAccountMap.values().stream() - .filter(userAccountCache -> username.equals(userAccountCache.getUsername())) - .findFirst(); - - if(findRet.isPresent()) { - UserAccountCache uc = findRet.get(); - return uc.getPwdErrTimes(); - } else { - UserAccountCache uc = UserAccountCache.builder() - .username(username) - .token("") - .lastAccess(System.currentTimeMillis()) - .pwdErrTimes(0) - .lastAccess(System.currentTimeMillis()).build(); - - userAccountMap.put(uc.getToken(), uc); - return 0; - } - } - - @Override - public void setUserPwdErrTimes(String username, Integer errTimes) { - Optional findRet = userAccountMap.values().stream() - .filter(userAccountCache -> username.equals(userAccountCache.getUsername())) - .findFirst(); - - if(findRet.isPresent()) { - UserAccountCache uc = findRet.get(); - uc.setPwdErrTimes(Math.abs(errTimes)); - } - } - - @Override - public String getUserToken(String username) throws NoSuchAlgorithmException { - - Optional findRet = userAccountMap.values().stream() - .filter(userAccountCache -> username.equals(userAccountCache.getUsername())) - .findFirst(); - - if(findRet.isPresent()) { - UserAccountCache uc = findRet.get(); - - if((System.currentTimeMillis() - uc.getLastAccess()) - >= ConstValue.GlobalConfigure.TOKEN_TIMEOUT_MS - || uc.getToken().length() == 0) { - uc.setToken(createUserToken(username)); - log.info("Refresh {} Token:{}", username, uc.getToken()); - } else { - log.info("Get {} Token:{}", username, uc.getToken()); - } - - uc.setLastAccess(System.currentTimeMillis()); - - return uc.getToken(); - } else { - UserAccountCache uc = UserAccountCache.builder() - .username(username) - .token(createUserToken(username)) - .lastAccess(System.currentTimeMillis()) - .pwdErrTimes(0) - .lastAccess(System.currentTimeMillis()).build(); - - userAccountMap.put(uc.getToken(), uc); - - log.info("Create {} Token:{}", username, uc.getToken()); - - return uc.getToken(); - } - } - - private String createUserToken(String username) throws NoSuchAlgorithmException { - // 获取指定摘要算法的messageDigest对象 - MessageDigest messageDigest = MessageDigest.getInstance("SHA-256"); // 此处的sha代表sha1 - - String tokenKey = username + - Convert.toStr(new Random(System.currentTimeMillis()).nextInt()) + - Convert.toStr(System.currentTimeMillis()); - // 调用digest方法,进行加密操作 - byte[] cipherBytes = messageDigest.digest(tokenKey.getBytes()); - - return Hex.encodeHexString(cipherBytes); - } -} diff --git a/src/main/java/com/cmcc/hy/phoenix/service/impl/UserServiceImpl.java b/src/main/java/com/cmcc/hy/phoenix/service/impl/UserServiceImpl.java deleted file mode 100644 index e4087edb..00000000 --- a/src/main/java/com/cmcc/hy/phoenix/service/impl/UserServiceImpl.java +++ /dev/null @@ -1,44 +0,0 @@ -package com.cmcc.hy.phoenix.service.impl; - -import javax.annotation.Resource; - -import org.springframework.stereotype.Service; - -import com.cmcc.hy.phoenix.config.MyConfig; -import com.cmcc.hy.phoenix.manager.GlobalManager; -import com.cmcc.hy.phoenix.pojo.entity.User; -import com.cmcc.hy.phoenix.service.UserService; - -import lombok.extern.slf4j.Slf4j; - -/** - * - * - * @author phoenix - * @date 2020年2月5日 - */ -@Service -@Slf4j -public class UserServiceImpl implements UserService { - - @Resource - private MyConfig myConfig; - - @Resource - private GlobalManager globalManager; - - @Override - public String testService(long id) { - // TODO Auto-generated method stub - log.info("进入service方法"); - User user = globalManager.findUserById(id); - if(user == null ) { - return "user is null"; - } - log.info("service层查出用户信息 {}", user); - log.info("自定义配置获取 {}", myConfig.getSystemName()); - // 返回用户名 - return user.getName(); - } - -} diff --git a/src/main/java/com/cmcc/hy/phoenix/Interceptor/SoapPasswordCallbackHandler.java b/src/main/java/com/dispose/Interceptor/SoapPasswordCallbackHandler.java similarity index 86% rename from src/main/java/com/cmcc/hy/phoenix/Interceptor/SoapPasswordCallbackHandler.java rename to src/main/java/com/dispose/Interceptor/SoapPasswordCallbackHandler.java index 37d89533..24a98b04 100644 --- a/src/main/java/com/cmcc/hy/phoenix/Interceptor/SoapPasswordCallbackHandler.java +++ b/src/main/java/com/dispose/Interceptor/SoapPasswordCallbackHandler.java @@ -1,6 +1,6 @@ -package com.cmcc.hy.phoenix.Interceptor; +package com.dispose.Interceptor; -import com.cmcc.hy.phoenix.common.ConstValue; +import com.dispose.common.ConstValue; import org.apache.wss4j.common.ext.WSPasswordCallback; import javax.security.auth.callback.Callback; diff --git a/src/main/java/com/cmcc/hy/phoenix/PhoenixBootApplication.java b/src/main/java/com/dispose/PhoenixBootApplication.java similarity index 92% rename from src/main/java/com/cmcc/hy/phoenix/PhoenixBootApplication.java rename to src/main/java/com/dispose/PhoenixBootApplication.java index d8056017..9c7246b0 100644 --- a/src/main/java/com/cmcc/hy/phoenix/PhoenixBootApplication.java +++ b/src/main/java/com/dispose/PhoenixBootApplication.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix; +package com.dispose; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @@ -21,7 +21,7 @@ import tk.mybatis.spring.annotation.MapperScan; @EnableScheduling @EnableAspectJAutoProxy @EnableTransactionManagement -@MapperScan(basePackages = { "com.cmcc.hy.phoenix.mapper" }) +@MapperScan(basePackages = { "com.cmcc.dispose.mapper" }) @Slf4j public class PhoenixBootApplication { diff --git a/src/main/java/com/cmcc/hy/phoenix/annotation/UserId.java b/src/main/java/com/dispose/annotation/UserId.java similarity index 86% rename from src/main/java/com/cmcc/hy/phoenix/annotation/UserId.java rename to src/main/java/com/dispose/annotation/UserId.java index aadf20fa..be1fff1f 100644 --- a/src/main/java/com/cmcc/hy/phoenix/annotation/UserId.java +++ b/src/main/java/com/dispose/annotation/UserId.java @@ -1,6 +1,6 @@ -package com.cmcc.hy.phoenix.annotation; +package com.dispose.annotation; -import com.cmcc.hy.phoenix.annotation.validator.UserIdValidator; +import com.dispose.annotation.validator.UserIdValidator; import javax.validation.Constraint; import javax.validation.Payload; @@ -12,8 +12,8 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * - * + * + * * @author phoenix * @date 2020年2月8日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/annotation/bodyencdec/ReqDec.java b/src/main/java/com/dispose/annotation/bodyencdec/ReqDec.java similarity index 84% rename from src/main/java/com/cmcc/hy/phoenix/annotation/bodyencdec/ReqDec.java rename to src/main/java/com/dispose/annotation/bodyencdec/ReqDec.java index bc70cb57..d5d043c1 100644 --- a/src/main/java/com/cmcc/hy/phoenix/annotation/bodyencdec/ReqDec.java +++ b/src/main/java/com/dispose/annotation/bodyencdec/ReqDec.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.annotation.bodyencdec; +package com.dispose.annotation.bodyencdec; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; @@ -6,8 +6,8 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * - * + * + * * @author phoenix * @date 2020年2月10日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/annotation/bodyencdec/RespEnc.java b/src/main/java/com/dispose/annotation/bodyencdec/RespEnc.java similarity index 84% rename from src/main/java/com/cmcc/hy/phoenix/annotation/bodyencdec/RespEnc.java rename to src/main/java/com/dispose/annotation/bodyencdec/RespEnc.java index 7b744e40..6d3fbc85 100644 --- a/src/main/java/com/cmcc/hy/phoenix/annotation/bodyencdec/RespEnc.java +++ b/src/main/java/com/dispose/annotation/bodyencdec/RespEnc.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.annotation.bodyencdec; +package com.dispose.annotation.bodyencdec; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; @@ -6,8 +6,8 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * - * + * + * * @author phoenix * @date 2020年2月10日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/annotation/validator/UserIdValidator.java b/src/main/java/com/dispose/annotation/validator/UserIdValidator.java similarity index 87% rename from src/main/java/com/cmcc/hy/phoenix/annotation/validator/UserIdValidator.java rename to src/main/java/com/dispose/annotation/validator/UserIdValidator.java index 456bc59b..36b73fa7 100644 --- a/src/main/java/com/cmcc/hy/phoenix/annotation/validator/UserIdValidator.java +++ b/src/main/java/com/dispose/annotation/validator/UserIdValidator.java @@ -1,6 +1,6 @@ -package com.cmcc.hy.phoenix.annotation.validator; +package com.dispose.annotation.validator; -import com.cmcc.hy.phoenix.annotation.UserId; +import com.dispose.annotation.UserId; import com.google.common.collect.Sets; import java.util.Set; @@ -9,8 +9,8 @@ import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; /** - * - * + * + * * @author phoenix * @date 2020年2月8日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/MyInterceptor.java b/src/main/java/com/dispose/aop/MyInterceptor.java similarity index 97% rename from src/main/java/com/cmcc/hy/phoenix/aop/MyInterceptor.java rename to src/main/java/com/dispose/aop/MyInterceptor.java index 77ffbd89..bf603d44 100644 --- a/src/main/java/com/cmcc/hy/phoenix/aop/MyInterceptor.java +++ b/src/main/java/com/dispose/aop/MyInterceptor.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.aop; +package com.dispose.aop; import java.lang.reflect.Method; @@ -18,7 +18,7 @@ import lombok.extern.slf4j.Slf4j; /** * AOP切面 - * + * * @author phoenix * @date 2020年2月4日 */ @@ -39,7 +39,7 @@ public class MyInterceptor { } /** - * + * * @param point * @return * @throws Throwable diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/cache/CacheDel.java b/src/main/java/com/dispose/aop/cache/CacheDel.java similarity index 92% rename from src/main/java/com/cmcc/hy/phoenix/aop/cache/CacheDel.java rename to src/main/java/com/dispose/aop/cache/CacheDel.java index bb996667..26eba8d6 100644 --- a/src/main/java/com/cmcc/hy/phoenix/aop/cache/CacheDel.java +++ b/src/main/java/com/dispose/aop/cache/CacheDel.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.aop.cache; +package com.dispose.aop.cache; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; @@ -8,9 +8,9 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * + * * 在数据更新、删除情况下,先删除缓存 - * + * * @author phoenix * @date 2020年2月25日 */ @@ -22,14 +22,14 @@ public @interface CacheDel { /** * 什么对象 - * + * * @Description: TODO(这里用一句话描述这个方法的作用) * @return */ Class clazz(); /** - * + * * @Description: TODO(这里用一句话描述这个方法的作用) * @return */ diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/cache/CacheGet.java b/src/main/java/com/dispose/aop/cache/CacheGet.java similarity index 94% rename from src/main/java/com/cmcc/hy/phoenix/aop/cache/CacheGet.java rename to src/main/java/com/dispose/aop/cache/CacheGet.java index a98a71c5..63f023ab 100644 --- a/src/main/java/com/cmcc/hy/phoenix/aop/cache/CacheGet.java +++ b/src/main/java/com/dispose/aop/cache/CacheGet.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.aop.cache; +package com.dispose.aop.cache; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; @@ -8,9 +8,9 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * + * * 先从缓存读取,读不到走数据层读取,并存入缓存 - * + * * @author phoenix * @date 2020年2月25日 */ @@ -22,19 +22,19 @@ public @interface CacheGet { /** * 缓存的有效期,默认300秒 - * + * * @Description: * @return */ int ttl() default 300; /** - * + * * @Description: TODO(这里用一句话描述这个方法的作用) * @return */ String[] key(); - + /** * 是否缓存空值,防止缓存穿透使用 * 慎用 diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/cache/CachePut.java b/src/main/java/com/dispose/aop/cache/CachePut.java similarity index 93% rename from src/main/java/com/cmcc/hy/phoenix/aop/cache/CachePut.java rename to src/main/java/com/dispose/aop/cache/CachePut.java index 2bacb3e2..74954379 100644 --- a/src/main/java/com/cmcc/hy/phoenix/aop/cache/CachePut.java +++ b/src/main/java/com/dispose/aop/cache/CachePut.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.aop.cache; +package com.dispose.aop.cache; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; @@ -8,7 +8,7 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * + * * 新增数据,直接设置缓存,目的适合缓存穿透结合使用 * 减少空缓存影响时间 * @author phoenix @@ -22,17 +22,17 @@ public @interface CachePut { /** * 缓存的有效期,默认300秒 - * + * * @Description: * @return */ int ttl() default 300; /** - * + * * @Description: TODO(这里用一句话描述这个方法的作用) * @return */ String[] key() default {}; - + } diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/cache/MyCache.java b/src/main/java/com/dispose/aop/cache/MyCache.java similarity index 93% rename from src/main/java/com/cmcc/hy/phoenix/aop/cache/MyCache.java rename to src/main/java/com/dispose/aop/cache/MyCache.java index b5f927e5..4644d66c 100644 --- a/src/main/java/com/cmcc/hy/phoenix/aop/cache/MyCache.java +++ b/src/main/java/com/dispose/aop/cache/MyCache.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.aop.cache; +package com.dispose.aop.cache; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; @@ -9,7 +9,7 @@ import java.lang.annotation.Target; /** * 某些方法需要组合注解的用这个注解标注 - * + * * @author phoenix * @date 2020年3月4日 */ @@ -20,9 +20,9 @@ import java.lang.annotation.Target; public @interface MyCache { CachePut[] put() default {};//保存数据同时设置多个key缓存 - + //CacheGet[] get() default {}; - + CacheDel[] del() default {};//删除对象,需要删除该对象的所有缓存数据 - + } diff --git a/src/main/java/com/cmcc/hy/phoenix/aop/cache/MyCacheInterceptor.java b/src/main/java/com/dispose/aop/cache/MyCacheInterceptor.java similarity index 98% rename from src/main/java/com/cmcc/hy/phoenix/aop/cache/MyCacheInterceptor.java rename to src/main/java/com/dispose/aop/cache/MyCacheInterceptor.java index 84c106e6..7ef454d0 100644 --- a/src/main/java/com/cmcc/hy/phoenix/aop/cache/MyCacheInterceptor.java +++ b/src/main/java/com/dispose/aop/cache/MyCacheInterceptor.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.aop.cache; +package com.dispose.aop.cache; import java.io.Serializable; import java.lang.reflect.Method; @@ -20,14 +20,14 @@ import org.springframework.expression.spel.standard.SpelExpressionParser; import org.springframework.expression.spel.support.StandardEvaluationContext; import org.springframework.stereotype.Component; -import com.cmcc.hy.phoenix.common.Utils; -import com.cmcc.hy.phoenix.redis.RedisClient; +import com.dispose.common.Utils; +import com.dispose.redis.RedisClient; import lombok.extern.slf4j.Slf4j; /** * 自定义封装manager缓存统一管理 TODO 未完待续 - * + * * @author phoenix * @date 2020年2月10日 */ @@ -63,14 +63,14 @@ public class MyCacheInterceptor { /** * 切记,这三个缓存注解,不可同时在一个方法上使用 如果出现,一定是你的业务设计有问题 - * + * * @数据操作可归结为 CRUD 操作(增加、读取、更新、删除) * @组合操作 MyCache * @增加:可能需要CachePut * @读取:可能需要CacheGet * @更新:可能需要CacheDel 这里不要加CachePut,简化操作,简单就是高效 * @删除:可能需要CacheDel - * + * * @param point * @return * @throws Throwable diff --git a/src/main/java/com/cmcc/hy/phoenix/common/ConstValue.java b/src/main/java/com/dispose/common/ConstValue.java similarity index 98% rename from src/main/java/com/cmcc/hy/phoenix/common/ConstValue.java rename to src/main/java/com/dispose/common/ConstValue.java index 3820d953..210edee7 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/ConstValue.java +++ b/src/main/java/com/dispose/common/ConstValue.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; public class ConstValue { public class GlobalConfigure { diff --git a/src/main/java/com/cmcc/hy/phoenix/common/DateUtil.java b/src/main/java/com/dispose/common/DateUtil.java similarity index 96% rename from src/main/java/com/cmcc/hy/phoenix/common/DateUtil.java rename to src/main/java/com/dispose/common/DateUtil.java index 8965648c..06f42289 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/DateUtil.java +++ b/src/main/java/com/dispose/common/DateUtil.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; import org.joda.time.DateTime; import org.joda.time.Period; @@ -9,7 +9,7 @@ import java.util.Date; /** * 日期常用工具方法 - * + * * @author phoenix * @date 2020年2月4日 */ @@ -36,7 +36,7 @@ public class DateUtil { private static Calendar calendar = Calendar.getInstance(); /** - * + * * @param strTime * @param pattern * @return @@ -47,7 +47,7 @@ public class DateUtil { } /** - * + * * @param date * @param pattern * @return @@ -58,7 +58,7 @@ public class DateUtil { } /** - * + * * @return */ public static Date getCurrentTime() { @@ -66,7 +66,7 @@ public class DateUtil { } /** - * + * * @return */ public static Date getCurrentDate() { @@ -79,7 +79,7 @@ public class DateUtil { } /** - * + * * @param date * @param x * @return @@ -89,7 +89,7 @@ public class DateUtil { } /** - * + * * @param date * @param x * @return @@ -99,7 +99,7 @@ public class DateUtil { } /** - * + * * @param date * @param x * @return @@ -109,7 +109,7 @@ public class DateUtil { } /** - * + * * @param date * @param x * @return @@ -119,7 +119,7 @@ public class DateUtil { } /** - * + * * @param date * @param x * @return @@ -129,7 +129,7 @@ public class DateUtil { } /** - * + * * @param now * @param old * @param interval @@ -140,7 +140,7 @@ public class DateUtil { } /** - * + * * @param begin * @param end * @return diff --git a/src/main/java/com/cmcc/hy/phoenix/common/ErrorCode.java b/src/main/java/com/dispose/common/ErrorCode.java similarity index 97% rename from src/main/java/com/cmcc/hy/phoenix/common/ErrorCode.java rename to src/main/java/com/dispose/common/ErrorCode.java index c9fab73d..90acb806 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/ErrorCode.java +++ b/src/main/java/com/dispose/common/ErrorCode.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; /** * @brief 错误码常量定义 diff --git a/src/main/java/com/cmcc/hy/phoenix/common/GlobalVar.java b/src/main/java/com/dispose/common/GlobalVar.java similarity index 83% rename from src/main/java/com/cmcc/hy/phoenix/common/GlobalVar.java rename to src/main/java/com/dispose/common/GlobalVar.java index 8a71b51e..dd0ba09c 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/GlobalVar.java +++ b/src/main/java/com/dispose/common/GlobalVar.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; /** * @author: chiwei @@ -7,7 +7,7 @@ package com.cmcc.hy.phoenix.common; public class GlobalVar { public static volatile int MAX_THREAT_INFO_VERSION = -1; - + public static volatile String THREAT_INFO_TYPE = "1"; - + } diff --git a/src/main/java/com/cmcc/hy/phoenix/common/Http.java b/src/main/java/com/dispose/common/Http.java similarity index 94% rename from src/main/java/com/cmcc/hy/phoenix/common/Http.java rename to src/main/java/com/dispose/common/Http.java index 98971971..b8fe34ad 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/Http.java +++ b/src/main/java/com/dispose/common/Http.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; import java.util.Map; @@ -12,7 +12,7 @@ import cn.hutool.http.HttpRequest; public class Http { /** - * + * * @param url * @param header * @param body @@ -22,9 +22,9 @@ public class Http { return HttpRequest.post(url).header(Header.CONTENT_TYPE, "application/json").addHeaders(header).body(body) .execute().body(); } - + /** - * + * * @param url * @param header * @param body @@ -35,9 +35,9 @@ public class Http { return HttpRequest.post(url).addHeaders(header).form(body) .execute().body(); } - + /** - * + * * @param url * @param header * @param body diff --git a/src/main/java/com/cmcc/hy/phoenix/common/PatternUtil.java b/src/main/java/com/dispose/common/PatternUtil.java similarity index 99% rename from src/main/java/com/cmcc/hy/phoenix/common/PatternUtil.java rename to src/main/java/com/dispose/common/PatternUtil.java index b532aa67..0cc273b3 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/PatternUtil.java +++ b/src/main/java/com/dispose/common/PatternUtil.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; import org.apache.oro.text.regex.MalformedPatternException; import org.apache.oro.text.regex.Pattern; @@ -10,7 +10,7 @@ import org.apache.oro.text.regex.Perl5Matcher; /** * 常用正则工具 - * + * * @author phoenix * @date 2020年2月4日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/common/Utils.java b/src/main/java/com/dispose/common/Utils.java similarity index 99% rename from src/main/java/com/cmcc/hy/phoenix/common/Utils.java rename to src/main/java/com/dispose/common/Utils.java index c163af3d..b8b31233 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/Utils.java +++ b/src/main/java/com/dispose/common/Utils.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; import com.google.common.base.Splitter; import com.google.common.collect.Lists; @@ -347,7 +347,7 @@ public class Utils { return true; } - + /** * 防止缓存雪崩,随机过期时间 * @Description: TODO(这里用一句话描述这个方法的作用) diff --git a/src/main/java/com/cmcc/hy/phoenix/common/ValidationConfig.java b/src/main/java/com/dispose/common/ValidationConfig.java similarity index 93% rename from src/main/java/com/cmcc/hy/phoenix/common/ValidationConfig.java rename to src/main/java/com/dispose/common/ValidationConfig.java index 5a036338..d4721776 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/ValidationConfig.java +++ b/src/main/java/com/dispose/common/ValidationConfig.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.common; +package com.dispose.common; import javax.validation.Validation; import javax.validation.Validator; @@ -9,8 +9,8 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; /** - * - * + * + * * @author phoenix * @date 2020年2月8日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/config/MyConfig.java b/src/main/java/com/dispose/config/MyConfig.java similarity index 94% rename from src/main/java/com/cmcc/hy/phoenix/config/MyConfig.java rename to src/main/java/com/dispose/config/MyConfig.java index 45b7094a..5f658c86 100644 --- a/src/main/java/com/cmcc/hy/phoenix/config/MyConfig.java +++ b/src/main/java/com/dispose/config/MyConfig.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.config; +package com.dispose.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @@ -8,7 +8,7 @@ import lombok.Setter; /** * 自定义配置 - * + * * @author phoenix * @date 2020年2月8日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/config/SetupInit.java b/src/main/java/com/dispose/config/SetupInit.java similarity index 71% rename from src/main/java/com/cmcc/hy/phoenix/config/SetupInit.java rename to src/main/java/com/dispose/config/SetupInit.java index 33fc8291..8f2dbdae 100644 --- a/src/main/java/com/cmcc/hy/phoenix/config/SetupInit.java +++ b/src/main/java/com/dispose/config/SetupInit.java @@ -1,6 +1,5 @@ -package com.cmcc.hy.phoenix.config; +package com.dispose.config; -import com.cmcc.hy.phoenix.service.DisposeDeviceManager; import lombok.extern.slf4j.Slf4j; import org.springframework.boot.CommandLineRunner; import org.springframework.stereotype.Component; @@ -10,8 +9,8 @@ import javax.annotation.Resource; @Component @Slf4j public class SetupInit implements CommandLineRunner { - @Resource - private DisposeDeviceManager disposeDevMgr; + //@Resource + //private DisposeDeviceManager disposeDevMgr; @Override @@ -20,6 +19,6 @@ public class SetupInit implements CommandLineRunner { log.info("System Setup................................................"); //fileLoadService.mailFileRefresh(); - disposeDevMgr.loadDisposeFromDB(); + //disposeDevMgr.loadDisposeFromDB(); } } diff --git a/src/main/java/com/cmcc/hy/phoenix/dispose/DeviceRouter.java b/src/main/java/com/dispose/dispose/DeviceRouter.java similarity index 76% rename from src/main/java/com/cmcc/hy/phoenix/dispose/DeviceRouter.java rename to src/main/java/com/dispose/dispose/DeviceRouter.java index 877c75b1..0a91ad66 100644 --- a/src/main/java/com/cmcc/hy/phoenix/dispose/DeviceRouter.java +++ b/src/main/java/com/dispose/dispose/DeviceRouter.java @@ -1,6 +1,6 @@ -package com.cmcc.hy.phoenix.dispose; +package com.dispose.dispose; -import com.cmcc.hy.phoenix.common.ConstValue; +import com.dispose.common.ConstValue; public class DeviceRouter { diff --git a/src/main/java/com/dispose/dispose/DisposeProcess.java b/src/main/java/com/dispose/dispose/DisposeProcess.java new file mode 100644 index 00000000..8be2c7f0 --- /dev/null +++ b/src/main/java/com/dispose/dispose/DisposeProcess.java @@ -0,0 +1,20 @@ +package com.dispose.dispose; + +//import com.dptech.NtcRequestResultInfo; + +public interface DisposeProcess { + public int runDispose(String ip); + + public T getAllDetectionObject(); + + public T getAllProtectionObject(); + + public String getDetectionDevices(); + + public String getProtectDevices(); + + //public NtcRequestResultInfo stopAbnormalTask(String abnormalIp, int attackType, int direction); + + //public NtcRequestResultInfo startAbnormalTask(String abnormalIp, int attackType, int direction); + +} diff --git a/src/main/java/com/cmcc/hy/phoenix/dispose/DptechUMC.java b/src/main/java/com/dispose/dispose/DptechUMC.java similarity index 72% rename from src/main/java/com/cmcc/hy/phoenix/dispose/DptechUMC.java rename to src/main/java/com/dispose/dispose/DptechUMC.java index 96e1cacf..1defce39 100644 --- a/src/main/java/com/cmcc/hy/phoenix/dispose/DptechUMC.java +++ b/src/main/java/com/dispose/dispose/DptechUMC.java @@ -1,10 +1,9 @@ -package com.cmcc.hy.phoenix.dispose; +package com.dispose.dispose; -import com.cmcc.hy.phoenix.Interceptor.SoapPasswordCallbackHandler; -import com.cmcc.hy.phoenix.common.ConstValue; -import com.dptech.umc.AbnormalFlowCleaningServicePortType; -import com.dptech.umc.ArrayOfDetectionObjectDataForService; -import com.dptech.umc.NtcRequestResultInfo; +import com.dispose.Interceptor.SoapPasswordCallbackHandler; +import com.dispose.common.ConstValue; +import com.dptech.dispose.AbnormalFlowCleaningServicePortType; +import com.dptech.dispose.ArrayOfDetectionObjectDataForService; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import org.apache.cxf.jaxws.JaxWsProxyFactoryBean; @@ -12,11 +11,6 @@ import org.apache.cxf.ws.security.wss4j.WSS4JOutInterceptor; import org.apache.wss4j.dom.WSConstants; import org.apache.wss4j.dom.handler.WSHandlerConstants; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.xml.ws.RequestWrapper; -import javax.xml.ws.ResponseWrapper; import java.util.HashMap; import java.util.Map; @@ -73,15 +67,5 @@ public class DptechUMC implements DisposeProcess { this.cleanTypePort = (AbnormalFlowCleaningServicePortType)jaxWsProxyFactoryBean.create(); } - - @Override - public NtcRequestResultInfo stopAbnormalTask(String abnormalIp, int attackType, int direction){ - return cleanTypePort.stopAbnormalTaskForUMC(abnormalIp, attackType, direction); - } - - @Override - public NtcRequestResultInfo startAbnormalTask(String abnormalIp, int attackType, int direction){ - return cleanTypePort.startAbnormalTaskForUMC(abnormalIp, attackType, direction); - } } diff --git a/src/main/java/com/dispose/exception/GlobalExceptionHandler.java b/src/main/java/com/dispose/exception/GlobalExceptionHandler.java new file mode 100644 index 00000000..220e7e02 --- /dev/null +++ b/src/main/java/com/dispose/exception/GlobalExceptionHandler.java @@ -0,0 +1,63 @@ +package com.dispose.exception; + +import java.util.HashMap; +import java.util.Map; +import java.util.Set; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.ConstraintViolation; +import javax.validation.ConstraintViolationException; + +import org.apache.commons.lang3.exception.ExceptionUtils; +import org.springframework.web.bind.MethodArgumentNotValidException; +import org.springframework.web.bind.MissingPathVariableException; +import org.springframework.web.bind.annotation.ControllerAdvice; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.ResponseBody; + +import lombok.extern.slf4j.Slf4j; + +/** + * 全局异常处理 + * + * @author phoenix + * @date 2020年2月5日 + */ + +@ControllerAdvice +@Slf4j +public class GlobalExceptionHandler { + + + +// @ExceptionHandler(Throwable.class) +// @ResponseBody +// public MyResp handleException(HttpServletRequest request, Throwable e) { +// log.error("进入全局异常处理", e); +// Map map = new HashMap<>(2); +// map.put("url", request.getRequestURL().toString()); +// map.put("exception", ExceptionUtils.getMessage(e)); +// return MyResp.builder().code(Resp.ERROR.getCode()).msg(Resp.ERROR.getMsg()).data(map).build(); +// } +// +// @ExceptionHandler(Exception.class) +// @ResponseBody +// public MyResp paramException(HttpServletRequest request, Exception e) { +// log.error("进入参数校验异常处理", e); +// StringBuffer errorMsg = new StringBuffer(); +// if (e instanceof ConstraintViolationException) { +// Set> cves = ((ConstraintViolationException) e).getConstraintViolations(); +// cves.forEach(ex -> errorMsg.append(ex.getMessage())); +// } else if (e instanceof MissingPathVariableException) { +// errorMsg.append("请检查参数 " + ((MissingPathVariableException) e).getVariableName()); +// } else if (e instanceof MethodArgumentNotValidException) { +// errorMsg.append( +// ((MethodArgumentNotValidException) e).getBindingResult().getAllErrors().get(0).getDefaultMessage()); +// } else { +// log.error("请求异常", e); +// errorMsg.append("参数异常"); +// } +// return MyResp.builder().code(Resp.PARAM_ERROR.getCode()).msg(errorMsg.toString()).build(); +// } + +} diff --git a/src/main/java/com/cmcc/hy/phoenix/help/GitInformation.java b/src/main/java/com/dispose/help/GitInformation.java similarity index 94% rename from src/main/java/com/cmcc/hy/phoenix/help/GitInformation.java rename to src/main/java/com/dispose/help/GitInformation.java index ca664445..9127def0 100644 --- a/src/main/java/com/cmcc/hy/phoenix/help/GitInformation.java +++ b/src/main/java/com/dispose/help/GitInformation.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.help; +package com.dispose.help; import lombok.Getter; import lombok.Setter; diff --git a/src/main/java/com/cmcc/hy/phoenix/redis/MyRedisConfiguration.java b/src/main/java/com/dispose/redis/MyRedisConfiguration.java similarity index 95% rename from src/main/java/com/cmcc/hy/phoenix/redis/MyRedisConfiguration.java rename to src/main/java/com/dispose/redis/MyRedisConfiguration.java index c986dd17..e5326bb7 100644 --- a/src/main/java/com/cmcc/hy/phoenix/redis/MyRedisConfiguration.java +++ b/src/main/java/com/dispose/redis/MyRedisConfiguration.java @@ -1,10 +1,11 @@ -package com.cmcc.hy.phoenix.redis; +package com.dispose.redis; import java.util.ArrayList; import java.util.List; import javax.annotation.Resource; +import com.dispose.common.Utils; import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import org.redisson.Redisson; import org.redisson.api.RedissonClient; @@ -13,8 +14,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; -import com.cmcc.hy.phoenix.common.Utils; -import com.cmcc.hy.phoenix.config.MyConfig; +import com.dispose.config.MyConfig; import lombok.extern.slf4j.Slf4j; import redis.clients.jedis.JedisShardInfo; @@ -23,8 +23,8 @@ import redis.clients.jedis.util.Hashing; import redis.clients.jedis.util.Sharded; /** - * - * + * + * * @author phoenix * @date 2020年3月10日 */ @@ -61,9 +61,9 @@ public class MyRedisConfiguration { log.info("Redis Type = jedis ,initialized success"); return new ShardedJedisPool(config, shards, Hashing.MURMUR_HASH, Sharded.DEFAULT_KEY_TAG_PATTERN); } - + /** - * + * * @Description: Redisson哨兵模式实例 具体API操作参照Redisson Github对照表 * https://github.com/redisson/redisson/wiki/11.-Redis%E5%91%BD%E4%BB%A4%E5%92%8CRedisson%E5%AF%B9%E8%B1%A1%E5%8C%B9%E9%85%8D%E5%88%97%E8%A1%A8 * @blog https://blog.csdn.net/unclecoco/article/details/99412915 @@ -80,7 +80,7 @@ public class MyRedisConfiguration { log.info("Redis Type = redisson-sentinel ,initialized success"); return Redisson.create(config); } - + /** * 在redis服务端通过KP做主备 * @Description: redisson single @@ -94,5 +94,5 @@ public class MyRedisConfiguration { log.info("Redis Type = redisson-single ,initialized success"); return Redisson.create(config); } - + } diff --git a/src/main/java/com/cmcc/hy/phoenix/redis/ProtobufSerializer.java b/src/main/java/com/dispose/redis/ProtobufSerializer.java similarity index 98% rename from src/main/java/com/cmcc/hy/phoenix/redis/ProtobufSerializer.java rename to src/main/java/com/dispose/redis/ProtobufSerializer.java index 83bb57b0..943f903d 100644 --- a/src/main/java/com/cmcc/hy/phoenix/redis/ProtobufSerializer.java +++ b/src/main/java/com/dispose/redis/ProtobufSerializer.java @@ -1,4 +1,4 @@ -package com.cmcc.hy.phoenix.redis; +package com.dispose.redis; import io.protostuff.LinkedBuffer; import io.protostuff.ProtostuffIOUtil; @@ -13,8 +13,8 @@ import java.util.Map; import java.util.concurrent.ConcurrentHashMap; /** - * - * + * + * * @author phoenix * @date 2020年2月8日 */ diff --git a/src/main/java/com/cmcc/hy/phoenix/redis/RedisClient.java b/src/main/java/com/dispose/redis/RedisClient.java similarity index 96% rename from src/main/java/com/cmcc/hy/phoenix/redis/RedisClient.java rename to src/main/java/com/dispose/redis/RedisClient.java index f74b1600..283ef572 100644 --- a/src/main/java/com/cmcc/hy/phoenix/redis/RedisClient.java +++ b/src/main/java/com/dispose/redis/RedisClient.java @@ -1,10 +1,10 @@ -package com.cmcc.hy.phoenix.redis; +package com.dispose.redis; import java.io.Serializable; /** - * - * + * + * * @author phoenix * @date 2020年2月8日 */ @@ -27,15 +27,15 @@ public interface RedisClient { 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; + + +/** + *

DdosGlobalSynFloodForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalSynFloodForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="enable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosGlobalSynFloodForService", namespace = "http://data.ntc.dp.com", propOrder = { + "enable", + "objName", + "threshold", + "type" +}) +public class DdosGlobalSynFloodForService { + + @XmlElementRef(name = "enable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement threshold; + @XmlElementRef(name = "type", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement type; + + /** + * 获取enable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable() { + return enable; + } + + /** + * 设置enable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable(JAXBElement value) { + this.enable = 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; + } + + /** + * 获取threshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getThreshold() { + return threshold; + } + + /** + * 设置threshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setThreshold(JAXBElement value) { + this.threshold = value; + } + + /** + * 获取type属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getType() { + return type; + } + + /** + * 设置type属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setType(JAXBElement value) { + this.type = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosGlobalTcpFlagForService.java b/src/main/java/com/dptech/dispose/DdosGlobalTcpFlagForService.java new file mode 100644 index 00000000..00436674 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosGlobalTcpFlagForService.java @@ -0,0 +1,91 @@ + +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; + + +/** + *

DdosGlobalTcpFlagForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalTcpFlagForService">
+ *   <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="tcpFlagenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosGlobalTcpFlagForService", namespace = "http://data.ntc.dp.com", propOrder = { + "objName", + "tcpFlagenable" +}) +public class DdosGlobalTcpFlagForService { + + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "tcpFlagenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement tcpFlagenable; + + /** + * 获取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; + } + + /** + * 获取tcpFlagenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getTcpFlagenable() { + return tcpFlagenable; + } + + /** + * 设置tcpFlagenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setTcpFlagenable(JAXBElement value) { + this.tcpFlagenable = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosGlobalTcpFragForService.java b/src/main/java/com/dptech/dispose/DdosGlobalTcpFragForService.java new file mode 100644 index 00000000..b1dc3338 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosGlobalTcpFragForService.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; + + +/** + *

DdosGlobalTcpFragForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalTcpFragForService">
+ *   <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="tcpenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="tcpthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosGlobalTcpFragForService", namespace = "http://data.ntc.dp.com", propOrder = { + "objName", + "tcpenable", + "tcpthreshold" +}) +public class DdosGlobalTcpFragForService { + + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "tcpenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement tcpenable; + @XmlElementRef(name = "tcpthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement tcpthreshold; + + /** + * 获取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; + } + + /** + * 获取tcpenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getTcpenable() { + return tcpenable; + } + + /** + * 设置tcpenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setTcpenable(JAXBElement value) { + this.tcpenable = value; + } + + /** + * 获取tcpthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getTcpthreshold() { + return tcpthreshold; + } + + /** + * 设置tcpthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setTcpthreshold(JAXBElement value) { + this.tcpthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosGlobalTcpLengthForService.java b/src/main/java/com/dptech/dispose/DdosGlobalTcpLengthForService.java new file mode 100644 index 00000000..223e5205 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosGlobalTcpLengthForService.java @@ -0,0 +1,399 @@ + +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; + + +/** + *

DdosGlobalTcpLengthForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalTcpLengthForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="finMax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="finMin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="finenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rstMax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rstMin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rstenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="synMax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="synMin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="synackMax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="synackMin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="synackenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="synenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosGlobalTcpLengthForService", namespace = "http://data.ntc.dp.com", propOrder = { + "finMax", + "finMin", + "finenable", + "objName", + "rstMax", + "rstMin", + "rstenable", + "synMax", + "synMin", + "synackMax", + "synackMin", + "synackenable", + "synenable" +}) +public class DdosGlobalTcpLengthForService { + + @XmlElementRef(name = "finMax", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement finMax; + @XmlElementRef(name = "finMin", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement finMin; + @XmlElementRef(name = "finenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement finenable; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "rstMax", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement rstMax; + @XmlElementRef(name = "rstMin", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement rstMin; + @XmlElementRef(name = "rstenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement rstenable; + @XmlElementRef(name = "synMax", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement synMax; + @XmlElementRef(name = "synMin", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement synMin; + @XmlElementRef(name = "synackMax", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement synackMax; + @XmlElementRef(name = "synackMin", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement synackMin; + @XmlElementRef(name = "synackenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement synackenable; + @XmlElementRef(name = "synenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement synenable; + + /** + * 获取finMax属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getFinMax() { + return finMax; + } + + /** + * 设置finMax属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setFinMax(JAXBElement value) { + this.finMax = value; + } + + /** + * 获取finMin属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getFinMin() { + return finMin; + } + + /** + * 设置finMin属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setFinMin(JAXBElement value) { + this.finMin = value; + } + + /** + * 获取finenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getFinenable() { + return finenable; + } + + /** + * 设置finenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setFinenable(JAXBElement value) { + this.finenable = 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; + } + + /** + * 获取rstMax属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getRstMax() { + return rstMax; + } + + /** + * 设置rstMax属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setRstMax(JAXBElement value) { + this.rstMax = value; + } + + /** + * 获取rstMin属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getRstMin() { + return rstMin; + } + + /** + * 设置rstMin属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setRstMin(JAXBElement value) { + this.rstMin = value; + } + + /** + * 获取rstenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getRstenable() { + return rstenable; + } + + /** + * 设置rstenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setRstenable(JAXBElement value) { + this.rstenable = value; + } + + /** + * 获取synMax属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSynMax() { + return synMax; + } + + /** + * 设置synMax属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSynMax(JAXBElement value) { + this.synMax = value; + } + + /** + * 获取synMin属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSynMin() { + return synMin; + } + + /** + * 设置synMin属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSynMin(JAXBElement value) { + this.synMin = value; + } + + /** + * 获取synackMax属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSynackMax() { + return synackMax; + } + + /** + * 设置synackMax属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSynackMax(JAXBElement value) { + this.synackMax = value; + } + + /** + * 获取synackMin属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSynackMin() { + return synackMin; + } + + /** + * 设置synackMin属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSynackMin(JAXBElement value) { + this.synackMin = value; + } + + /** + * 获取synackenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSynackenable() { + return synackenable; + } + + /** + * 设置synackenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSynackenable(JAXBElement value) { + this.synackenable = value; + } + + /** + * 获取synenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSynenable() { + return synenable; + } + + /** + * 设置synenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSynenable(JAXBElement value) { + this.synenable = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosGlobalTcpStateForService.java b/src/main/java/com/dptech/dispose/DdosGlobalTcpStateForService.java new file mode 100644 index 00000000..d3d11eb0 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosGlobalTcpStateForService.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; + + +/** + *

DdosGlobalTcpStateForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalTcpStateForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="chosen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="statenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosGlobalTcpStateForService", namespace = "http://data.ntc.dp.com", propOrder = { + "chosen", + "objName", + "statenable" +}) +public class DdosGlobalTcpStateForService { + + @XmlElementRef(name = "chosen", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement chosen; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "statenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement statenable; + + /** + * 获取chosen属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getChosen() { + return chosen; + } + + /** + * 设置chosen属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setChosen(JAXBElement value) { + this.chosen = 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; + } + + /** + * 获取statenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getStatenable() { + return statenable; + } + + /** + * 设置statenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setStatenable(JAXBElement value) { + this.statenable = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosGlobalUdpFragForService.java b/src/main/java/com/dptech/dispose/DdosGlobalUdpFragForService.java new file mode 100644 index 00000000..5f990f89 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosGlobalUdpFragForService.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; + + +/** + *

DdosGlobalUdpFragForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalUdpFragForService">
+ *   <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="udpenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="udpthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosGlobalUdpFragForService", namespace = "http://data.ntc.dp.com", propOrder = { + "objName", + "udpenable", + "udpthreshold" +}) +public class DdosGlobalUdpFragForService { + + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "udpenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement udpenable; + @XmlElementRef(name = "udpthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement udpthreshold; + + /** + * 获取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; + } + + /** + * 获取udpenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getUdpenable() { + return udpenable; + } + + /** + * 设置udpenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setUdpenable(JAXBElement value) { + this.udpenable = value; + } + + /** + * 获取udpthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getUdpthreshold() { + return udpthreshold; + } + + /** + * 设置udpthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setUdpthreshold(JAXBElement value) { + this.udpthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosGlobalUdpLengthForService.java b/src/main/java/com/dptech/dispose/DdosGlobalUdpLengthForService.java new file mode 100644 index 00000000..d4039e6c --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosGlobalUdpLengthForService.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; + + +/** + *

DdosGlobalUdpLengthForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalUdpLengthForService">
+ *   <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 = "DdosGlobalUdpLengthForService", namespace = "http://data.ntc.dp.com", propOrder = { + "lengthenable", + "maxlength", + "minlength", + "objName" +}) +public class DdosGlobalUdpLengthForService { + + @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/DdosGlobalUdpPayloadForService.java b/src/main/java/com/dptech/dispose/DdosGlobalUdpPayloadForService.java new file mode 100644 index 00000000..99b857eb --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosGlobalUdpPayloadForService.java @@ -0,0 +1,203 @@ + +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; + + +/** + *

DdosGlobalUdpPayloadForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosGlobalUdpPayloadForService">
+ *   <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"/>
+ *         <element name="payloademptyenable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosGlobalUdpPayloadForService", namespace = "http://data.ntc.dp.com", propOrder = { + "objName", + "payloadOffsetMax", + "payloadOffsetMin", + "payloadThreshold", + "payloadcontentenable", + "payloademptyenable" +}) +public class DdosGlobalUdpPayloadForService { + + @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; + @XmlElementRef(name = "payloademptyenable", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement payloademptyenable; + + /** + * 获取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; + } + + /** + * 获取payloademptyenable属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getPayloademptyenable() { + return payloademptyenable; + } + + /** + * 设置payloademptyenable属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setPayloademptyenable(JAXBElement value) { + this.payloademptyenable = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosHttpGetSipCusProV4ForService.java b/src/main/java/com/dptech/dispose/DdosHttpGetSipCusProV4ForService.java new file mode 100644 index 00000000..17333c09 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosHttpGetSipCusProV4ForService.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; + + +/** + *

DdosHttpGetSipCusProV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosHttpGetSipCusProV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosHttpGetSipCusProV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "name", + "objName", + "protectthreshold", + "sip" +}) +public class DdosHttpGetSipCusProV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + @XmlElementRef(name = "sip", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement sip; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + + /** + * 获取sip属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSip() { + return sip; + } + + /** + * 设置sip属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSip(JAXBElement value) { + this.sip = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosHttpGetSipGloProV4ForService.java b/src/main/java/com/dptech/dispose/DdosHttpGetSipGloProV4ForService.java new file mode 100644 index 00000000..b8838150 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosHttpGetSipGloProV4ForService.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; + + +/** + *

DdosHttpGetSipGloProV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosHttpGetSipGloProV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosHttpGetSipGloProV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "name", + "objName", + "protectthreshold", + "type" +}) +public class DdosHttpGetSipGloProV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + @XmlElementRef(name = "type", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement type; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + + /** + * 获取type属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getType() { + return type; + } + + /** + * 设置type属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setType(JAXBElement value) { + this.type = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosHttpGetUriCusProV4ForService.java b/src/main/java/com/dptech/dispose/DdosHttpGetUriCusProV4ForService.java new file mode 100644 index 00000000..b5bbe449 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosHttpGetUriCusProV4ForService.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; + + +/** + *

DdosHttpGetUriCusProV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosHttpGetUriCusProV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="URI" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosHttpGetUriCusProV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "uri", + "action", + "name", + "objName", + "protectthreshold" +}) +public class DdosHttpGetUriCusProV4ForService { + + @XmlElementRef(name = "URI", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement uri; + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + + /** + * 获取uri属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getURI() { + return uri; + } + + /** + * 设置uri属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setURI(JAXBElement value) { + this.uri = value; + } + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DdosHttpGetUriGloProV4ForService.java b/src/main/java/com/dptech/dispose/DdosHttpGetUriGloProV4ForService.java new file mode 100644 index 00000000..d23133bd --- /dev/null +++ b/src/main/java/com/dptech/dispose/DdosHttpGetUriGloProV4ForService.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; + + +/** + *

DdosHttpGetUriGloProV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DdosHttpGetUriGloProV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DdosHttpGetUriGloProV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "name", + "objName", + "protectthreshold" +}) +public class DdosHttpGetUriGloProV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelAnomalyDetectionStrategyForUMC.java b/src/main/java/com/dptech/dispose/DelAnomalyDetectionStrategyForUMC.java new file mode 100644 index 00000000..8ed7c9ce --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelAnomalyDetectionStrategyForUMC.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="strategyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "strategyName" +}) +@XmlRootElement(name = "delAnomalyDetectionStrategyForUMC") +public class DelAnomalyDetectionStrategyForUMC { + + @XmlElement(required = true, nillable = true) + protected String strategyName; + + /** + * 获取strategyName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getStrategyName() { + return strategyName; + } + + /** + * 设置strategyName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStrategyName(String value) { + this.strategyName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelAnomalyDetectionStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/DelAnomalyDetectionStrategyForUMCResponse.java new file mode 100644 index 00000000..9d235502 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelAnomalyDetectionStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delAnomalyDetectionStrategyForUMCResponse") +public class DelAnomalyDetectionStrategyForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelBlackAndWhiteListProtection.java b/src/main/java/com/dptech/dispose/DelBlackAndWhiteListProtection.java new file mode 100644 index 00000000..16749e06 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelBlackAndWhiteListProtection.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name" +}) +@XmlRootElement(name = "delBlackAndWhiteListProtection") +public class DelBlackAndWhiteListProtection { + + @XmlElement(required = true, nillable = true) + protected String name; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelBlackAndWhiteListProtectionResponse.java b/src/main/java/com/dptech/dispose/DelBlackAndWhiteListProtectionResponse.java new file mode 100644 index 00000000..ffe6785d --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelBlackAndWhiteListProtectionResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delBlackAndWhiteListProtectionResponse") +public class DelBlackAndWhiteListProtectionResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelBlackHoleStrategyForUMC.java b/src/main/java/com/dptech/dispose/DelBlackHoleStrategyForUMC.java new file mode 100644 index 00000000..103d3977 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelBlackHoleStrategyForUMC.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "policyName" +}) +@XmlRootElement(name = "delBlackHoleStrategyForUMC") +public class DelBlackHoleStrategyForUMC { + + @XmlElement(required = true, nillable = true) + protected String policyName; + + /** + * 获取policyName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolicyName() { + return policyName; + } + + /** + * 设置policyName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolicyName(String value) { + this.policyName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelBlackHoleStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/DelBlackHoleStrategyForUMCResponse.java new file mode 100644 index 00000000..d808758c --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelBlackHoleStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delBlackHoleStrategyForUMCResponse") +public class DelBlackHoleStrategyForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelBypassManualTractionStrategyForUMC.java b/src/main/java/com/dptech/dispose/DelBypassManualTractionStrategyForUMC.java new file mode 100644 index 00000000..c2bf83d6 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelBypassManualTractionStrategyForUMC.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "policyName" +}) +@XmlRootElement(name = "delBypassManualTractionStrategyForUMC") +public class DelBypassManualTractionStrategyForUMC { + + @XmlElement(required = true, nillable = true) + protected String policyName; + + /** + * 获取policyName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolicyName() { + return policyName; + } + + /** + * 设置policyName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolicyName(String value) { + this.policyName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelBypassManualTractionStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/DelBypassManualTractionStrategyForUMCResponse.java new file mode 100644 index 00000000..215e4c40 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelBypassManualTractionStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delBypassManualTractionStrategyForUMCResponse") +public class DelBypassManualTractionStrategyForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosACProtectionForUMC.java b/src/main/java/com/dptech/dispose/DelDdosACProtectionForUMC.java new file mode 100644 index 00000000..f0c57dc8 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosACProtectionForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDdosACProtectionForUMC") +public class DelDdosACProtectionForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosACProtectionForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDdosACProtectionForUMCResponse.java new file mode 100644 index 00000000..e0a3c2e9 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosACProtectionForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDdosACProtectionForUMCResponse") +public class DelDdosACProtectionForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosCCuserGroupV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDdosCCuserGroupV4ForUMC.java new file mode 100644 index 00000000..5b24895e --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosCCuserGroupV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDdosCCuserGroupV4ForUMC") +public class DelDdosCCuserGroupV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosCCuserGroupV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDdosCCuserGroupV4ForUMCResponse.java new file mode 100644 index 00000000..d838cf60 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosCCuserGroupV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDdosCCuserGroupV4ForUMCResponse") +public class DelDdosCCuserGroupV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosDnsRetryProtectForUMC.java b/src/main/java/com/dptech/dispose/DelDdosDnsRetryProtectForUMC.java new file mode 100644 index 00000000..02b80983 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosDnsRetryProtectForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDdosDnsRetryProtectForUMC") +public class DelDdosDnsRetryProtectForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosDnsRetryProtectForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDdosDnsRetryProtectForUMCResponse.java new file mode 100644 index 00000000..a102b84b --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosDnsRetryProtectForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDdosDnsRetryProtectForUMCResponse") +public class DelDdosDnsRetryProtectForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetSipCusProV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipCusProV4ForUMC.java new file mode 100644 index 00000000..4fd29ed2 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipCusProV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDdosHttpGetSipCusProV4ForUMC") +public class DelDdosHttpGetSipCusProV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetSipCusProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipCusProV4ForUMCResponse.java new file mode 100644 index 00000000..6b5bc347 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipCusProV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDdosHttpGetSipCusProV4ForUMCResponse") +public class DelDdosHttpGetSipCusProV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetSipGloProV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipGloProV4ForUMC.java new file mode 100644 index 00000000..f6546484 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipGloProV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDdosHttpGetSipGloProV4ForUMC") +public class DelDdosHttpGetSipGloProV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetSipGloProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipGloProV4ForUMCResponse.java new file mode 100644 index 00000000..2616cf6f --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetSipGloProV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDdosHttpGetSipGloProV4ForUMCResponse") +public class DelDdosHttpGetSipGloProV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetUriCusProV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriCusProV4ForUMC.java new file mode 100644 index 00000000..a4ba4f2e --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriCusProV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDdosHttpGetUriCusProV4ForUMC") +public class DelDdosHttpGetUriCusProV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetUriCusProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriCusProV4ForUMCResponse.java new file mode 100644 index 00000000..b4367d0b --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriCusProV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDdosHttpGetUriCusProV4ForUMCResponse") +public class DelDdosHttpGetUriCusProV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetUriGloProV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriGloProV4ForUMC.java new file mode 100644 index 00000000..f109283f --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriGloProV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDdosHttpGetUriGloProV4ForUMC") +public class DelDdosHttpGetUriGloProV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDdosHttpGetUriGloProV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriGloProV4ForUMCResponse.java new file mode 100644 index 00000000..327b284b --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDdosHttpGetUriGloProV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDdosHttpGetUriGloProV4ForUMCResponse") +public class DelDdosHttpGetUriGloProV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsDomainCustomV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDnsDomainCustomV4ForUMC.java new file mode 100644 index 00000000..15eb846a --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsDomainCustomV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDnsDomainCustomV4ForUMC") +public class DelDnsDomainCustomV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsDomainCustomV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDnsDomainCustomV4ForUMCResponse.java new file mode 100644 index 00000000..c23191f9 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsDomainCustomV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDnsDomainCustomV4ForUMCResponse") +public class DelDnsDomainCustomV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsDomainGlobalV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDnsDomainGlobalV4ForUMC.java new file mode 100644 index 00000000..5d552a92 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsDomainGlobalV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDnsDomainGlobalV4ForUMC") +public class DelDnsDomainGlobalV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsDomainGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDnsDomainGlobalV4ForUMCResponse.java new file mode 100644 index 00000000..a3907371 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsDomainGlobalV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDnsDomainGlobalV4ForUMCResponse") +public class DelDnsDomainGlobalV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSecDomainCustomV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDnsSecDomainCustomV4ForUMC.java new file mode 100644 index 00000000..95a520e7 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSecDomainCustomV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDnsSecDomainCustomV4ForUMC") +public class DelDnsSecDomainCustomV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSecDomainCustomV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDnsSecDomainCustomV4ForUMCResponse.java new file mode 100644 index 00000000..accd446c --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSecDomainCustomV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDnsSecDomainCustomV4ForUMCResponse") +public class DelDnsSecDomainCustomV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSecDomainGlobalV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDnsSecDomainGlobalV4ForUMC.java new file mode 100644 index 00000000..8ce00ac9 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSecDomainGlobalV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDnsSecDomainGlobalV4ForUMC") +public class DelDnsSecDomainGlobalV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSecDomainGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDnsSecDomainGlobalV4ForUMCResponse.java new file mode 100644 index 00000000..bf560b50 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSecDomainGlobalV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDnsSecDomainGlobalV4ForUMCResponse") +public class DelDnsSecDomainGlobalV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSipCustomV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDnsSipCustomV4ForUMC.java new file mode 100644 index 00000000..61d02179 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSipCustomV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDnsSipCustomV4ForUMC") +public class DelDnsSipCustomV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSipCustomV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDnsSipCustomV4ForUMCResponse.java new file mode 100644 index 00000000..aea498a2 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSipCustomV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDnsSipCustomV4ForUMCResponse") +public class DelDnsSipCustomV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSipGlobalV4ForUMC.java b/src/main/java/com/dptech/dispose/DelDnsSipGlobalV4ForUMC.java new file mode 100644 index 00000000..a96f4541 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSipGlobalV4ForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delDnsSipGlobalV4ForUMC") +public class DelDnsSipGlobalV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelDnsSipGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/dispose/DelDnsSipGlobalV4ForUMCResponse.java new file mode 100644 index 00000000..0ee070f3 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelDnsSipGlobalV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delDnsSipGlobalV4ForUMCResponse") +public class DelDnsSipGlobalV4ForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintIcmpForUMC.java b/src/main/java/com/dptech/dispose/DelFingerprintIcmpForUMC.java new file mode 100644 index 00000000..cdce6e4b --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintIcmpForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delFingerprintIcmpForUMC") +public class DelFingerprintIcmpForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintIcmpForUMCResponse.java b/src/main/java/com/dptech/dispose/DelFingerprintIcmpForUMCResponse.java new file mode 100644 index 00000000..05e57e50 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintIcmpForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delFingerprintIcmpForUMCResponse") +public class DelFingerprintIcmpForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintOtherForUMC.java b/src/main/java/com/dptech/dispose/DelFingerprintOtherForUMC.java new file mode 100644 index 00000000..77610573 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintOtherForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delFingerprintOtherForUMC") +public class DelFingerprintOtherForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintOtherForUMCResponse.java b/src/main/java/com/dptech/dispose/DelFingerprintOtherForUMCResponse.java new file mode 100644 index 00000000..af6b1e1c --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintOtherForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delFingerprintOtherForUMCResponse") +public class DelFingerprintOtherForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintTcpForUMC.java b/src/main/java/com/dptech/dispose/DelFingerprintTcpForUMC.java new file mode 100644 index 00000000..8d0ec48b --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintTcpForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delFingerprintTcpForUMC") +public class DelFingerprintTcpForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintTcpForUMCResponse.java b/src/main/java/com/dptech/dispose/DelFingerprintTcpForUMCResponse.java new file mode 100644 index 00000000..bb04d6ad --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintTcpForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delFingerprintTcpForUMCResponse") +public class DelFingerprintTcpForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintUdpForUMC.java b/src/main/java/com/dptech/dispose/DelFingerprintUdpForUMC.java new file mode 100644 index 00000000..c3f2ac18 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintUdpForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "name", + "objName" +}) +@XmlRootElement(name = "delFingerprintUdpForUMC") +public class DelFingerprintUdpForUMC { + + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String objName; + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * 获取objName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjName() { + return objName; + } + + /** + * 设置objName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjName(String value) { + this.objName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DelFingerprintUdpForUMCResponse.java b/src/main/java/com/dptech/dispose/DelFingerprintUdpForUMCResponse.java new file mode 100644 index 00000000..7b958fc4 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DelFingerprintUdpForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "delFingerprintUdpForUMCResponse") +public class DelFingerprintUdpForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteCompleteAnomalyDetectionStrategyForUMC.java b/src/main/java/com/dptech/dispose/DeleteCompleteAnomalyDetectionStrategyForUMC.java new file mode 100644 index 00000000..b654f530 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteCompleteAnomalyDetectionStrategyForUMC.java @@ -0,0 +1,83 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="strategyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "strategyName", + "direction" +}) +@XmlRootElement(name = "deleteCompleteAnomalyDetectionStrategyForUMC") +public class DeleteCompleteAnomalyDetectionStrategyForUMC { + + @XmlElement(required = true, nillable = true) + protected String strategyName; + protected int direction; + + /** + * 获取strategyName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getStrategyName() { + return strategyName; + } + + /** + * 设置strategyName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStrategyName(String value) { + this.strategyName = value; + } + + /** + * 获取direction属性的值。 + * + */ + public int getDirection() { + return direction; + } + + /** + * 设置direction属性的值。 + * + */ + public void setDirection(int value) { + this.direction = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteCompleteAnomalyDetectionStrategyForUMCResponse.java b/src/main/java/com/dptech/dispose/DeleteCompleteAnomalyDetectionStrategyForUMCResponse.java new file mode 100644 index 00000000..1f8aa989 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteCompleteAnomalyDetectionStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "deleteCompleteAnomalyDetectionStrategyForUMCResponse") +public class DeleteCompleteAnomalyDetectionStrategyForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteDetectionObjectForUMC.java b/src/main/java/com/dptech/dispose/DeleteDetectionObjectForUMC.java new file mode 100644 index 00000000..16238e43 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteDetectionObjectForUMC.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="detectionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "detectionName" +}) +@XmlRootElement(name = "deleteDetectionObjectForUMC") +public class DeleteDetectionObjectForUMC { + + @XmlElement(required = true, nillable = true) + protected String detectionName; + + /** + * 获取detectionName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getDetectionName() { + return detectionName; + } + + /** + * 设置detectionName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDetectionName(String value) { + this.detectionName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteDetectionObjectForUMCResponse.java b/src/main/java/com/dptech/dispose/DeleteDetectionObjectForUMCResponse.java new file mode 100644 index 00000000..4878972d --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteDetectionObjectForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "deleteDetectionObjectForUMCResponse") +public class DeleteDetectionObjectForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteProtectionObjectForUMC.java b/src/main/java/com/dptech/dispose/DeleteProtectionObjectForUMC.java new file mode 100644 index 00000000..290cab8c --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteProtectionObjectForUMC.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="protectionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "protectionName" +}) +@XmlRootElement(name = "deleteProtectionObjectForUMC") +public class DeleteProtectionObjectForUMC { + + @XmlElement(required = true, nillable = true) + protected String protectionName; + + /** + * 获取protectionName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getProtectionName() { + return protectionName; + } + + /** + * 设置protectionName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProtectionName(String value) { + this.protectionName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteProtectionObjectForUMCResponse.java b/src/main/java/com/dptech/dispose/DeleteProtectionObjectForUMCResponse.java new file mode 100644 index 00000000..2f69adb7 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteProtectionObjectForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "deleteProtectionObjectForUMCResponse") +public class DeleteProtectionObjectForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteProtectionObjectIPRangeForUMC.java b/src/main/java/com/dptech/dispose/DeleteProtectionObjectIPRangeForUMC.java new file mode 100644 index 00000000..e139cdb3 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteProtectionObjectIPRangeForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="protectionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ipRangeIDs" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "protectionName", + "ipRangeIDs" +}) +@XmlRootElement(name = "deleteProtectionObjectIPRangeForUMC") +public class DeleteProtectionObjectIPRangeForUMC { + + @XmlElement(required = true, nillable = true) + protected String protectionName; + @XmlElement(required = true, nillable = true) + protected String ipRangeIDs; + + /** + * 获取protectionName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getProtectionName() { + return protectionName; + } + + /** + * 设置protectionName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProtectionName(String value) { + this.protectionName = value; + } + + /** + * 获取ipRangeIDs属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getIpRangeIDs() { + return ipRangeIDs; + } + + /** + * 设置ipRangeIDs属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIpRangeIDs(String value) { + this.ipRangeIDs = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DeleteProtectionObjectIPRangeForUMCResponse.java b/src/main/java/com/dptech/dispose/DeleteProtectionObjectIPRangeForUMCResponse.java new file mode 100644 index 00000000..fb38f92c --- /dev/null +++ b/src/main/java/com/dptech/dispose/DeleteProtectionObjectIPRangeForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "deleteProtectionObjectIPRangeForUMCResponse") +public class DeleteProtectionObjectIPRangeForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DetectionObjectDataForService.java b/src/main/java/com/dptech/dispose/DetectionObjectDataForService.java new file mode 100644 index 00000000..0dfca721 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DetectionObjectDataForService.java @@ -0,0 +1,201 @@ + +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; + + +/** + *

DetectionObjectDataForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DetectionObjectDataForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="detectionDevices" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="detectionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DetectionObjectDataForService", namespace = "http://data.ntc.dp.com", propOrder = { + "cleaningDevices", + "cleaningType", + "detectionDevices", + "detectionName", + "ipSegment", + "ipType" +}) +public class DetectionObjectDataForService { + + @XmlElementRef(name = "cleaningDevices", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement cleaningDevices; + protected Integer cleaningType; + @XmlElementRef(name = "detectionDevices", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement detectionDevices; + @XmlElementRef(name = "detectionName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement detectionName; + @XmlElementRef(name = "ipSegment", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ipSegment; + protected Integer ipType; + + /** + * 获取cleaningDevices属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCleaningDevices() { + return cleaningDevices; + } + + /** + * 设置cleaningDevices属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCleaningDevices(JAXBElement value) { + this.cleaningDevices = value; + } + + /** + * 获取cleaningType属性的值。 + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCleaningType() { + return cleaningType; + } + + /** + * 设置cleaningType属性的值。 + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCleaningType(Integer value) { + this.cleaningType = value; + } + + /** + * 获取detectionDevices属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getDetectionDevices() { + return detectionDevices; + } + + /** + * 设置detectionDevices属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setDetectionDevices(JAXBElement value) { + this.detectionDevices = value; + } + + /** + * 获取detectionName属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getDetectionName() { + return detectionName; + } + + /** + * 设置detectionName属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setDetectionName(JAXBElement value) { + this.detectionName = value; + } + + /** + * 获取ipSegment属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIpSegment() { + return ipSegment; + } + + /** + * 设置ipSegment属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIpSegment(JAXBElement value) { + this.ipSegment = value; + } + + /** + * 获取ipType属性的值。 + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getIpType() { + return ipType; + } + + /** + * 设置ipType属性的值。 + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setIpType(Integer value) { + this.ipType = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DisableProtectionStrategyTemplateForUMC.java b/src/main/java/com/dptech/dispose/DisableProtectionStrategyTemplateForUMC.java new file mode 100644 index 00000000..dd8f60f1 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DisableProtectionStrategyTemplateForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="protectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="templateName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "protectName", + "templateName" +}) +@XmlRootElement(name = "disableProtectionStrategyTemplateForUMC") +public class DisableProtectionStrategyTemplateForUMC { + + @XmlElement(required = true, nillable = true) + protected String protectName; + @XmlElement(required = true, nillable = true) + protected String templateName; + + /** + * 获取protectName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getProtectName() { + return protectName; + } + + /** + * 设置protectName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProtectName(String value) { + this.protectName = value; + } + + /** + * 获取templateName属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getTemplateName() { + return templateName; + } + + /** + * 设置templateName属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTemplateName(String value) { + this.templateName = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DisableProtectionStrategyTemplateForUMCResponse.java b/src/main/java/com/dptech/dispose/DisableProtectionStrategyTemplateForUMCResponse.java new file mode 100644 index 00000000..21293489 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DisableProtectionStrategyTemplateForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.dispose; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "disableProtectionStrategyTemplateForUMCResponse") +public class DisableProtectionStrategyTemplateForUMCResponse { + + @XmlElement(required = true, nillable = true) + protected NtcRequestResultInfo out; + + /** + * 获取out属性的值。 + * + * @return + * possible object is + * {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo getOut() { + return out; + } + + /** + * 设置out属性的值。 + * + * @param value + * allowed object is + * {@link NtcRequestResultInfo } + * + */ + public void setOut(NtcRequestResultInfo value) { + this.out = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DnsDomainCustomV4ForService.java b/src/main/java/com/dptech/dispose/DnsDomainCustomV4ForService.java new file mode 100644 index 00000000..6dd5c1f9 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DnsDomainCustomV4ForService.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; + + +/** + *

DnsDomainCustomV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DnsDomainCustomV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DnsDomainCustomV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "domain", + "name", + "objName", + "protectthreshold" +}) +public class DnsDomainCustomV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "domain", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement domain; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取domain属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getDomain() { + return domain; + } + + /** + * 设置domain属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setDomain(JAXBElement value) { + this.domain = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DnsDomainGlobalV4ForService.java b/src/main/java/com/dptech/dispose/DnsDomainGlobalV4ForService.java new file mode 100644 index 00000000..9c3042a3 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DnsDomainGlobalV4ForService.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; + + +/** + *

DnsDomainGlobalV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DnsDomainGlobalV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DnsDomainGlobalV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "name", + "objName", + "protectthreshold" +}) +public class DnsDomainGlobalV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DnsSecDomainCustomV4ForService.java b/src/main/java/com/dptech/dispose/DnsSecDomainCustomV4ForService.java new file mode 100644 index 00000000..036c243c --- /dev/null +++ b/src/main/java/com/dptech/dispose/DnsSecDomainCustomV4ForService.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; + + +/** + *

DnsSecDomainCustomV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DnsSecDomainCustomV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DnsSecDomainCustomV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "domain", + "name", + "objName", + "protectthreshold" +}) +public class DnsSecDomainCustomV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "domain", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement domain; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取domain属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getDomain() { + return domain; + } + + /** + * 设置domain属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setDomain(JAXBElement value) { + this.domain = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DnsSecDomainGlobalV4ForService.java b/src/main/java/com/dptech/dispose/DnsSecDomainGlobalV4ForService.java new file mode 100644 index 00000000..9fa56483 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DnsSecDomainGlobalV4ForService.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; + + +/** + *

DnsSecDomainGlobalV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DnsSecDomainGlobalV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DnsSecDomainGlobalV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "name", + "objName", + "protectthreshold" +}) +public class DnsSecDomainGlobalV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DnsSipCustomV4ForService.java b/src/main/java/com/dptech/dispose/DnsSipCustomV4ForService.java new file mode 100644 index 00000000..b66c9b93 --- /dev/null +++ b/src/main/java/com/dptech/dispose/DnsSipCustomV4ForService.java @@ -0,0 +1,203 @@ + +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; + + +/** + *

DnsSipCustomV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DnsSipCustomV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sipend" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sipstart" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DnsSipCustomV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "name", + "objName", + "protectthreshold", + "sipend", + "sipstart" +}) +public class DnsSipCustomV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + @XmlElementRef(name = "sipend", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement sipend; + @XmlElementRef(name = "sipstart", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement sipstart; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + + /** + * 获取sipend属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSipend() { + return sipend; + } + + /** + * 设置sipend属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSipend(JAXBElement value) { + this.sipend = value; + } + + /** + * 获取sipstart属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getSipstart() { + return sipstart; + } + + /** + * 设置sipstart属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setSipstart(JAXBElement value) { + this.sipstart = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/DnsSipGlobalV4ForService.java b/src/main/java/com/dptech/dispose/DnsSipGlobalV4ForService.java new file mode 100644 index 00000000..19334f4e --- /dev/null +++ b/src/main/java/com/dptech/dispose/DnsSipGlobalV4ForService.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; + + +/** + *

DnsSipGlobalV4ForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="DnsSipGlobalV4ForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DnsSipGlobalV4ForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "name", + "objName", + "protectthreshold" +}) +public class DnsSipGlobalV4ForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "protectthreshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectthreshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取protectthreshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectthreshold() { + return protectthreshold; + } + + /** + * 设置protectthreshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectthreshold(JAXBElement value) { + this.protectthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/FingerprintIcmpForService.java b/src/main/java/com/dptech/dispose/FingerprintIcmpForService.java new file mode 100644 index 00000000..820b2546 --- /dev/null +++ b/src/main/java/com/dptech/dispose/FingerprintIcmpForService.java @@ -0,0 +1,735 @@ + +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; + + +/** + *

FingerprintIcmpForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="FingerprintIcmpForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FingerprintIcmpForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "custom1", + "custom2", + "custom3", + "enable1", + "enable2", + "enable3", + "ip1", + "ip2", + "ip3", + "keylength1", + "keylength2", + "keylength3", + "keyoffset1", + "keyoffset2", + "keyoffset3", + "keytype1", + "keytype2", + "keytype3", + "mask1", + "mask2", + "mask3", + "name", + "objName", + "threshold" +}) +public class FingerprintIcmpForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "custom1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom1; + @XmlElementRef(name = "custom2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom2; + @XmlElementRef(name = "custom3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom3; + @XmlElementRef(name = "enable1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable1; + @XmlElementRef(name = "enable2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable2; + @XmlElementRef(name = "enable3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable3; + @XmlElementRef(name = "ip1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip1; + @XmlElementRef(name = "ip2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip2; + @XmlElementRef(name = "ip3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip3; + @XmlElementRef(name = "keylength1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength1; + @XmlElementRef(name = "keylength2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength2; + @XmlElementRef(name = "keylength3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength3; + @XmlElementRef(name = "keyoffset1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset1; + @XmlElementRef(name = "keyoffset2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset2; + @XmlElementRef(name = "keyoffset3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset3; + @XmlElementRef(name = "keytype1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype1; + @XmlElementRef(name = "keytype2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype2; + @XmlElementRef(name = "keytype3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype3; + @XmlElementRef(name = "mask1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask1; + @XmlElementRef(name = "mask2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask2; + @XmlElementRef(name = "mask3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask3; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement threshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取custom1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom1() { + return custom1; + } + + /** + * 设置custom1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom1(JAXBElement value) { + this.custom1 = value; + } + + /** + * 获取custom2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom2() { + return custom2; + } + + /** + * 设置custom2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom2(JAXBElement value) { + this.custom2 = value; + } + + /** + * 获取custom3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom3() { + return custom3; + } + + /** + * 设置custom3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom3(JAXBElement value) { + this.custom3 = value; + } + + /** + * 获取enable1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable1() { + return enable1; + } + + /** + * 设置enable1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable1(JAXBElement value) { + this.enable1 = value; + } + + /** + * 获取enable2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable2() { + return enable2; + } + + /** + * 设置enable2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable2(JAXBElement value) { + this.enable2 = value; + } + + /** + * 获取enable3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable3() { + return enable3; + } + + /** + * 设置enable3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable3(JAXBElement value) { + this.enable3 = value; + } + + /** + * 获取ip1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp1() { + return ip1; + } + + /** + * 设置ip1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp1(JAXBElement value) { + this.ip1 = value; + } + + /** + * 获取ip2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp2() { + return ip2; + } + + /** + * 设置ip2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp2(JAXBElement value) { + this.ip2 = value; + } + + /** + * 获取ip3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp3() { + return ip3; + } + + /** + * 设置ip3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp3(JAXBElement value) { + this.ip3 = value; + } + + /** + * 获取keylength1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength1() { + return keylength1; + } + + /** + * 设置keylength1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength1(JAXBElement value) { + this.keylength1 = value; + } + + /** + * 获取keylength2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength2() { + return keylength2; + } + + /** + * 设置keylength2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength2(JAXBElement value) { + this.keylength2 = value; + } + + /** + * 获取keylength3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength3() { + return keylength3; + } + + /** + * 设置keylength3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength3(JAXBElement value) { + this.keylength3 = value; + } + + /** + * 获取keyoffset1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset1() { + return keyoffset1; + } + + /** + * 设置keyoffset1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset1(JAXBElement value) { + this.keyoffset1 = value; + } + + /** + * 获取keyoffset2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset2() { + return keyoffset2; + } + + /** + * 设置keyoffset2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset2(JAXBElement value) { + this.keyoffset2 = value; + } + + /** + * 获取keyoffset3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset3() { + return keyoffset3; + } + + /** + * 设置keyoffset3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset3(JAXBElement value) { + this.keyoffset3 = value; + } + + /** + * 获取keytype1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype1() { + return keytype1; + } + + /** + * 设置keytype1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype1(JAXBElement value) { + this.keytype1 = value; + } + + /** + * 获取keytype2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype2() { + return keytype2; + } + + /** + * 设置keytype2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype2(JAXBElement value) { + this.keytype2 = value; + } + + /** + * 获取keytype3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype3() { + return keytype3; + } + + /** + * 设置keytype3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype3(JAXBElement value) { + this.keytype3 = value; + } + + /** + * 获取mask1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask1() { + return mask1; + } + + /** + * 设置mask1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask1(JAXBElement value) { + this.mask1 = value; + } + + /** + * 获取mask2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask2() { + return mask2; + } + + /** + * 设置mask2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask2(JAXBElement value) { + this.mask2 = value; + } + + /** + * 获取mask3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask3() { + return mask3; + } + + /** + * 设置mask3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask3(JAXBElement value) { + this.mask3 = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取threshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getThreshold() { + return threshold; + } + + /** + * 设置threshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setThreshold(JAXBElement value) { + this.threshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/FingerprintOtherForService.java b/src/main/java/com/dptech/dispose/FingerprintOtherForService.java new file mode 100644 index 00000000..d85d9ccd --- /dev/null +++ b/src/main/java/com/dptech/dispose/FingerprintOtherForService.java @@ -0,0 +1,735 @@ + +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; + + +/** + *

FingerprintOtherForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="FingerprintOtherForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FingerprintOtherForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "custom1", + "custom2", + "custom3", + "enable1", + "enable2", + "enable3", + "ip1", + "ip2", + "ip3", + "keylength1", + "keylength2", + "keylength3", + "keyoffset1", + "keyoffset2", + "keyoffset3", + "keytype1", + "keytype2", + "keytype3", + "mask1", + "mask2", + "mask3", + "name", + "objName", + "threshold" +}) +public class FingerprintOtherForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "custom1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom1; + @XmlElementRef(name = "custom2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom2; + @XmlElementRef(name = "custom3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom3; + @XmlElementRef(name = "enable1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable1; + @XmlElementRef(name = "enable2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable2; + @XmlElementRef(name = "enable3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable3; + @XmlElementRef(name = "ip1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip1; + @XmlElementRef(name = "ip2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip2; + @XmlElementRef(name = "ip3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip3; + @XmlElementRef(name = "keylength1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength1; + @XmlElementRef(name = "keylength2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength2; + @XmlElementRef(name = "keylength3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength3; + @XmlElementRef(name = "keyoffset1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset1; + @XmlElementRef(name = "keyoffset2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset2; + @XmlElementRef(name = "keyoffset3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset3; + @XmlElementRef(name = "keytype1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype1; + @XmlElementRef(name = "keytype2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype2; + @XmlElementRef(name = "keytype3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype3; + @XmlElementRef(name = "mask1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask1; + @XmlElementRef(name = "mask2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask2; + @XmlElementRef(name = "mask3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask3; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement threshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取custom1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom1() { + return custom1; + } + + /** + * 设置custom1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom1(JAXBElement value) { + this.custom1 = value; + } + + /** + * 获取custom2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom2() { + return custom2; + } + + /** + * 设置custom2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom2(JAXBElement value) { + this.custom2 = value; + } + + /** + * 获取custom3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom3() { + return custom3; + } + + /** + * 设置custom3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom3(JAXBElement value) { + this.custom3 = value; + } + + /** + * 获取enable1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable1() { + return enable1; + } + + /** + * 设置enable1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable1(JAXBElement value) { + this.enable1 = value; + } + + /** + * 获取enable2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable2() { + return enable2; + } + + /** + * 设置enable2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable2(JAXBElement value) { + this.enable2 = value; + } + + /** + * 获取enable3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable3() { + return enable3; + } + + /** + * 设置enable3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable3(JAXBElement value) { + this.enable3 = value; + } + + /** + * 获取ip1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp1() { + return ip1; + } + + /** + * 设置ip1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp1(JAXBElement value) { + this.ip1 = value; + } + + /** + * 获取ip2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp2() { + return ip2; + } + + /** + * 设置ip2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp2(JAXBElement value) { + this.ip2 = value; + } + + /** + * 获取ip3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp3() { + return ip3; + } + + /** + * 设置ip3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp3(JAXBElement value) { + this.ip3 = value; + } + + /** + * 获取keylength1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength1() { + return keylength1; + } + + /** + * 设置keylength1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength1(JAXBElement value) { + this.keylength1 = value; + } + + /** + * 获取keylength2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength2() { + return keylength2; + } + + /** + * 设置keylength2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength2(JAXBElement value) { + this.keylength2 = value; + } + + /** + * 获取keylength3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength3() { + return keylength3; + } + + /** + * 设置keylength3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength3(JAXBElement value) { + this.keylength3 = value; + } + + /** + * 获取keyoffset1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset1() { + return keyoffset1; + } + + /** + * 设置keyoffset1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset1(JAXBElement value) { + this.keyoffset1 = value; + } + + /** + * 获取keyoffset2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset2() { + return keyoffset2; + } + + /** + * 设置keyoffset2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset2(JAXBElement value) { + this.keyoffset2 = value; + } + + /** + * 获取keyoffset3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset3() { + return keyoffset3; + } + + /** + * 设置keyoffset3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset3(JAXBElement value) { + this.keyoffset3 = value; + } + + /** + * 获取keytype1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype1() { + return keytype1; + } + + /** + * 设置keytype1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype1(JAXBElement value) { + this.keytype1 = value; + } + + /** + * 获取keytype2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype2() { + return keytype2; + } + + /** + * 设置keytype2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype2(JAXBElement value) { + this.keytype2 = value; + } + + /** + * 获取keytype3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype3() { + return keytype3; + } + + /** + * 设置keytype3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype3(JAXBElement value) { + this.keytype3 = value; + } + + /** + * 获取mask1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask1() { + return mask1; + } + + /** + * 设置mask1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask1(JAXBElement value) { + this.mask1 = value; + } + + /** + * 获取mask2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask2() { + return mask2; + } + + /** + * 设置mask2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask2(JAXBElement value) { + this.mask2 = value; + } + + /** + * 获取mask3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask3() { + return mask3; + } + + /** + * 设置mask3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask3(JAXBElement value) { + this.mask3 = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取threshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getThreshold() { + return threshold; + } + + /** + * 设置threshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setThreshold(JAXBElement value) { + this.threshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/FingerprintTcpForService.java b/src/main/java/com/dptech/dispose/FingerprintTcpForService.java new file mode 100644 index 00000000..5549c934 --- /dev/null +++ b/src/main/java/com/dptech/dispose/FingerprintTcpForService.java @@ -0,0 +1,903 @@ + +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; + + +/** + *

FingerprintTcpForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="FingerprintTcpForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="flag1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="flag2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="flag3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="port1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="port2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="port3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FingerprintTcpForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "custom1", + "custom2", + "custom3", + "enable1", + "enable2", + "enable3", + "flag1", + "flag2", + "flag3", + "ip1", + "ip2", + "ip3", + "keylength1", + "keylength2", + "keylength3", + "keyoffset1", + "keyoffset2", + "keyoffset3", + "keytype1", + "keytype2", + "keytype3", + "mask1", + "mask2", + "mask3", + "name", + "objName", + "port1", + "port2", + "port3", + "threshold" +}) +public class FingerprintTcpForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "custom1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom1; + @XmlElementRef(name = "custom2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom2; + @XmlElementRef(name = "custom3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom3; + @XmlElementRef(name = "enable1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable1; + @XmlElementRef(name = "enable2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable2; + @XmlElementRef(name = "enable3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable3; + @XmlElementRef(name = "flag1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement flag1; + @XmlElementRef(name = "flag2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement flag2; + @XmlElementRef(name = "flag3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement flag3; + @XmlElementRef(name = "ip1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip1; + @XmlElementRef(name = "ip2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip2; + @XmlElementRef(name = "ip3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip3; + @XmlElementRef(name = "keylength1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength1; + @XmlElementRef(name = "keylength2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength2; + @XmlElementRef(name = "keylength3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength3; + @XmlElementRef(name = "keyoffset1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset1; + @XmlElementRef(name = "keyoffset2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset2; + @XmlElementRef(name = "keyoffset3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset3; + @XmlElementRef(name = "keytype1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype1; + @XmlElementRef(name = "keytype2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype2; + @XmlElementRef(name = "keytype3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype3; + @XmlElementRef(name = "mask1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask1; + @XmlElementRef(name = "mask2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask2; + @XmlElementRef(name = "mask3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask3; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "port1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement port1; + @XmlElementRef(name = "port2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement port2; + @XmlElementRef(name = "port3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement port3; + @XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement threshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取custom1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom1() { + return custom1; + } + + /** + * 设置custom1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom1(JAXBElement value) { + this.custom1 = value; + } + + /** + * 获取custom2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom2() { + return custom2; + } + + /** + * 设置custom2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom2(JAXBElement value) { + this.custom2 = value; + } + + /** + * 获取custom3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom3() { + return custom3; + } + + /** + * 设置custom3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom3(JAXBElement value) { + this.custom3 = value; + } + + /** + * 获取enable1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable1() { + return enable1; + } + + /** + * 设置enable1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable1(JAXBElement value) { + this.enable1 = value; + } + + /** + * 获取enable2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable2() { + return enable2; + } + + /** + * 设置enable2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable2(JAXBElement value) { + this.enable2 = value; + } + + /** + * 获取enable3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable3() { + return enable3; + } + + /** + * 设置enable3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable3(JAXBElement value) { + this.enable3 = value; + } + + /** + * 获取flag1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getFlag1() { + return flag1; + } + + /** + * 设置flag1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setFlag1(JAXBElement value) { + this.flag1 = value; + } + + /** + * 获取flag2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getFlag2() { + return flag2; + } + + /** + * 设置flag2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setFlag2(JAXBElement value) { + this.flag2 = value; + } + + /** + * 获取flag3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getFlag3() { + return flag3; + } + + /** + * 设置flag3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setFlag3(JAXBElement value) { + this.flag3 = value; + } + + /** + * 获取ip1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp1() { + return ip1; + } + + /** + * 设置ip1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp1(JAXBElement value) { + this.ip1 = value; + } + + /** + * 获取ip2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp2() { + return ip2; + } + + /** + * 设置ip2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp2(JAXBElement value) { + this.ip2 = value; + } + + /** + * 获取ip3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp3() { + return ip3; + } + + /** + * 设置ip3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp3(JAXBElement value) { + this.ip3 = value; + } + + /** + * 获取keylength1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength1() { + return keylength1; + } + + /** + * 设置keylength1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength1(JAXBElement value) { + this.keylength1 = value; + } + + /** + * 获取keylength2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength2() { + return keylength2; + } + + /** + * 设置keylength2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength2(JAXBElement value) { + this.keylength2 = value; + } + + /** + * 获取keylength3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength3() { + return keylength3; + } + + /** + * 设置keylength3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength3(JAXBElement value) { + this.keylength3 = value; + } + + /** + * 获取keyoffset1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset1() { + return keyoffset1; + } + + /** + * 设置keyoffset1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset1(JAXBElement value) { + this.keyoffset1 = value; + } + + /** + * 获取keyoffset2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset2() { + return keyoffset2; + } + + /** + * 设置keyoffset2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset2(JAXBElement value) { + this.keyoffset2 = value; + } + + /** + * 获取keyoffset3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset3() { + return keyoffset3; + } + + /** + * 设置keyoffset3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset3(JAXBElement value) { + this.keyoffset3 = value; + } + + /** + * 获取keytype1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype1() { + return keytype1; + } + + /** + * 设置keytype1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype1(JAXBElement value) { + this.keytype1 = value; + } + + /** + * 获取keytype2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype2() { + return keytype2; + } + + /** + * 设置keytype2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype2(JAXBElement value) { + this.keytype2 = value; + } + + /** + * 获取keytype3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype3() { + return keytype3; + } + + /** + * 设置keytype3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype3(JAXBElement value) { + this.keytype3 = value; + } + + /** + * 获取mask1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask1() { + return mask1; + } + + /** + * 设置mask1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask1(JAXBElement value) { + this.mask1 = value; + } + + /** + * 获取mask2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask2() { + return mask2; + } + + /** + * 设置mask2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask2(JAXBElement value) { + this.mask2 = value; + } + + /** + * 获取mask3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask3() { + return mask3; + } + + /** + * 设置mask3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask3(JAXBElement value) { + this.mask3 = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取port1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getPort1() { + return port1; + } + + /** + * 设置port1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setPort1(JAXBElement value) { + this.port1 = value; + } + + /** + * 获取port2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getPort2() { + return port2; + } + + /** + * 设置port2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setPort2(JAXBElement value) { + this.port2 = value; + } + + /** + * 获取port3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getPort3() { + return port3; + } + + /** + * 设置port3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setPort3(JAXBElement value) { + this.port3 = value; + } + + /** + * 获取threshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getThreshold() { + return threshold; + } + + /** + * 设置threshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setThreshold(JAXBElement value) { + this.threshold = value; + } + +} diff --git a/src/main/java/com/dptech/dispose/FingerprintUdpForService.java b/src/main/java/com/dptech/dispose/FingerprintUdpForService.java new file mode 100644 index 00000000..9f9ebf2e --- /dev/null +++ b/src/main/java/com/dptech/dispose/FingerprintUdpForService.java @@ -0,0 +1,819 @@ + +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; + + +/** + *

FingerprintUdpForService complex type的 Java 类。 + * + *

以下模式片段指定包含在此类中的预期内容。 + * + *

+ * <complexType name="FingerprintUdpForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="port1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="port2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="port3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FingerprintUdpForService", namespace = "http://data.ntc.dp.com", propOrder = { + "action", + "custom1", + "custom2", + "custom3", + "enable1", + "enable2", + "enable3", + "ip1", + "ip2", + "ip3", + "keylength1", + "keylength2", + "keylength3", + "keyoffset1", + "keyoffset2", + "keyoffset3", + "keytype1", + "keytype2", + "keytype3", + "mask1", + "mask2", + "mask3", + "name", + "objName", + "port1", + "port2", + "port3", + "threshold" +}) +public class FingerprintUdpForService { + + @XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement action; + @XmlElementRef(name = "custom1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom1; + @XmlElementRef(name = "custom2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom2; + @XmlElementRef(name = "custom3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement custom3; + @XmlElementRef(name = "enable1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable1; + @XmlElementRef(name = "enable2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable2; + @XmlElementRef(name = "enable3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement enable3; + @XmlElementRef(name = "ip1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip1; + @XmlElementRef(name = "ip2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip2; + @XmlElementRef(name = "ip3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ip3; + @XmlElementRef(name = "keylength1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength1; + @XmlElementRef(name = "keylength2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength2; + @XmlElementRef(name = "keylength3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keylength3; + @XmlElementRef(name = "keyoffset1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset1; + @XmlElementRef(name = "keyoffset2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset2; + @XmlElementRef(name = "keyoffset3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keyoffset3; + @XmlElementRef(name = "keytype1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype1; + @XmlElementRef(name = "keytype2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype2; + @XmlElementRef(name = "keytype3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement keytype3; + @XmlElementRef(name = "mask1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask1; + @XmlElementRef(name = "mask2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask2; + @XmlElementRef(name = "mask3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement mask3; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + @XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement objName; + @XmlElementRef(name = "port1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement port1; + @XmlElementRef(name = "port2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement port2; + @XmlElementRef(name = "port3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement port3; + @XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement threshold; + + /** + * 获取action属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getAction() { + return action; + } + + /** + * 设置action属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setAction(JAXBElement value) { + this.action = value; + } + + /** + * 获取custom1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom1() { + return custom1; + } + + /** + * 设置custom1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom1(JAXBElement value) { + this.custom1 = value; + } + + /** + * 获取custom2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom2() { + return custom2; + } + + /** + * 设置custom2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom2(JAXBElement value) { + this.custom2 = value; + } + + /** + * 获取custom3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getCustom3() { + return custom3; + } + + /** + * 设置custom3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setCustom3(JAXBElement value) { + this.custom3 = value; + } + + /** + * 获取enable1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable1() { + return enable1; + } + + /** + * 设置enable1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable1(JAXBElement value) { + this.enable1 = value; + } + + /** + * 获取enable2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable2() { + return enable2; + } + + /** + * 设置enable2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable2(JAXBElement value) { + this.enable2 = value; + } + + /** + * 获取enable3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getEnable3() { + return enable3; + } + + /** + * 设置enable3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setEnable3(JAXBElement value) { + this.enable3 = value; + } + + /** + * 获取ip1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp1() { + return ip1; + } + + /** + * 设置ip1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp1(JAXBElement value) { + this.ip1 = value; + } + + /** + * 获取ip2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp2() { + return ip2; + } + + /** + * 设置ip2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp2(JAXBElement value) { + this.ip2 = value; + } + + /** + * 获取ip3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getIp3() { + return ip3; + } + + /** + * 设置ip3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setIp3(JAXBElement value) { + this.ip3 = value; + } + + /** + * 获取keylength1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength1() { + return keylength1; + } + + /** + * 设置keylength1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength1(JAXBElement value) { + this.keylength1 = value; + } + + /** + * 获取keylength2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength2() { + return keylength2; + } + + /** + * 设置keylength2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength2(JAXBElement value) { + this.keylength2 = value; + } + + /** + * 获取keylength3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeylength3() { + return keylength3; + } + + /** + * 设置keylength3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeylength3(JAXBElement value) { + this.keylength3 = value; + } + + /** + * 获取keyoffset1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset1() { + return keyoffset1; + } + + /** + * 设置keyoffset1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset1(JAXBElement value) { + this.keyoffset1 = value; + } + + /** + * 获取keyoffset2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset2() { + return keyoffset2; + } + + /** + * 设置keyoffset2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset2(JAXBElement value) { + this.keyoffset2 = value; + } + + /** + * 获取keyoffset3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeyoffset3() { + return keyoffset3; + } + + /** + * 设置keyoffset3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeyoffset3(JAXBElement value) { + this.keyoffset3 = value; + } + + /** + * 获取keytype1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype1() { + return keytype1; + } + + /** + * 设置keytype1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype1(JAXBElement value) { + this.keytype1 = value; + } + + /** + * 获取keytype2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype2() { + return keytype2; + } + + /** + * 设置keytype2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype2(JAXBElement value) { + this.keytype2 = value; + } + + /** + * 获取keytype3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getKeytype3() { + return keytype3; + } + + /** + * 设置keytype3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setKeytype3(JAXBElement value) { + this.keytype3 = value; + } + + /** + * 获取mask1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask1() { + return mask1; + } + + /** + * 设置mask1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask1(JAXBElement value) { + this.mask1 = value; + } + + /** + * 获取mask2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask2() { + return mask2; + } + + /** + * 设置mask2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask2(JAXBElement value) { + this.mask2 = value; + } + + /** + * 获取mask3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getMask3() { + return mask3; + } + + /** + * 设置mask3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setMask3(JAXBElement value) { + this.mask3 = value; + } + + /** + * 获取name属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getName() { + return name; + } + + /** + * 设置name属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setName(JAXBElement value) { + this.name = 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; + } + + /** + * 获取port1属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getPort1() { + return port1; + } + + /** + * 设置port1属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setPort1(JAXBElement value) { + this.port1 = value; + } + + /** + * 获取port2属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getPort2() { + return port2; + } + + /** + * 设置port2属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setPort2(JAXBElement value) { + this.port2 = value; + } + + /** + * 获取port3属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getPort3() { + return port3; + } + + /** + * 设置port3属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setPort3(JAXBElement value) { + this.port3 = value; + } + + /** + * 获取threshold属性的值。 + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getThreshold() { + return threshold; + } + + /** + * 设置threshold属性的值。 + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setThreshold(JAXBElement value) { + this.threshold = value; + } + +} diff --git a/src/main/java/com/dptech/umc/AbnormalFlowCleaningServiceHttpPortImpl.java b/src/main/java/com/dptech/umc/AbnormalFlowCleaningServiceHttpPortImpl.java deleted file mode 100644 index a4699d82..00000000 --- a/src/main/java/com/dptech/umc/AbnormalFlowCleaningServiceHttpPortImpl.java +++ /dev/null @@ -1,2638 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package com.dptech.umc; - -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-07T14:05:09.024+08:00 - * Generated source version: 3.3.6 - * - */ - -@javax.jws.WebService( - serviceName = "AbnormalFlowCleaningService", - portName = "AbnormalFlowCleaningServiceHttpPort", - targetNamespace = "http://service.ntc.dp.com", - wsdlLocation = "./wsdl/AbnormalFlowCleaningService.wsdl", - endpointInterface = "com.dptech.umc.AbnormalFlowCleaningServicePortType") - -public class AbnormalFlowCleaningServiceHttpPortImpl implements AbnormalFlowCleaningServicePortType { - - private static final Logger LOG = Logger.getLogger(AbnormalFlowCleaningServiceHttpPortImpl.class.getName()); - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDnsSipCustomV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDnsSipCustomV4ForService getDnsSipCustomV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDnsSipCustomV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDnsSipCustomV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalIcmpPayloadFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalIcmpPayloadForService getDdosGlobalIcmpPayloadFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalIcmpPayloadFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalIcmpPayloadForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#stopAbnormalTaskWithSpecificDeviceForUMC(java.lang.String abnormalIp, int attackType, int direction, java.lang.String cleanDeviceIps)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addDnsSecDomainGlobalV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllCompleteAnomalyDetectionStrategyFromUMC()* - */ - public com.dptech.umc.ArrayOfAnomalyDetectionStrategy getAllCompleteAnomalyDetectionStrategyFromUMC() { - LOG.info("Executing operation getAllCompleteAnomalyDetectionStrategyFromUMC"); - try { - com.dptech.umc.ArrayOfAnomalyDetectionStrategy _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.AbnormalFlowCleaningServicePortType#startBlackHoleStrategyForUMC(java.lang.String policyName)* - */ - public com.dptech.umc.NtcRequestResultInfo startBlackHoleStrategyForUMC(java.lang.String policyName) { - LOG.info("Executing operation startBlackHoleStrategyForUMC"); - System.out.println(policyName); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosHttpGetSipCusProV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDdosHttpGetSipCusProV4ForService getDdosHttpGetSipCusProV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosHttpGetSipCusProV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDdosHttpGetSipCusProV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosDnsRetryProtectFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDdosDnsRetryProtectForService getDdosDnsRetryProtectFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosDnsRetryProtectFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDdosDnsRetryProtectForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpLengthFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalTcpLengthForService getDdosGlobalTcpLengthFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalTcpLengthFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalTcpLengthForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosHttpGetSipGloProV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDdosHttpGetSipGloProV4ForService getDdosHttpGetSipGloProV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosHttpGetSipGloProV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDdosHttpGetSipGloProV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllBlackAndWhiteListFromUMC()* - */ - public com.dptech.umc.ArrayOfBlackAndWhiteListDataForService getAllBlackAndWhiteListFromUMC() { - LOG.info("Executing operation getAllBlackAndWhiteListFromUMC"); - try { - com.dptech.umc.ArrayOfBlackAndWhiteListDataForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalUdpPayloadFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalUdpPayloadForService getDdosGlobalUdpPayloadFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalUdpPayloadFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalUdpPayloadForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDdosDnsRetryProtectForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllBypassManualTractionStrategyFromUMC()* - */ - public com.dptech.umc.ArrayOfBypassManualTractionStrategyForService getAllBypassManualTractionStrategyFromUMC() { - LOG.info("Executing operation getAllBypassManualTractionStrategyFromUMC"); - try { - com.dptech.umc.ArrayOfBypassManualTractionStrategyForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#disableProtectionStrategyTemplateForUMC(java.lang.String protectName, java.lang.String templateName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delFingerprintIcmpForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modDnsDomainGlobalV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#startAbnormalTaskWithSpecificDeviceForUMC(java.lang.String abnormalIp, int attackType, int direction, java.lang.String cleanDeviceIps)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosCCuserGroupV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDdosCCuserGroupV4ForService getDdosCCuserGroupV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosCCuserGroupV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDdosCCuserGroupV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getFingerprintIcmpFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfFingerprintIcmpForService getFingerprintIcmpFromUMC(java.lang.String objName) { - LOG.info("Executing operation getFingerprintIcmpFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfFingerprintIcmpForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delFingerprintTcpForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDnsSecDomainGlobalV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDdosHttpGetUriCusProV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllProtectionStrategyTemplateFromUMC()* - */ - public com.dptech.umc.ArrayOfProtectionStrategyTemplateForService getAllProtectionStrategyTemplateFromUMC() { - LOG.info("Executing operation getAllProtectionStrategyTemplateFromUMC"); - try { - com.dptech.umc.ArrayOfProtectionStrategyTemplateForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modifyDetectionObjectForUMC(java.lang.String detectionName, java.lang.String ipSegment, int ipType, int cleaningType)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#deleteProtectionObjectIPRangeForUMC(java.lang.String protectionName, java.lang.String ipRangeIDs)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modBlackHoleAutoStrategyForUMC(java.lang.String policyName, int detectMode, int blackHoleThreshold, int blackHoleTime)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modDdosCCuserGroupV4ForUMC(java.lang.String objName, java.lang.String name)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalIcmpFragFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalIcmpFragForService getDdosGlobalIcmpFragFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalIcmpFragFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalIcmpFragForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modBlackHoleManualStrategyForUMC(java.lang.String policyName, java.lang.String ipAddress)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllBlackHoleManualStrategyFromUMC()* - */ - public com.dptech.umc.ArrayOfBlackHoleManualStrategyForService getAllBlackHoleManualStrategyFromUMC() { - LOG.info("Executing operation getAllBlackHoleManualStrategyFromUMC"); - try { - com.dptech.umc.ArrayOfBlackHoleManualStrategyForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modDnsSipGlobalV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addDdosHttpGetUriGloProV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addBlackHoleManualStrategyForUMC(java.lang.String policyName, java.lang.String detectName, java.lang.String ipAddress)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalUdpLengthForUMC(java.lang.String objName, java.lang.String lengthenable, java.lang.String minlength, java.lang.String maxlength)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addOneKeyRestore(java.lang.String protectIp, java.lang.String attackType, java.lang.String direction)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#geDnsDomainCustomV4TFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDnsDomainCustomV4ForService geDnsDomainCustomV4TFromUMC(java.lang.String objName) { - LOG.info("Executing operation geDnsDomainCustomV4TFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDnsDomainCustomV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDnsSipCustomV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalTcpFragForUMC(java.lang.String objName, java.lang.String tcpenable, java.lang.String tcpthreshold)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpStateFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalTcpStateForService getDdosGlobalTcpStateFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalTcpStateFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalTcpStateForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addDnsDomainGlobalV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delBlackAndWhiteListProtection(java.lang.String name)* - */ - public com.dptech.umc.NtcRequestResultInfo delBlackAndWhiteListProtection(java.lang.String name) { - LOG.info("Executing operation delBlackAndWhiteListProtection"); - System.out.println(name); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalIcmpFragForUMC(java.lang.String objName, java.lang.String icmpenable, java.lang.String icmpthreshold)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpFlagFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalTcpFlagForService getDdosGlobalTcpFlagFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalTcpFlagFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalTcpFlagForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#startBypassManualTractionStrategyForUMC(java.lang.String policyName, java.lang.String cleaningDevices)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllBlackHoleAutoStrategyFromUMC()* - */ - public com.dptech.umc.ArrayOfBlackHoleAutoStrategyForService getAllBlackHoleAutoStrategyFromUMC() { - LOG.info("Executing operation getAllBlackHoleAutoStrategyFromUMC"); - try { - com.dptech.umc.ArrayOfBlackHoleAutoStrategyForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDnsDomainGlobalV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDnsDomainGlobalV4ForService getDnsDomainGlobalV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDnsDomainGlobalV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDnsDomainGlobalV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDdosHttpGetSipGloProV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAnomalyDetectionStrategyFromUMC(java.lang.String strategyName)* - */ - public com.dptech.umc.AnomalyDetectionStrategy getAnomalyDetectionStrategyFromUMC(java.lang.String strategyName) { - LOG.info("Executing operation getAnomalyDetectionStrategyFromUMC"); - System.out.println(strategyName); - try { - com.dptech.umc.AnomalyDetectionStrategy _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addDdosCCuserGroupV4ForUMC(java.lang.String objName, java.lang.String name)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modDnsSecDomainGlobalV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalAckPayloadFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalAckPayloadForService getDdosGlobalAckPayloadFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalAckPayloadFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalAckPayloadForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalTcpFragFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalTcpFragForService getDdosGlobalTcpFragFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalTcpFragFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalTcpFragForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#stopBypassManualTractionStrategyForUMC(java.lang.String policyName, java.lang.String cleaningDevices)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modDdosHttpGetSipGloProV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllAnomalyDetectionStrategyFromUMC()* - */ - public com.dptech.umc.ArrayOfAnomalyDetectionStrategy getAllAnomalyDetectionStrategyFromUMC() { - LOG.info("Executing operation getAllAnomalyDetectionStrategyFromUMC"); - try { - com.dptech.umc.ArrayOfAnomalyDetectionStrategy _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#startAbnormalTaskForUMC(java.lang.String abnormalIp, int attackType, int direction)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addDnsSipGlobalV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addAnomalyDetectionStrategyForUMC(java.lang.String strategyName, java.lang.String detectionObjName, int bandWidthThreshold)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDdosHttpGetSipCusProV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalUdpLengthFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalUdpLengthForService getDdosGlobalUdpLengthFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalUdpLengthFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalUdpLengthForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDdosACProtectionForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modDdosHttpGetUriGloProV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDdosHttpGetUriGloProV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDnsDomainGlobalV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDnsDomainCustomV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDnsSecDomainCustomV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDnsSecDomainCustomV4ForService getDnsSecDomainCustomV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDnsSecDomainCustomV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDnsSecDomainCustomV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.AbnormalFlowCleaningServicePortType#delAnomalyDetectionStrategyForUMC(java.lang.String strategyName)* - */ - public com.dptech.umc.NtcRequestResultInfo delAnomalyDetectionStrategyForUMC(java.lang.String strategyName) { - LOG.info("Executing operation delAnomalyDetectionStrategyForUMC"); - System.out.println(strategyName); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#deleteCompleteAnomalyDetectionStrategyForUMC(java.lang.String strategyName, int direction)* - */ - public com.dptech.umc.NtcRequestResultInfo deleteCompleteAnomalyDetectionStrategyForUMC(java.lang.String strategyName, int direction) { - LOG.info("Executing operation deleteCompleteAnomalyDetectionStrategyForUMC"); - System.out.println(strategyName); - System.out.println(direction); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modBypassManualTractionStrategyForUMC(java.lang.String policyName, java.lang.String protectName, java.lang.String ipRange)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDnsSecDomainCustomV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalOtherFragForUMC(java.lang.String objName, java.lang.String otherenable, java.lang.String otherthreshold)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#linkProtectionStrategyTemplateForUMC(java.lang.String protectName, java.lang.String templateName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getFingerprintUdpFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfFingerprintUdpForService getFingerprintUdpFromUMC(java.lang.String objName) { - LOG.info("Executing operation getFingerprintUdpFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfFingerprintUdpForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#deleteProtectionObjectForUMC(java.lang.String protectionName)* - */ - public com.dptech.umc.NtcRequestResultInfo deleteProtectionObjectForUMC(java.lang.String protectionName) { - LOG.info("Executing operation deleteProtectionObjectForUMC"); - System.out.println(protectionName); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delFingerprintOtherForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosHttpGetUriGloProV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDdosHttpGetUriGloProV4ForService getDdosHttpGetUriGloProV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosHttpGetUriGloProV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDdosHttpGetUriGloProV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllProtectionTargetWithStrategyAssociationRelationshipForUMC()* - */ - public com.dptech.umc.ArrayOfProtectionTargetWithStrategyForService getAllProtectionTargetWithStrategyAssociationRelationshipForUMC() { - LOG.info("Executing operation getAllProtectionTargetWithStrategyAssociationRelationshipForUMC"); - try { - com.dptech.umc.ArrayOfProtectionTargetWithStrategyForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#modifyProtectionObjectForUMC(java.lang.String protectionName, java.lang.String ipSegment, int ipType, int cleaningType)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalUdpFragForUMC(java.lang.String objName, java.lang.String udpenable, java.lang.String udpthreshold)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalIcmpLengthForUMC(java.lang.String objName, java.lang.String lengthenable, java.lang.String minlength, java.lang.String maxlength)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalUdpFragFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalUdpFragForService getDdosGlobalUdpFragFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalUdpFragFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalUdpFragForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getFingerprintTcpFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfFingerprintTcpForService getFingerprintTcpFromUMC(java.lang.String objName) { - LOG.info("Executing operation getFingerprintTcpFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfFingerprintTcpForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalTcpFlagForUMC(java.lang.String objName, java.lang.String tcpFlagenable)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addBlackHoleAutoStrategyForUMC(java.lang.String policyName, java.lang.String detectName, int detectMode, int blackHoleThreshold, int blackHoleTime)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getCompleteAnomalyDetectionStrategyFromUMC(java.lang.String strategyName, int direction)* - */ - public com.dptech.umc.AnomalyDetectionStrategy getCompleteAnomalyDetectionStrategyFromUMC(java.lang.String strategyName, int direction) { - LOG.info("Executing operation getCompleteAnomalyDetectionStrategyFromUMC"); - System.out.println(strategyName); - System.out.println(direction); - try { - com.dptech.umc.AnomalyDetectionStrategy _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addBypassManualTractionStrategyForUMC(java.lang.String policyName, java.lang.String protectName, java.lang.String ipRange)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllDetectionObjectFromUMC()* - */ - public com.dptech.umc.ArrayOfDetectionObjectDataForService getAllDetectionObjectFromUMC() { - LOG.info("Executing operation getAllDetectionObjectFromUMC"); - try { - com.dptech.umc.ArrayOfDetectionObjectDataForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDnsSecDomainGlobalV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDnsSecDomainGlobalV4ForService getDnsSecDomainGlobalV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDnsSecDomainGlobalV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDnsSecDomainGlobalV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDdosCCuserGroupV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalOtherFragFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalOtherFragForService getDdosGlobalOtherFragFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalOtherFragFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalOtherFragForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#stopBlackHoleStrategyForUMC(java.lang.String policyName)* - */ - public com.dptech.umc.NtcRequestResultInfo stopBlackHoleStrategyForUMC(java.lang.String policyName) { - LOG.info("Executing operation stopBlackHoleStrategyForUMC"); - System.out.println(policyName); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDnsSipGlobalV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDnsSipGlobalV4ForService getDnsSipGlobalV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDnsSipGlobalV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDnsSipGlobalV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getAllProtectionObjectFromUMC()* - */ - public com.dptech.umc.ArrayOfProtectionObjectDataForService getAllProtectionObjectFromUMC() { - LOG.info("Executing operation getAllProtectionObjectFromUMC"); - try { - com.dptech.umc.ArrayOfProtectionObjectDataForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosHttpGetUriCusProV4FromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDdosHttpGetUriCusProV4ForService getDdosHttpGetUriCusProV4FromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosHttpGetUriCusProV4FromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDdosHttpGetUriCusProV4ForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delBypassManualTractionStrategyForUMC(java.lang.String policyName)* - */ - public com.dptech.umc.NtcRequestResultInfo delBypassManualTractionStrategyForUMC(java.lang.String policyName) { - LOG.info("Executing operation delBypassManualTractionStrategyForUMC"); - System.out.println(policyName); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getFingerprintOtherFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfFingerprintOtherForService getFingerprintOtherFromUMC(java.lang.String objName) { - LOG.info("Executing operation getFingerprintOtherFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfFingerprintOtherForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#stopAbnormalTaskForUMC(java.lang.String abnormalIp, int attackType, int direction)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#addDdosHttpGetSipGloProV4ForUMC(java.lang.String objName, java.lang.String name, java.lang.String protectthreshold, java.lang.String action)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalTcpStateForUMC(java.lang.String objName, java.lang.String statenable, java.lang.String chosen)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#deleteDetectionObjectForUMC(java.lang.String detectionName)* - */ - public com.dptech.umc.NtcRequestResultInfo deleteDetectionObjectForUMC(java.lang.String detectionName) { - LOG.info("Executing operation deleteDetectionObjectForUMC"); - System.out.println(detectionName); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delFingerprintUdpForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#setDdosGlobalSynFloodForUMC(java.lang.String enable, java.lang.String objName, java.lang.String threshold, java.lang.String type)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.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.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delDnsSipGlobalV4ForUMC(java.lang.String name, java.lang.String objName)* - */ - public com.dptech.umc.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.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalIcmpLengthFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalIcmpLengthForService getDdosGlobalIcmpLengthFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalIcmpLengthFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalIcmpLengthForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosACProtectionFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.ArrayOfDdosACProtectionForService getDdosACProtectionFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosACProtectionFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.ArrayOfDdosACProtectionForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#delBlackHoleStrategyForUMC(java.lang.String policyName)* - */ - public com.dptech.umc.NtcRequestResultInfo delBlackHoleStrategyForUMC(java.lang.String policyName) { - LOG.info("Executing operation delBlackHoleStrategyForUMC"); - System.out.println(policyName); - try { - com.dptech.umc.NtcRequestResultInfo _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - - /* (non-Javadoc) - * @see com.dptech.umc.AbnormalFlowCleaningServicePortType#getDdosGlobalSynFloodFromUMC(java.lang.String objName)* - */ - public com.dptech.umc.DdosGlobalSynFloodForService getDdosGlobalSynFloodFromUMC(java.lang.String objName) { - LOG.info("Executing operation getDdosGlobalSynFloodFromUMC"); - System.out.println(objName); - try { - com.dptech.umc.DdosGlobalSynFloodForService _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - } - -} diff --git a/src/main/resources/mappers/DeviceCapacity.xml b/src/main/resources/mappers/DeviceCapacity.xml deleted file mode 100644 index e679479e..00000000 --- a/src/main/resources/mappers/DeviceCapacity.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/mappers/DisposeDeviceManager.xml b/src/main/resources/mappers/DisposeDeviceManager.xml deleted file mode 100644 index a0f1ca96..00000000 --- a/src/main/resources/mappers/DisposeDeviceManager.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - INSERT INTO - dispose_device(ipv4, ipv6, type, - areaCode, name, manufacturer, - model, version, readme) - VALUES - (#{ipv4}, #{ipv6}, #{type}, - #{areaCode}, #{name}, #{manufacturer}, - #{model}, #{version}, #{readme}); - - INSERT INTO - device_capacity(deviceId, capacity, tolFlowCapacity) - VALUES - - (last_insert_id(), #{devCaps.capacity}, #{devCaps.tolFlowCapacity}) - - - - - DELETE - dispose_device - FROM - dispose_device - WHERE - dispose_device.ipv4 = #{ipAddr} - - \ No newline at end of file diff --git a/src/main/resources/mappers/DisposeTaskManager.xml b/src/main/resources/mappers/DisposeTaskManager.xml deleted file mode 100644 index 687a4a7a..00000000 --- a/src/main/resources/mappers/DisposeTaskManager.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/main/resources/mappers/UserAccount.xml b/src/main/resources/mappers/UserAccount.xml deleted file mode 100644 index 519379d3..00000000 --- a/src/main/resources/mappers/UserAccount.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - UPDATE - user_account - SET - status = 1, - lockTime = CURRENT_TIMESTAMP - WHERE - username = #{username, jdbcType=VARCHAR} - - - UPDATE - user_account - SET - status = 0, - lockTime = 0 - WHERE - username = #{username, jdbcType=VARCHAR} - - - UPDATE - user_account - SET - lastLoginTime = CURRENT_TIMESTAMP - WHERE - username = #{username, jdbcType=VARCHAR} - - \ No newline at end of file diff --git a/src/main/resources/mappers/UserMapper.xml b/src/main/resources/mappers/UserMapper.xml deleted file mode 100644 index aa4ed708..00000000 --- a/src/main/resources/mappers/UserMapper.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/test/java/com/cmcc/hy/phoenix/controller/impl/DemoControllerTest.java b/src/test/java/com/cmcc/hy/phoenix/controller/impl/DemoControllerTest.java deleted file mode 100644 index 354e4c56..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/controller/impl/DemoControllerTest.java +++ /dev/null @@ -1,75 +0,0 @@ -package com.cmcc.hy.phoenix.controller.impl; - -import com.cmcc.hy.phoenix.pojo.dto.DemoDTO; -import com.fasterxml.jackson.databind.ObjectMapper; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.http.MediaType; -import org.springframework.test.annotation.DirtiesContext; -import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; - -import javax.annotation.Resource; - -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -/** - * - * - * @author phoenix - * @date 2020年2月8日 - */ -@AutoConfigureMockMvc -@RunWith(SpringRunner.class) -@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) -@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD) -public class DemoControllerTest { - - @Resource - private MockMvc mockMvc; - - @Resource - private ObjectMapper objectMapper; - - @Test - public void save1() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.post("/demo").contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(getDemoDTO()))).andDo(print()).andExpect(status().isOk()) - .andExpect(jsonPath("$.age").value(18)).andReturn().getResponse().getContentAsString(); - } - - @Test(expected = AssertionError.class) - public void save2() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.post("/demo").contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(getDemoDTO()))).andDo(print()).andExpect(status().isOk()) - .andExpect(jsonPath("$.age").value(17)).andReturn().getResponse().getContentAsString(); - } - - @Test - public void update1() throws Exception { - DemoDTO demo = getDemoDTO(); - demo.setId(2L); - mockMvc.perform(MockMvcRequestBuilders.put("/demo").contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(demo))).andDo(print()).andExpect(status().isOk()) - .andExpect(jsonPath("$.age").value(18)).andReturn().getResponse().getContentAsString(); - } - - @Test(expected = AssertionError.class) - public void update2() throws Exception { - DemoDTO demo = getDemoDTO(); - demo.setId(3L); - mockMvc.perform(MockMvcRequestBuilders.put("/demo").contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(demo))).andDo(print()).andExpect(status().isOk()) - .andExpect(jsonPath("$.age").value(18)).andReturn().getResponse().getContentAsString(); - } - - private DemoDTO getDemoDTO() { - return DemoDTO.builder().age(18).username("石少东").build(); - } - -} \ No newline at end of file diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestInterface.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestInterface.java deleted file mode 100644 index be56167c..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestInterface.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -public class TestInterface { -// public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.GetAllDetectionObjectFromUMC getUMC = new AbnormalFlowCleaningServiceStub.GetAllDetectionObjectFromUMC(); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// -// AbnormalFlowCleaningServiceStub.GetAllDetectionObjectFromUMCResponse resp = stub.getAllDetectionObjectFromUMC(getUMC); -// -// for(AbnormalFlowCleaningServiceStub.DetectionObjectDataForService v : resp.localOut.getDetectionObjectDataForService()) { -// System.out.println("detectionDevices: " + v.localDetectionDevices); -// System.out.println("cleaningDevices: " + v.localCleaningDevices); -// System.out.println("detectionName: " + v.localDetectionName); -// System.out.println("ipSegment: " + v.localIpSegment); -// System.out.println("ipType: " + v.localIpType); -// System.out.println("cleaningType: " + v.localCleaningType); -// } -// -// } catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } -// } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestaddBypassManualTractionStrategyForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestaddBypassManualTractionStrategyForUMC.java deleted file mode 100644 index a4a7893f..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestaddBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -import java.rmi.RemoteException; - -public class TestaddBypassManualTractionStrategyForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 添加指定名称、防护对象及保护IP段的旁路手动牵引策略配置信息 -// 输入参数: -// policyName 旁路手动牵引策略名称 -// protectName 防护对象名称。 -// ipRange 保护IP段。临时仅支持单个IP段,且仅支持IP-IP形式。 -// */ -// AbnormalFlowCleaningServiceStub.AddBypassManualTractionStrategyForUMC addBypass; -// addBypass = new AbnormalFlowCleaningServiceStub.AddBypassManualTractionStrategyForUMC(); -// String policyName = "2"; -// String protectName = "23"; -// String ipRange = "192.168.4.2-192.168.4.5"; -// addBypass.setPolicyName(policyName); -// addBypass.setProtectName(protectName); -// addBypass.setIpRange(ipRange); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response信息 -// 输出参数: -// resultRetVal 返回状态码。 -// resultInfo 请求执行结果描述。 -// 执行成功NtcRequestResultInfo类的resultRetVal属性值为0。 -// 执行失败NtcRequestResultInfo类的resultRetVal属性值为非0。可获取resultInfo属性值查看失败提示信息。 -// */ -// AbnormalFlowCleaningServiceStub.AddBypassManualTractionStrategyForUMCResponse respaddByss; -// respaddByss = stub.addBypassManualTractionStrategyForUMC(addBypass); -// System.out.println("ResultInfo: " + respaddByss.localOut.getResultInfo()); -// System.out.println("resultReVal: " + respaddByss.localOut.getResultRetVal()); -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestaddDetectionObjectForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestaddDetectionObjectForUMC.java deleted file mode 100644 index 18e5e541..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestaddDetectionObjectForUMC.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -public class TestaddDetectionObjectForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 添加对象,为自定义检测IP网段添加指定名称的检测对象 -// detectionDevices:检测设备列表 -// cleaningDevices:清洗设备列表 -// detectionName:检测对象名称 -// ipSegment:检测IP段 -// ipType:IP类型(v4:0;v6:1) -// cleaningType:清洗类型(Probe自动:3;Probe手动:4;第三方自动:1;第三方手动:2) -// */ -// AbnormalFlowCleaningServiceStub.AddDetectionObjectForUMC AddDO = new AbnormalFlowCleaningServiceStub.AddDetectionObjectForUMC(); -// AddDO.setDetectionDevices("192.168.1.1"); -// AddDO.setCleaningDevices("10.88.76.41"); -// AddDO.setDetectionName("4"); -// AddDO.setIpSegment("10.88.78.20-10.88.78.22"); -// AddDO.setIpType(0); -// AddDO.setCleaningType(3); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 获取添加对象的response -// resultReVal:返回状态码 -// ResultInfo:请求执行结果描述 -// */ -// AbnormalFlowCleaningServiceStub.AddDetectionObjectForUMCResponse AddDOresp = stub.addDetectionObjectForUMC(AddDO); -// -// System.out.println("ResultInfo: " + AddDOresp.localOut.getResultInfo()); -// System.out.println("resultReVal: " + AddDOresp.localOut.getResultRetVal()); -// -// } catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestdelBypassManualTractionStrategyForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestdelBypassManualTractionStrategyForUMC.java deleted file mode 100644 index fef3b128..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestdelBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,43 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -import java.rmi.RemoteException; - -public class TestdelBypassManualTractionStrategyForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 删除指定名称的旁路手动牵引策略 -// 输入参数: -// policyName 旁路手动牵引策略名称 -// */ -// AbnormalFlowCleaningServiceStub.DelBypassManualTractionStrategyForUMC delBypass; -// delBypass = new AbnormalFlowCleaningServiceStub.DelBypassManualTractionStrategyForUMC(); -// String policyName = "2"; -// delBypass.setPolicyName(policyName); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response信息 -// 输出参数: -// resultRetVal 返回状态码。 -// resultInfo 请求执行结果描述。 -// 执行成功NtcRequestResultInfo类的resultRetVal属性值为0。 -// 执行失败NtcRequestResultInfo类的resultRetVal属性值为非0。可获取resultInfo属性值查看失败提示信息。 -// */ -// AbnormalFlowCleaningServiceStub.DelBypassManualTractionStrategyForUMCResponse respdelBypass; -// respdelBypass = stub.delBypassManualTractionStrategyForUMC(delBypass); -// System.out.println("ResultInfo: " + respdelBypass.localOut.getResultInfo()); -// System.out.println("resultReVal: " + respdelBypass.localOut.getResultRetVal()); -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestdeleteDetectionObjectForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestdeleteDetectionObjectForUMC.java deleted file mode 100644 index 6f05cd34..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestdeleteDetectionObjectForUMC.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -public class TestdeleteDetectionObjectForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 删除检测对象,删除指定名称的检测对象 -// detectionName:检测对象名称 -// */ -// AbnormalFlowCleaningServiceStub.DeleteDetectionObjectForUMC DelDO = new AbnormalFlowCleaningServiceStub.DeleteDetectionObjectForUMC(); -// DelDO.setDetectionName("4"); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 获取修改对象的response -// resultReVal:返回状态码 -// ResultInfo:请求执行结果描述 -// */ -// AbnormalFlowCleaningServiceStub.DeleteDetectionObjectForUMCResponse DelDOresp = stub.deleteDetectionObjectForUMC(DelDO); -// -// System.out.println("ResultInfo: " + DelDOresp.localOut.getResultInfo()); -// System.out.println("resultReVal: " + DelDOresp.localOut.getResultRetVal()); -// -// } catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } -} - diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestdisableProtectionStrategyTemplateForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestdisableProtectionStrategyTemplateForUMC.java deleted file mode 100644 index d5f04e76..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestdisableProtectionStrategyTemplateForUMC.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - - -import java.rmi.RemoteException; - - -public class TestdisableProtectionStrategyTemplateForUMC { - public static void main(String[] args) { - -// try{ -// -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 为指定防护对象解除指定的防护策略模板 -// 输入参数: -// protectName 防护对象名称 -// templateName 防护策略模板名称 -// */ -// AbnormalFlowCleaningServiceStub.DisableProtectionStrategyTemplateForUMC disable_temp; -// disable_temp = new AbnormalFlowCleaningServiceStub.DisableProtectionStrategyTemplateForUMC(); -// String protectName = "23"; //目前已配置的防护对象名称有两个:10,23 -// String templateName = "Game_Server_10G"; -// disable_temp.setProtectName(protectName); -// disable_temp.setTemplateName(templateName); -// stub._getServiceClient().getOptions().setProperty(HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response: -// 输出参数:NtcRequestResultInfo类 该类为UMC封装请求返回状态信息类。 -// NtcRequestResultInfo类的属性信息如下: -// resultRetVal 返回状态码 -// resultInfo 请求执行结果描述 -// */ -// AbnormalFlowCleaningServiceStub.DisableProtectionStrategyTemplateForUMCResponse resp_disable_temp; -// resp_disable_temp = stub.disableProtectionStrategyTemplateForUMC(disable_temp); -// System.out.println("ResultInfo: " + resp_disable_temp.localOut.getResultInfo()); -// System.out.println("resultReVal: " + resp_disable_temp.localOut.getResultRetVal()); -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllBypassManualTractionStrategyFromUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllBypassManualTractionStrategyFromUMC.java deleted file mode 100644 index a0dd5061..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllBypassManualTractionStrategyFromUMC.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -import java.rmi.RemoteException; - -public class TestgetAllBypassManualTractionStrategyFromUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 获取UMC已配置的全部旁路手动牵引策略信息 -// 输入参数:无 -// */ -// AbnormalFlowCleaningServiceStub.GetAllBypassManualTractionStrategyFromUMC getBypass; -// getBypass = new AbnormalFlowCleaningServiceStub.GetAllBypassManualTractionStrategyFromUMC(); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response: -// 输出参数:数组形式 -// policyName 策略名称。 -// protectName 防护对象名称。 -// ipRange 保护IP段。临时仅支持单个IP段,且仅支持IP-IP形式。 -// Enabled 是否启动。启动:true;停止:false。 -// */ -// AbnormalFlowCleaningServiceStub.GetAllBypassManualTractionStrategyFromUMCResponse respallBypass; -// respallBypass = stub.getAllBypassManualTractionStrategyFromUMC(getBypass); -// try { -// for (AbnormalFlowCleaningServiceStub.BypassManualTractionStrategyForService v : respallBypass.localOut.getBypassManualTractionStrategyForService()) { -// System.out.println("policyName: " + v.localPolicyName); -// System.out.println("protectName: " + v.localProtectName); -// System.out.println("ipRange: " + v.localIpRange); -// System.out.println("Enabled: " + v.localEnabled); -// } -// }catch(NullPointerException ex){ -// System.out.println(ex.toString()); -// } -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllProtectionStrategyTemplateFromUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllProtectionStrategyTemplateFromUMC.java deleted file mode 100644 index c22d7e3a..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllProtectionStrategyTemplateFromUMC.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -import java.rmi.RemoteException; - -public class TestgetAllProtectionStrategyTemplateFromUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 获取UMC已配置的全部可用防护策略模板信息及防护策略模板描述 -// 输入参数:无 -// */ -// AbnormalFlowCleaningServiceStub.GetAllProtectionStrategyTemplateFromUMC getProStrategy; -// getProStrategy = new AbnormalFlowCleaningServiceStub.GetAllProtectionStrategyTemplateFromUMC(); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response: -// 输出参数:ArrayOfProtectionStrategyTemplateForService 该类为防护策略模板的数组 -// ArrayOfProtectionStrategyTemplateForService类为ProtectionStrategyTemplateForService类的数组。 -// ProtectionStrategyTemplateForService类的属性信息如下: -// name 模板名称 -// description 模板描述 -// */ -// AbnormalFlowCleaningServiceStub.GetAllProtectionStrategyTemplateFromUMCResponse respProStrategy; -// respProStrategy = stub.getAllProtectionStrategyTemplateFromUMC(getProStrategy); -// try { -// for(AbnormalFlowCleaningServiceStub.ProtectionStrategyTemplateForService p : respProStrategy.localOut.getProtectionStrategyTemplateForService()) -// { -// System.out.println("name: " + p.localName); -// //System.out.println("name: " + p.getName()); -// System.out.println("description: " + p.localDescription); -// //System.out.println("description: " + p.getDescription()); -// } -// }catch(NullPointerException ex){ -// System.out.println(ex.toString()); -// } -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllProtectionTargetWithStrategyAssociationRelationshipForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllProtectionTargetWithStrategyAssociationRelationshipForUMC.java deleted file mode 100644 index ee10e214..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestgetAllProtectionTargetWithStrategyAssociationRelationshipForUMC.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - - -public class TestgetAllProtectionTargetWithStrategyAssociationRelationshipForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 获取UMC已配置的全部防护对象同防护策略模板关联关系信息 -// 输入参数:无 -// */ -// AbnormalFlowCleaningServiceStub.GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC getassocrel; -// getassocrel = new AbnormalFlowCleaningServiceStub.GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC(); -// stub._getServiceClient().getOptions().setProperty(HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response: -// 输出参数: ArrayOfProtectionTargetWithStrategyForService 该类为防护对象同防护策略模板关联关系的对象数组 -// ArrayOfProtectionTargetWithStrategyForService类为ProtectionTargetWithStrategyForService类的数组。 -// ProtectionTargetWithStrategyForService类的属性信息如下: -// protectionTargetName 防护对象名称。 -// protectionStrategyName 防护策略模板名称。未关联任何策略模板返回空串 -// */ -// AbnormalFlowCleaningServiceStub.GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse respassocrel; -// respassocrel = stub.getAllProtectionTargetWithStrategyAssociationRelationshipForUMC(getassocrel); -// try { -// for(AbnormalFlowCleaningServiceStub.ProtectionTargetWithStrategyForService p: respassocrel.localOut.getProtectionTargetWithStrategyForService()) -// { -// System.out.println("protectionTargetName: " + p.localProtectionTargetName); -// //System.out.println("protectionTargetName: " + p.getProtectionTargetName()); -// System.out.println("protectionStrategyName: " + p.localProtectionStrategyName); -// //System.out.println("protectionStrategyName: " + p.getProtectionStrategyName()); -// } -// }catch(NullPointerException ex){ -// System.out.println(ex.toString()); -// } -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestlinkProtectionStrategyTemplateForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestlinkProtectionStrategyTemplateForUMC.java deleted file mode 100644 index 54157e5a..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestlinkProtectionStrategyTemplateForUMC.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - - -public class TestlinkProtectionStrategyTemplateForUMC { - public static void main(String[] args) { -// try{ -// -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 指定防护对象关联防护策略模板,关联后该防护策略模板将对该防护对象生效。 -// 输入参数: -// protectName 防护对象名称 -// templateName 防护策略模板名称 -// */ -// AbnormalFlowCleaningServiceStub.LinkProtectionStrategyTemplateForUMC link_temp; -// link_temp = new AbnormalFlowCleaningServiceStub.LinkProtectionStrategyTemplateForUMC(); -// String protectName = "23"; //目前已配置的防护对象名称有两个:10,23 -// /* -// 防护策略模板UMC管理平台已配置 -// 模板名如下:Game_Server_10G、Game_Server_1G、DNS_Server_10G、DNS_Server_1G、WEB_Server_10G -// WEB_Server_1G、General_Server_10G、General_Server_1G、General_Server_100M -// */ -// String templateName = "Game_Server_10G"; -// link_temp.setProtectName(protectName); -// link_temp.setTemplateName(templateName); -// stub._getServiceClient().getOptions().setProperty(HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response: -// 输出参数:NtcRequestResultInfo类 该类为UMC封装请求返回状态信息类。 -// NtcRequestResultInfo类的属性信息如下: -// resultRetVal 返回状态码 -// resultInfo 请求执行结果描述 -// */ -// AbnormalFlowCleaningServiceStub.LinkProtectionStrategyTemplateForUMCResponse resp_link_temp; -// resp_link_temp = stub.linkProtectionStrategyTemplateForUMC(link_temp); -// System.out.println("ResultInfo: " + resp_link_temp.localOut.getResultInfo()); -// System.out.println("resultReVal: " + resp_link_temp.localOut.getResultRetVal()); -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestmodBypassManualTractionStrategyForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestmodBypassManualTractionStrategyForUMC.java deleted file mode 100644 index befda1c0..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestmodBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -import java.rmi.RemoteException; - -public class TestmodBypassManualTractionStrategyForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 修改指定名称的旁路手动牵引策略配置信息 -// 输入参数: -// policyName 旁路手动牵引策略名称 -// protectName 防护对象名称。 -// ipRange 保护IP段。临时仅支持单个IP段,且仅支持IP-IP形式。 -// */ -// AbnormalFlowCleaningServiceStub.ModBypassManualTractionStrategyForUMC modBypass; -// modBypass = new AbnormalFlowCleaningServiceStub.ModBypassManualTractionStrategyForUMC(); -// String policyName = "1"; -// String protectName = "10"; -// String ipRange = "192.168.3.3-192.168.3.5"; -// modBypass.setPolicyName(policyName); -// modBypass.setProtectName(protectName); -// modBypass.setIpRange(ipRange); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response信息 -// 输出参数: -// resultRetVal 返回状态码。 -// resultInfo 请求执行结果描述。 -// 执行成功NtcRequestResultInfo类的resultRetVal属性值为0。 -// 执行失败NtcRequestResultInfo类的resultRetVal属性值为非0。可获取resultInfo属性值查看失败提示信息。 -// */ -// AbnormalFlowCleaningServiceStub.ModBypassManualTractionStrategyForUMCResponse respmodBypass; -// respmodBypass = stub.modBypassManualTractionStrategyForUMC(modBypass); -// System.out.println("ResultInfo: " + respmodBypass.localOut.getResultInfo()); -// System.out.println("resultReVal: " + respmodBypass.localOut.getResultRetVal()); -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TestmodifyDetectionObjectForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TestmodifyDetectionObjectForUMC.java deleted file mode 100644 index 33180d17..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TestmodifyDetectionObjectForUMC.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -public class TestmodifyDetectionObjectForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 修改检测对象,将指定名称的检测对象中的检测IP段更新为新的检测IP网段 -// detectionName:检测对象名称 -// ipSegment:检测IP段 -// ipType:IP类型(v4:0;v6:1) -// cleaningType:清洗类型(Probe自动:3;Probe手动:4;第三方自动:1;第三方手动:2) -// */ -// AbnormalFlowCleaningServiceStub.ModifyDetectionObjectForUMC ModDO = new AbnormalFlowCleaningServiceStub.ModifyDetectionObjectForUMC(); -// ModDO.setDetectionName("4"); -// ModDO.setIpSegment("10.88.78.120-10.88.78.125"); -// ModDO.setIpType(0); -// ModDO.setCleaningType(4); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 获取修改对象的response -// resultReVal:返回状态码 -// ResultInfo:请求执行结果描述 -// */ -// AbnormalFlowCleaningServiceStub.ModifyDetectionObjectForUMCResponse ModDOresp = stub.modifyDetectionObjectForUMC(ModDO); -// -// System.out.println("ResultInfo: " + ModDOresp.localOut.getResultInfo()); -// System.out.println("resultReVal: " + ModDOresp.localOut.getResultRetVal()); -// -// } catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } -} - diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TeststartBypassManualTractionStrategyForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TeststartBypassManualTractionStrategyForUMC.java deleted file mode 100644 index eceb89bc..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TeststartBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -import java.rmi.RemoteException; - -public class TeststartBypassManualTractionStrategyForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 启动指定名称的旁路手动牵引策略。启动旁路手动牵引策略,UMC将立即启动引流清洗功能。 -// 输入参数: -// policyName 策略名称 -// cleaningDevices 指定清洗设备列表 -// 1、清洗设备需包含在对应防护对象中。2、如为空串代表默认选择对应防护对象中的全部清洗设备 -// */ -// AbnormalFlowCleaningServiceStub.StartBypassManualTractionStrategyForUMC startBypass; -// startBypass = new AbnormalFlowCleaningServiceStub.StartBypassManualTractionStrategyForUMC(); -// String policyName = "1"; -// String cleaningDevices = "10.88.76.41"; -// startBypass.setPolicyName(policyName); -// startBypass.setCleaningDevices(cleaningDevices); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response信息 -// 输出参数: -// resultRetVal 返回状态码。 -// resultInfo 请求执行结果描述。 -// 执行成功NtcRequestResultInfo类的resultRetVal属性值为0。 -// 执行失败NtcRequestResultInfo类的resultRetVal属性值为非0。可获取resultInfo属性值查看失败提示信息。 -// */ -// AbnormalFlowCleaningServiceStub.StartBypassManualTractionStrategyForUMCResponse respstartBypass; -// respstartBypass = stub.startBypassManualTractionStrategyForUMC(startBypass); -// System.out.println("ResultInfo: " + respstartBypass.localOut.getResultInfo()); -// System.out.println("resultReVal: " + respstartBypass.localOut.getResultRetVal()); -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/TeststopBypassManualTractionStrategyForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/TeststopBypassManualTractionStrategyForUMC.java deleted file mode 100644 index f11bfa5b..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/TeststopBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.cmcc.hy.phoenix.dptech; - -import java.rmi.RemoteException; - -public class TeststopBypassManualTractionStrategyForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 停止指定名称的旁路手动牵引策略。启动旁路手动牵引策略,UMC将立即启动引流清洗功能。 -// 输入参数: -// policyName 策略名称 -// cleaningDevices 指定清洗设备列表 -// 1、清洗设备需包含在对应防护对象中。2、如为空串代表默认选择对应防护对象中的全部清洗设备 -// */ -// AbnormalFlowCleaningServiceStub.StopBypassManualTractionStrategyForUMC stopBypass; -// stopBypass = new AbnormalFlowCleaningServiceStub.StopBypassManualTractionStrategyForUMC(); -// String policyName = "1"; -// String cleaningDevices = "10.88.76.41"; -// stopBypass.setPolicyName(policyName); -// stopBypass.setCleaningDevices(cleaningDevices); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// response信息 -// 输出参数: -// resultRetVal 返回状态码。 -// resultInfo 请求执行结果描述。 -// 执行成功NtcRequestResultInfo类的resultRetVal属性值为0。 -// 执行失败NtcRequestResultInfo类的resultRetVal属性值为非0。可获取resultInfo属性值查看失败提示信息。 -// */ -// AbnormalFlowCleaningServiceStub.StopBypassManualTractionStrategyForUMCResponse respstopBypass; -// respstopBypass = stub.stopBypassManualTractionStrategyForUMC(stopBypass); -// System.out.println("ResultInfo: " + respstopBypass.localOut.getResultInfo()); -// System.out.println("resultReVal: " + respstopBypass.localOut.getResultRetVal()); -// } catch (RemoteException ex) { -// System.out.println(ex.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestInterface.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestInterface.java deleted file mode 100644 index f6208501..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestInterface.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -public class TestInterface { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.GetAllDetectionObjectFromUMC getUMC = new AbnormalFlowCleaningServiceStub.GetAllDetectionObjectFromUMC(); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// -// AbnormalFlowCleaningServiceStub.GetAllDetectionObjectFromUMCResponse resp = stub.getAllDetectionObjectFromUMC(getUMC); -// -// for(AbnormalFlowCleaningServiceStub.DetectionObjectDataForService v : resp.localOut.getDetectionObjectDataForService()) { -// System.out.println("detectionDevices: " + v.localDetectionDevices); -// System.out.println("cleaningDevices: " + v.localCleaningDevices); -// System.out.println("detectionName: " + v.localDetectionName); -// System.out.println("ipSegment: " + v.localIpSegment); -// System.out.println("ipType: " + v.localIpType); -// System.out.println("cleaningType: " + v.localCleaningType); -// } -// } catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestaddProtectionObjectForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestaddProtectionObjectForUMC.java deleted file mode 100644 index b8b0e10c..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestaddProtectionObjectForUMC.java +++ /dev/null @@ -1,64 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -import com.sun.org.apache.xpath.internal.objects.XString; - -/* -4.2 添加防护对象 - */ -public class TestaddProtectionObjectForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.AddProtectionObjectForUMC addPObject = new AbnormalFlowCleaningServiceStub.AddProtectionObjectForUMC(); -// /* -// 输入参数: -// 属性 类型 说明 -// detectionDevices string 检测设备列表。(无检测设备时可填写空串) -// cleaningDevices string 清洗设备列表。 -// protectionName string 防护对象名称。 -// ipSegment string 防护IP段。(注意:防护对象IP段格式同检测对象稍有不同,请参考下面的格式说明。) -// ipType int IP类型(V4:0;V6:1)。 -// cleaningType int 清洗类型(Probe自动:3;Probe手动:4;第三方自动:1;第三方手动:2;无检测设备:0)。 -// */ -// String detectionDevices = ""; -// String cleaningDevices = "10.88.76.41"; -// String protectionName = "test"; -// String ipSegment = "1_192.168.1.5-192.168.1.6"; -// int ipType = 0; //文档标错 -// int cleaningType = 1; //文档标错 -// -// addPObject.setDetectionDevices(detectionDevices); -// addPObject.setCleaningDevices(cleaningDevices); -// addPObject.setProtectionName(protectionName); -// addPObject.setIpSegment(ipSegment); -// addPObject.setIpType(ipType); -// addPObject.setCleaningType(cleaningType); -// -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 属性 类型 说明 -// resultRetVal int 返回状态码。 -// resultInfo string 请求执行结果描述。 -// 执行成功NtcRequestResultInfo类的resultRetVal属性值为0。 -// 执行失败NtcRequestResultInfo类的resultRetVal属性值为非0。可获取resultInfo属性值查看失败提示信息。 -// */ -// AbnormalFlowCleaningServiceStub.AddProtectionObjectForUMCResponse response = stub.addProtectionObjectForUMC(addPObject); -// System.out.println("resultRetVal:" + response.localOut.getResultRetVal()); -// System.out.println("resultInfo" + response.localOut.getResultInfo()); -// -// }catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } - -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestdeleteProtectionObjectForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestdeleteProtectionObjectForUMC.java deleted file mode 100644 index 4180afaa..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestdeleteProtectionObjectForUMC.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -/* -4.5 删除防护对象 - */ -public class TestdeleteProtectionObjectForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.DeleteProtectionObjectForUMC deletePO = new AbnormalFlowCleaningServiceStub.DeleteProtectionObjectForUMC(); -// /* -// 输入参数: -// 属性 类型 说明 -// protectionName string 防护对象名称。 -// */ -// String protectionName = "1"; -// -// deletePO.setProtectionName(protectionName); -// -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 输出:NtcRequestResultInfo类的属性信息如下: -// 属性 类型 说明 -// resultRetVal int 返回状态码。 -// resultInfo string 请求执行结果描述。 -// */ -// AbnormalFlowCleaningServiceStub.DeleteProtectionObjectForUMCResponse response = stub.deleteProtectionObjectForUMC(deletePO); -// System.out.println("resultRetVal:"+response.localOut.getResultRetVal()); -// System.out.println("resultInfo:"+response.localOut.getResultInfo()); -// -// }catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestdeleteProtectionObjectIPRangeForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestdeleteProtectionObjectIPRangeForUMC.java deleted file mode 100644 index 6789e9d1..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestdeleteProtectionObjectIPRangeForUMC.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -/* -4.4 删除防护对象中某一保护网段 - */ -public class TestdeleteProtectionObjectIPRangeForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.DeleteProtectionObjectIPRangeForUMC deletePOIP = new AbnormalFlowCleaningServiceStub.DeleteProtectionObjectIPRangeForUMC(); -// /* -// 输入参数: -// 属性 类型 说明 -// protectionName String 防护对象名称。 -// ipRangeIDs string 保护网段ID列表。 -// */ -// String protectionName = "test"; -// String ipRangeIDs = "1"; -// -// deletePOIP.setProtectionName(protectionName); -// deletePOIP.setIpRangeIDs(ipRangeIDs); -// -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 输出:NtcRequestResultInfo类的属性信息如下: -// 属性 类型 说明 -// resultRetVal int 返回状态码。 -// resultInfo string 请求执行结果描述。 -// */ -// AbnormalFlowCleaningServiceStub.DeleteProtectionObjectIPRangeForUMCResponse response = stub.deleteProtectionObjectIPRangeForUMC(deletePOIP); -// System.out.println("resultRetVal:"+response.localOut.getResultRetVal()); -// System.out.println("resultInfo:"+response.localOut.getResultInfo()); -// -// }catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllDetectDevices.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllDetectDevices.java deleted file mode 100644 index 608ae2ad..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllDetectDevices.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -/* -2.1 获取全部检测设备 -输入参数 无 -输出参数 : -属性 类型 说明 -out string UMC全部清洗设备列表(注:以英文逗号间隔) - */ -public class TestgetAllDetectDevices { - public static void main(String[] args) { -// try { -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.GetAllDetectDevices getDDevices = new AbnormalFlowCleaningServiceStub.GetAllDetectDevices(); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// AbnormalFlowCleaningServiceStub.GetAllDetectDevicesResponse response = stub.getAllDetectDevices(getDDevices); -// -// System.out.println("allDetectDevices: " + response.getOut()); -// -// } catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllProtectDevices.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllProtectDevices.java deleted file mode 100644 index 2da7ac6b..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllProtectDevices.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -/* -2.2 获取全部清洗设备 -输入参数 无 -输出参数 : -属性 类型 说明 -out string UMC全部检测设备列表(注:以英文逗号间隔) - */ -public class TestgetAllProtectDevices { - public static void main(String[] args) { -// try { -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.GetAllProtectDevices getPDevices = new AbnormalFlowCleaningServiceStub.GetAllProtectDevices(); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// AbnormalFlowCleaningServiceStub.GetAllProtectDevicesResponse response = stub.getAllProtectDevices(getPDevices); -// -// System.out.println("allProtectDevices: " + response.getOut()); -// -// } catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllProtectionObjectFromUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllProtectionObjectFromUMC.java deleted file mode 100644 index 851b25ec..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestgetAllProtectionObjectFromUMC.java +++ /dev/null @@ -1,59 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -import com.sun.org.apache.xpath.internal.objects.XNull; - -/* -4.1 获取全部防护对象 - */ -public class TestgetAllProtectionObjectFromUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// /* -// 输入参数:无 -// */ -// AbnormalFlowCleaningServiceStub.GetAllProtectionObjectFromUMC getPObject = new AbnormalFlowCleaningServiceStub.GetAllProtectionObjectFromUMC(); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 输出:数组ArrayOfProtectionObjectDataForService 函数返回值。该类为防护对象的数组。 -// ArrayOfProtectionObjectDataForService类为ProtectionObjectDataForService类的数组。 -// ProtectionObjectDataForService类的属性信息如下: -// 属性 类型 说明 -// detectionDevices string 检测设备列表。(无检测设备时为空串) -// cleaningDevices string 清洗设备列表。 -// protectionName string 防护对象名称。 -// ipSegment string 防护IP段。(注意:防护对象IP段格式同检测对象稍有不同,请参考下面的格式说明。) -// ipType string IP类型(V4:0;V6:1)。 -// cleaningType string 清洗类型(Probe自动:3;Probe手动:4;第三方自动:1;第三方手动:2;无检测设备:0)。 -// */ -// AbnormalFlowCleaningServiceStub.GetAllProtectionObjectFromUMCResponse response = stub.getAllProtectionObjectFromUMC(getPObject); -// try { -// for (AbnormalFlowCleaningServiceStub.ProtectionObjectDataForService v : response.localOut.getProtectionObjectDataForService()) { -// System.out.println("detectionDevices:" + v.getDetectionDevices()); -// System.out.println("cleaningDevices:" + v.getCleaningDevices()); -// System.out.println("protectionName:" + v.getProtectionName()); -// System.out.println("ipSegment:" + v.getIpSegment()); -// System.out.println("ipType:" + v.getIpType()); -// System.out.println("cleaningType:" + v.getCleaningType()); -// } -// } catch (NullPointerException ex) { -// System.out.println(ex.toString()); -// } -// -// -// }catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestmodifyProtectionObjectForUMC.java b/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestmodifyProtectionObjectForUMC.java deleted file mode 100644 index da8efde3..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/wsdl/TestmodifyProtectionObjectForUMC.java +++ /dev/null @@ -1,56 +0,0 @@ -package com.cmcc.hy.phoenix.dptech.wsdl; - -import com.sun.org.apache.xpath.internal.objects.XString; - -/* -4.3 修改防护对象 - */ -public class TestmodifyProtectionObjectForUMC { - public static void main(String[] args) { -// try{ -// org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator basicAuthentication = -// new org.apache.axis2.transport.http.impl.httpclient4.HttpTransportPropertiesImpl.Authenticator(); -// -// basicAuthentication.setUsername("admin"); -// basicAuthentication.setPassword("UMCAdministrator"); -// -// AbnormalFlowCleaningServiceStub stub = new AbnormalFlowCleaningServiceStub(); -// AbnormalFlowCleaningServiceStub.ModifyProtectionObjectForUMC modifyDO = new AbnormalFlowCleaningServiceStub.ModifyProtectionObjectForUMC(); -// /* -// 输入参数: -// 属性 类型 说明 -// protectionName string 防护对象名称。 -// ipSegment string 防护IP段。(注意:防护对象IP段格式同检测对象稍有不同,请参考下面的格式说明。) -// ipType string IP类型(V4:0;V6:1)。 -// cleaningType int 清洗类型(Probe自动:3;Probe手动:4;第三方自动:1;第三方手动:2;无检测设备:0)。 //文档类型错误 -// */ -// String protectionName = "test"; -// String ipSegment = "1_192.168.1.7-192.168.1.8"; -// int ipType = 0; //文档错误 -// int cleaningType = 0; //文档错误 -// -// modifyDO.setProtectionName(protectionName); -// modifyDO.setIpSegment(ipSegment); -// modifyDO.setIpType(ipType); -// modifyDO.setCleaningType(cleaningType); -// -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); -// stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, basicAuthentication); -// -// /* -// 输出:NtcRequestResultInfo类的属性信息如下: -// 属性 类型 说明 -// resultRetVal int 返回状态码。 -// resultInfo string 请求执行结果描述。 -// */ -// AbnormalFlowCleaningServiceStub.ModifyProtectionObjectForUMCResponse response = stub.modifyProtectionObjectForUMC(modifyDO); -// System.out.println("resultRetVal:"+response.localOut.getResultRetVal()); -// System.out.println("resultInfo:"+response.localOut.getResultInfo()); -// -// }catch (org.apache.axis2.AxisFault ex) { -// System.out.println(ex.toString()); -// } catch (java.rmi.RemoteException ex2) { -// System.out.println(ex2.toString()); -// } - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/enc/dec/EncDecTest.java b/src/test/java/com/cmcc/hy/phoenix/enc/dec/EncDecTest.java deleted file mode 100644 index 8e4fec77..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/enc/dec/EncDecTest.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.cmcc.hy.phoenix.enc.dec; - -import org.apache.commons.codec.binary.Base64; -import org.junit.Test; - -import com.cmcc.aqb.enc.dec.AesECB; -import com.cmcc.hy.phoenix.pojo.dto.MyReqDTO; -import com.fasterxml.jackson.databind.ObjectMapper; - -/** - * - * - * @author phoenix - * @date 2020年2月10日 - */ -public class EncDecTest { - - private String aesKey = "Wt4EJu6Rrq5udd/42bNpCQ=="; - - @Test - public void test() throws Exception { - MyReqDTO mrd = MyReqDTO.builder().build(); - mrd.setId(1L); - mrd.setMsg("test"); - mrd.setType(3); - ObjectMapper om = new ObjectMapper(); - String json = om.writeValueAsString(mrd); - System.out.println(json); - try { - String enc = Base64.encodeBase64String(AesECB.encByAes(json.getBytes(), aesKey)); - System.out.println("密文==" + enc); - //CP+H7A/JlP3yhWGCLjS6HLq+P/sWBVavKpza3UwI8dw= - } catch (Exception e) { - e.printStackTrace(); - } - - } - -} diff --git a/src/test/java/com/cmcc/hy/phoenix/manager/GlobalManagerTest.java b/src/test/java/com/cmcc/hy/phoenix/manager/GlobalManagerTest.java deleted file mode 100644 index fd55eec0..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/manager/GlobalManagerTest.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.cmcc.hy.phoenix.manager; - -import javax.annotation.Resource; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.test.util.ReflectionTestUtils; - -import com.cmcc.hy.phoenix.mapper.UserMapper; -import com.cmcc.hy.phoenix.redis.RedisClient; - -/** - * - * - * @author phoenix - * @date 2020年2月8日 - */ -@RunWith(SpringRunner.class) -@SpringBootTest -public class GlobalManagerTest { - - @Mock - private UserMapper userMapper; - - @Mock - private RedisClient redisClient; - - @Resource - private GlobalManager globalManager; - - @Before - public void setUp() { - ReflectionTestUtils.setField(globalManager, "redisClient", redisClient); - ReflectionTestUtils.setField(globalManager, "userMapper", userMapper); - } - - @Test - public void test() { - Mockito.when(userMapper.select(null)).thenReturn(null); - Mockito.doNothing().when(redisClient).put(Mockito.anyString(), Mockito.anyString(), Mockito.anyInt()); - globalManager.findUserById(1); - } - -} diff --git a/src/test/java/com/cmcc/hy/phoenix/manager/ManagerCacheTest.java b/src/test/java/com/cmcc/hy/phoenix/manager/ManagerCacheTest.java deleted file mode 100644 index 32c51f64..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/manager/ManagerCacheTest.java +++ /dev/null @@ -1,102 +0,0 @@ -package com.cmcc.hy.phoenix.manager; - -import javax.annotation.Resource; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.test.util.ReflectionTestUtils; - -import com.cmcc.hy.phoenix.aop.cache.MyCacheInterceptor; -import com.cmcc.hy.phoenix.mapper.InfoCollectionMapper; -import com.cmcc.hy.phoenix.pojo.entity.InfoCollection; -import com.cmcc.hy.phoenix.redis.RedisClient; - -import junit.framework.TestCase; -import lombok.extern.slf4j.Slf4j; - -/** - * - * - * @author phoenix - * @date 2020年3月4日 - */ -@RunWith(SpringRunner.class) -@SpringBootTest -@Slf4j -public class ManagerCacheTest { - - @Resource - private RedisClient redisClient; - - @Resource - private GlobalManager globalManager; - - @Resource - private InfoCollectionMapper infoCollectionMapper; - - @Before - public void setUp() { - ReflectionTestUtils.setField(globalManager, "redisClient", redisClient); - ReflectionTestUtils.setField(globalManager, "infoCollectionMapper", infoCollectionMapper); - } - - @Test - public void test() { - // 清空表 - globalManager.deleteAllIc(); - // 生成数据 - long id = 1111L; - String phone = "18867101080"; - String productType = "waf"; - InfoCollection ic = InfoCollection.builder().id(id).phoneNumber(phone).username("chiwei").province("浙江") - .city("城市").district("余杭").address("杭州").email("sdf").comment("sdf").organization("CMCC") - .provinceCode("123456").syncStatus(-1).productType(productType).build(); - globalManager.saveInfoCollection(ic); - String idKey = MyCacheInterceptor.CACHE_PREFIX + InfoCollection.class.getSimpleName() - + MyCacheInterceptor.SPILIT + id; - log.info("idKey={}", idKey); - String ppKey = MyCacheInterceptor.CACHE_PREFIX + InfoCollection.class.getSimpleName() - + MyCacheInterceptor.SPILIT + phone + MyCacheInterceptor.SPILIT + productType; - log.info("ppKey={}", ppKey); - // 会有两条缓存产生 - InfoCollection idIc = redisClient.get(idKey, InfoCollection.class); - TestCase.assertEquals(phone, idIc.getPhoneNumber()); - InfoCollection ppIc = redisClient.get(ppKey, InfoCollection.class); - TestCase.assertEquals(id + "", ppIc.getId() + ""); - redisClient.del(idKey); - redisClient.del(ppKey); - idIc = redisClient.get(idKey, InfoCollection.class); - TestCase.assertNull(idIc); - ppIc = redisClient.get(ppKey, InfoCollection.class); - TestCase.assertNull(ppIc); - // 数据查询 - InfoCollection queryIc = globalManager.findIcById(id); - TestCase.assertEquals(phone, queryIc.getPhoneNumber()); - // 有id缓存 - idIc = redisClient.get(idKey, InfoCollection.class); - TestCase.assertEquals(phone, idIc.getPhoneNumber()); - // 无 phone productType缓存 - ppIc = redisClient.get(ppKey, InfoCollection.class); - TestCase.assertNull(ppIc); - redisClient.del(idKey); - redisClient.del(ppKey); - // 查询 - queryIc = globalManager.findIcByPhoneAndProductType(phone, productType); - TestCase.assertEquals(id + "", queryIc.getId() + ""); - // 无id缓存 - idIc = redisClient.get(idKey, InfoCollection.class); - TestCase.assertNull(idIc); - // 有 phone productType缓存 - ppIc = redisClient.get(ppKey, InfoCollection.class); - TestCase.assertEquals(id + "", queryIc.getId() + ""); - // 删除操作 - globalManager.deleteIcByPhoneAndPt(phone, productType); - idIc = redisClient.get(idKey, InfoCollection.class); - TestCase.assertNull(idIc); - ppIc = redisClient.get(ppKey, InfoCollection.class); - TestCase.assertNull(ppIc); - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/mapper/DeviceCapacityMapperTest.java b/src/test/java/com/cmcc/hy/phoenix/mapper/DeviceCapacityMapperTest.java deleted file mode 100644 index 4e6edb78..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/mapper/DeviceCapacityMapperTest.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.DeviceCapacity; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.extern.slf4j.Slf4j; -import org.junit.Assert; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -import javax.annotation.Resource; -import java.util.List; - -@RunWith(SpringRunner.class) -@SpringBootTest -@Slf4j -public class DeviceCapacityMapperTest { - @Autowired - private ObjectMapper objMapper; - - @Resource - private DeviceCapacityMapper deviceCapacityMapper; - - @Test - public void getUserByNameUsedDefaultMapper() throws JsonProcessingException { - List devCaps = deviceCapacityMapper.getDeviceCapacityByDeviceId(1L); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(devCaps)); - - Assert.assertNotEquals(devCaps.size(), 0); - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapperTest.java b/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapperTest.java deleted file mode 100644 index 2f59cdc7..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapperTest.java +++ /dev/null @@ -1,110 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.pojo.entity.DeviceCapacity; -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.cmcc.hy.phoenix.pojo.po.DeviceCapacityInfo; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.extern.slf4j.Slf4j; -import org.junit.Assert; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.transaction.annotation.EnableTransactionManagement; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.util.*; - -@RunWith(SpringRunner.class) -@SpringBootTest -@EnableTransactionManagement -@Slf4j -public class DisposeDeviceMapperTest { - - @Autowired - private ObjectMapper objMapper; - - @Resource - private DisposeDeviceMapper disposeDeviceMapper; - - - @Test - public void getAllDisposeDevice() throws JsonProcessingException { - List dp = disposeDeviceMapper.getAllDisposeDevice(); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dp)); - - Assert.assertNotEquals(dp.size(), 0); - } - - @Test - public void getAllDisposeDeviceV2() throws JsonProcessingException { - List dp = disposeDeviceMapper.selectAll(); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dp)); - - Assert.assertNotEquals(dp.size(), 0); - } - - @Test - public void getDisposeDisposeDevByIp() throws JsonProcessingException { - DisposeDevice dev = disposeDeviceMapper.getDisposeDisposeDevByIp("10.88.77.15"); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dev)); - - Assert.assertNotNull(dev); - } - - @Test - public void getDisposeDisposeDevById() throws JsonProcessingException { - List dev = disposeDeviceMapper.getDisposeDisposeDevById(1L); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dev)); - - Assert.assertNotEquals(dev.size(), 0); - } - - @Test - @Transactional - public void addNewDisposeDevice() throws JsonProcessingException { - Long devId = -1L; - DisposeDevice dev = new DisposeDevice(); - List devCaps = new ArrayList<>(); - dev.setId(devId); - dev.setIpv4("192.168.88.1"); - dev.setType(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode()); - dev.setName("默认路由器"); - dev.setManufacturer("MERCURY"); - dev.setModel("MV305R"); - dev.setVersion("1.0.120"); - dev.setReadme("数据库测试垃圾数据"); - dev.setAreaCode(0); - dev.setDevCaps(devCaps); - - devCaps.add(new DeviceCapacity(0, 2048)); - devCaps.add(new DeviceCapacity(2)); - - disposeDeviceMapper.addNewDisposeDevice(dev); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dev)); - - Assert.assertNotEquals(devId, dev.getId()); - } - - @Test - public void removeDisposeDevice() throws JsonProcessingException { - String ipAddr = "192.168.30.6"; - disposeDeviceMapper.removeDisposeDevice(ipAddr); - List dp = disposeDeviceMapper.selectAll(); - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dp)); - dp.forEach(v->{ - if(v.getIpv4().equals(ipAddr)) { - Assert.fail(); - } - }); - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeTaskMapperTest.java b/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeTaskMapperTest.java deleted file mode 100644 index b882579b..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeTaskMapperTest.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.pojo.entity.DisposeTask; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.extern.slf4j.Slf4j; -import org.junit.Assert; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.transaction.annotation.EnableTransactionManagement; - -import javax.annotation.Resource; -import java.util.List; - -@RunWith(SpringRunner.class) -@SpringBootTest -@EnableTransactionManagement -@Slf4j -public class DisposeTaskMapperTest { - @Autowired - private ObjectMapper objMapper; - - @Resource - private DisposeTaskMapper disposeTaskMapper; - - - @Test - public void getAllDisposeTask() throws JsonProcessingException { - List dp = disposeTaskMapper.getAllDisposeTask(); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dp)); - - Assert.assertNotEquals(dp.size(), 0); - } - -} diff --git a/src/test/java/com/cmcc/hy/phoenix/mapper/UserAccountMapperTest.java b/src/test/java/com/cmcc/hy/phoenix/mapper/UserAccountMapperTest.java deleted file mode 100644 index ffb39d1f..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/mapper/UserAccountMapperTest.java +++ /dev/null @@ -1,78 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.pojo.entity.UserAccount; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.extern.slf4j.Slf4j; -import org.junit.Assert; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; -import tk.mybatis.mapper.entity.Example; - -import javax.annotation.Resource; -import java.util.List; - -@RunWith(SpringRunner.class) -@SpringBootTest -@Slf4j -public class UserAccountMapperTest { - - @Autowired - private ObjectMapper objMapper; - - @Resource - private UserAccountMapper userAccountMapper; - - @Test - public void getUserByNameUsedDefaultMapper() throws JsonProcessingException { - - Example exp = new Example(UserAccount.class); - exp.createCriteria().andEqualTo("username", "admin"); - - List users = userAccountMapper.selectByExample(exp); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(users)); - - Assert.assertEquals(users.size(), 1); - } - - @Test - public void getUserByName() throws JsonProcessingException { - UserAccount user = userAccountMapper.getUserByName("admin"); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(user)); - - Assert.assertNotNull(user); - } - - @Test - public void lockUser() throws JsonProcessingException { - userAccountMapper.lockUserAccount("admin"); - - UserAccount user = userAccountMapper.getUserByName("admin"); - Assert.assertEquals(new Long(user.getStatus()), new Long(ConstValue.UserAccountStatus.LOCKED)); - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(user)); - } - - @Test - public void unlockUser() throws JsonProcessingException { - userAccountMapper.unlockUserAccount("admin"); - - UserAccount user = userAccountMapper.getUserByName("admin"); - Assert.assertEquals(new Long(user.getStatus()), new Long(ConstValue.UserAccountStatus.NORMAL)); - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(user)); - } - - @Test - public void refreshLoginTime() throws JsonProcessingException { - userAccountMapper.refreshLoginTime("admin"); - - UserAccount user = userAccountMapper.getUserByName("admin"); - Assert.assertNotNull(user); - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(user)); - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/mapper/UserMappTest.java b/src/test/java/com/cmcc/hy/phoenix/mapper/UserMappTest.java deleted file mode 100644 index 66c0a7f6..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/mapper/UserMappTest.java +++ /dev/null @@ -1,106 +0,0 @@ -package com.cmcc.hy.phoenix.mapper; - -import java.util.List; - -import javax.annotation.Resource; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -import com.cmcc.hy.phoenix.pojo.entity.User; -import com.github.pagehelper.PageHelper; -import com.github.pagehelper.PageInfo; -import com.google.common.collect.Lists; - -import junit.framework.TestCase; -import lombok.extern.slf4j.Slf4j; -import tk.mybatis.mapper.entity.Example; -import tk.mybatis.mapper.entity.Example.Criteria; - -/** - * - * - * @author phoenix - * @date 2020年2月10日 - */ -@RunWith(SpringRunner.class) -@SpringBootTest -@Slf4j -public class UserMappTest { - - @Resource - private UserMapper userMapper; - - @Test - public void test() { - // insert - User user = User.builder().name("phoenix").phoneNumber("18867101080").email("mail").status(1).password("pwd") - .salt("salt").build(); - int res = userMapper.insert(user); - TestCase.assertTrue(res > 0); - log.info("insert return primary key id = {}", user.getId()); - // read - User readUser = userMapper.selectByPrimaryKey(user.getId()); - TestCase.assertEquals("phoenix", readUser.getName()); - // update - readUser.setSalt("updateSalt"); - userMapper.updateByPrimaryKey(readUser); - readUser = userMapper.selectByPrimaryKey(user.getId()); - TestCase.assertEquals("updateSalt", readUser.getSalt()); - // delete - userMapper.deleteByPrimaryKey(user.getId()); - // read - readUser = userMapper.selectByPrimaryKey(user.getId()); - TestCase.assertNull(readUser); - } - - @Test - public void testBatchInsert() { - // batch insert - List userList = Lists.newArrayList(); - for (int i = 0; i < 10; i++) { - User user = User.builder().name("phoenix" + i).phoneNumber("1886710108" + i).email("mail" + i).status(1) - .password("pwd" + i).salt("salt" + i).build(); - userList.add(user); - } - int res = userMapper.insertList(userList); - System.out.println("批量插入返回 " + res); - } - - @Test - public void testReadCondition() { - // 条件查询,这里用example和condition都可以 - Example example = new Example(User.class); - Criteria c = example.createCriteria(); - c.andEqualTo("name", "phoenix1"); - PageInfo list = PageHelper.startPage(0 * 2, 2).setOrderBy("name asc") - .doSelectPageInfo(() -> userMapper.selectByExample(example)); - System.out.println("条件查询返回list " + list.getList()); - - } - - @Test - public void testPage() { - int pageSize = 2; - PageInfo list = PageHelper.startPage(0 * pageSize, 2).setOrderBy("name asc") - .doSelectPageInfo(() -> userMapper.selectAll()); - System.out.println("列表查询 " + list.getList()); - System.out.println("页码 " + list.getPageNum()); - System.out.println("页大小 " + list.getPageSize()); - - list = PageHelper.startPage(1 * pageSize, 2).setOrderBy("name asc") - .doSelectPageInfo(() -> userMapper.selectAll()); - System.out.println("列表查询 " + list.getList()); - System.out.println("页码 " + list.getPageNum()); - System.out.println("页大小 " + list.getPageSize()); - } - - @Test - public void testComplicatedSql() { - int res = userMapper.countByName("phoenix1"); - System.out.println("复杂自定义SQL执行返回 "+res); - } - -} diff --git a/src/test/java/com/cmcc/hy/phoenix/redis/RedisClientTest.java b/src/test/java/com/cmcc/hy/phoenix/redis/RedisClientTest.java deleted file mode 100644 index 78447430..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/redis/RedisClientTest.java +++ /dev/null @@ -1,84 +0,0 @@ -package com.cmcc.hy.phoenix.redis; - -import java.util.Date; - -import javax.annotation.Resource; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.redisson.api.RedissonClient; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -import com.cmcc.hy.phoenix.pojo.entity.InfoCollection; - -import junit.framework.TestCase; -import lombok.extern.slf4j.Slf4j; - -/** - * - * - * @author phoenix - * @date 2020年2月8日 - */ -@RunWith(SpringRunner.class) -@SpringBootTest -@Slf4j -public class RedisClientTest { - - @Resource - private RedisClient redisClient; - - @Resource - private RedissonClient redissonClient; - - @Test - public void test() { - InfoCollection ic = InfoCollection.builder().username("chiwei").address("address").city("city") - .comment("comment").createTime(new Date()).district("district").email("email").id(1L) - .organization("org").phoneNumber("18867101080").build(); - redisClient.put("demokey", ic, 100); - InfoCollection info = redisClient.get("demokey", InfoCollection.class); - log.info("str = " + info.getPhoneNumber()); - } - - @Test - public void testLock() throws Exception { - // TODO Auto-generated method stub - String key = "locktest1111111111"; - boolean flag = redisClient.setLock(key); - TestCase.assertEquals(flag, true); - try { - Thread.sleep(5000); - } catch (InterruptedException e) { - e.printStackTrace(); - } - redisClient.del(key); - // TODO Auto-generated method stub - flag = redisClient.setLock(key); - TestCase.assertEquals(flag, true); - try { - Thread.sleep(5000); - } catch (InterruptedException e) { - e.printStackTrace(); - } - redisClient.del(key); - // TODO Auto-generated method stub - flag = redisClient.setLock(key); - TestCase.assertEquals(flag, true); - try { - Thread.sleep(5000); - } catch (InterruptedException e) { - e.printStackTrace(); - } - redisClient.del(key); - - } - - @Test - public void testDelLock() { - String key = "locktest1111111111"; - redisClient.del(key); - } - -} diff --git a/src/test/java/com/cmcc/hy/phoenix/service/AsyncServiceTest.java b/src/test/java/com/cmcc/hy/phoenix/service/AsyncServiceTest.java deleted file mode 100644 index c10b2ae0..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/service/AsyncServiceTest.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -/** - * - * - * @author phoenix - * @date 2020年2月10日 - */ -public class AsyncServiceTest { - -} diff --git a/src/test/java/com/cmcc/hy/phoenix/service/DisposeServiceTest.java b/src/test/java/com/cmcc/hy/phoenix/service/DisposeServiceTest.java deleted file mode 100644 index ea6ef240..00000000 --- a/src/test/java/com/cmcc/hy/phoenix/service/DisposeServiceTest.java +++ /dev/null @@ -1,72 +0,0 @@ -package com.cmcc.hy.phoenix.service; - -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.common.ErrorCode; -import com.cmcc.hy.phoenix.pojo.entity.DeviceCapacity; -import com.cmcc.hy.phoenix.pojo.entity.DisposeDevice; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.extern.slf4j.Slf4j; -import org.junit.Assert; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.transaction.annotation.EnableTransactionManagement; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.util.ArrayList; -import java.util.EnumMap; -import java.util.List; - -@RunWith(SpringRunner.class) -@SpringBootTest -@EnableTransactionManagement -@Slf4j -public class DisposeServiceTest { - - @Autowired - private ObjectMapper objMapper; - - @Resource - private DisposeDeviceManager dispDevMgr; - - @Test - public void addNewDisposeDevice() throws JsonProcessingException { - Long devId = -1L; - DisposeDevice dev = new DisposeDevice(); - List devCaps = new ArrayList<>(); - dev.setId(devId); - dev.setIpv4("192.168.88.1"); - dev.setType(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode()); - dev.setName("默认路由器"); - dev.setManufacturer("MERCURY"); - dev.setModel("MV305R"); - dev.setVersion("1.0.120"); - dev.setReadme("数据库测试垃圾数据"); - dev.setAreaCode(0); - dev.setDevCaps(devCaps); - - devCaps.add(new DeviceCapacity(0, 2048)); - devCaps.add(new DeviceCapacity(2)); - devCaps.add(new DeviceCapacity(3)); - - EnumMap retMap = dispDevMgr.addNewDisposeDevice(dev); - - ErrorCode err = retMap.keySet().iterator().next(); - - Assert.assertEquals(ErrorCode.ERR_OK, err); - Assert.assertNotEquals(devId, dev.getId()); - - log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dev)); - } - - @Test - public void ipSegmentProcess(){ - String ip = "1_192.168.3.2-192.168.3.5,2_192.168.5.2-192.168.5.10"; - - log.info(ip.replaceAll("\\d{1,}_", "")); - } -} diff --git a/src/test/java/com/cmcc/hy/phoenix/dptech/DPTechInterfaceTestCase.java b/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java similarity index 82% rename from src/test/java/com/cmcc/hy/phoenix/dptech/DPTechInterfaceTestCase.java rename to src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java index 49816765..3c019971 100644 --- a/src/test/java/com/cmcc/hy/phoenix/dptech/DPTechInterfaceTestCase.java +++ b/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java @@ -1,10 +1,10 @@ -package com.cmcc.hy.phoenix.dptech; +package com.cmcc.dptech; -import com.cmcc.hy.phoenix.common.ConstValue; -import com.cmcc.hy.phoenix.dispose.DeviceRouter; -import com.cmcc.hy.phoenix.dispose.DisposeProcess; -import com.dptech.umc.DetectionObjectDataForService; -import com.dptech.umc.ProtectionObjectDataForService; +import com.cmcc.common.ConstValue; +import com.cmcc.dispose.DeviceRouter; +import com.cmcc.dispose.DisposeProcess; +import com.dptech.dispose.DetectionObjectDataForService; +import com.dptech.dispose.ProtectionObjectDataForService; import org.junit.Assert; import org.junit.Test;