diff --git a/pom.xml b/pom.xml index dec70167..c7b5cb0b 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ - 3.0.0 + 4.0.0 com.cmcc.hy phoenix-boot diff --git a/src/main/java/com/cmcc/hy/phoenix/Interceptor/SoapPasswordCallbackHandler.java b/src/main/java/com/cmcc/hy/phoenix/Interceptor/SoapPasswordCallbackHandler.java index 0a09ba47..37d89533 100644 --- a/src/main/java/com/cmcc/hy/phoenix/Interceptor/SoapPasswordCallbackHandler.java +++ b/src/main/java/com/cmcc/hy/phoenix/Interceptor/SoapPasswordCallbackHandler.java @@ -12,6 +12,6 @@ public class SoapPasswordCallbackHandler implements CallbackHandler { @Override public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { WSPasswordCallback pc = (WSPasswordCallback) callbacks[0]; - pc.setPassword(ConstValue.SOAPWarpperConst.PASSWORD); + pc.setPassword(ConstValue.SOAPWrapperConst.PASSWORD); } } \ No newline at end of file diff --git a/src/main/java/com/cmcc/hy/phoenix/common/ConstValue.java b/src/main/java/com/cmcc/hy/phoenix/common/ConstValue.java index f76df2a6..b99f437b 100644 --- a/src/main/java/com/cmcc/hy/phoenix/common/ConstValue.java +++ b/src/main/java/com/cmcc/hy/phoenix/common/ConstValue.java @@ -1,13 +1,21 @@ package com.cmcc.hy.phoenix.common; public class ConstValue { - public class SOAPWarpperConst { + public class SOAPWrapperConst { public static final String NAMESPACE_URI = "http://10.88.77.15/UMC/service/AbnormalFlowCleaningService"; public static final String SERVICE_ADDRESS = "http://10.88.77.15/UMC/service/AbnormalFlowCleaningService?wsdl"; public static final String USER_NAME = "admin"; public static final String PASSWORD = "UMCAdministrator"; } + public class Protocol { + public static final int RESP_CMD_BASE = 10000; + public static final int VERSION = 1; + public static final int CRYPTO_NONE = 0; + public static final int CRYPTO_BASE64 = 1; + public static final int CRYPTO_AES256 = 2; + } + public enum DisposeDevice { DPTECH_UMC, HAOHAN_PLATFORM; } @@ -27,6 +35,8 @@ public class ConstValue { ERR_INPUTFORMAT (8, "输入信息格式有误"), ERR_INPUTMISS (9, "缺少必要输入信息"), ERR_PERMISSION (10, "操作员权限不足"), + ERR_REQTIMEOUT (11, "请求超时"), + ERR_PARAMS (12, "参数错误"), ; private int errno; diff --git a/src/main/java/com/cmcc/hy/phoenix/controller/ProtocolController.java b/src/main/java/com/cmcc/hy/phoenix/controller/ProtocolController.java index 534bc9af..869896b8 100644 --- a/src/main/java/com/cmcc/hy/phoenix/controller/ProtocolController.java +++ b/src/main/java/com/cmcc/hy/phoenix/controller/ProtocolController.java @@ -2,6 +2,7 @@ package com.cmcc.hy.phoenix.controller; import javax.annotation.Resource; +import com.cmcc.hy.phoenix.common.ConstValue; import com.cmcc.hy.phoenix.help.GitInformation; import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; import com.cmcc.hy.phoenix.pojo.vo.Resp; @@ -37,8 +38,6 @@ public class ProtocolController { @Resource private GitInformation gitInfo; - private final int RESP_CMD_BASE = 10000; - /** * * @return @@ -53,7 +52,7 @@ public class ProtocolController { log.info("请求参数 {}", mr); if(mr == null) { - return ProtocolResp.result(Resp.PARAM_ERROR); + return ProtocolResp.result(ConstValue.ErrorCode.ERR_PARAMS); } try { @@ -69,11 +68,6 @@ public class ProtocolController { return ProtocolResp.result(Resp.SYSTEM_ERROR); } - return ProtocolResp.builder().cmdId(mr.getCmdId() + RESP_CMD_BASE) - .ver(mr.getVer()) - .cryptoType(mr.getCryptoType()) - .timeStamp(System.currentTimeMillis()) - .code(Resp.SUCCESS.getCode()) - .msgContent(msgCtx).build(); + return ProtocolResp.result(ConstValue.ErrorCode.ERR_OK, mr.getCmdId(), msgCtx); } } diff --git a/src/main/java/com/cmcc/hy/phoenix/dispose/DptechUMC.java b/src/main/java/com/cmcc/hy/phoenix/dispose/DptechUMC.java index 8ed0521e..4ce4a37f 100644 --- a/src/main/java/com/cmcc/hy/phoenix/dispose/DptechUMC.java +++ b/src/main/java/com/cmcc/hy/phoenix/dispose/DptechUMC.java @@ -4,7 +4,6 @@ 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.DetectionObjectDataForService; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import org.apache.cxf.jaxws.JaxWsProxyFactoryBean; @@ -49,7 +48,7 @@ public class DptechUMC implements DisposeProcess { public DptechUMC() { JaxWsProxyFactoryBean jaxWsProxyFactoryBean = new JaxWsProxyFactoryBean(); jaxWsProxyFactoryBean.setServiceClass(AbnormalFlowCleaningServicePortType.class); - jaxWsProxyFactoryBean.setAddress(ConstValue.SOAPWarpperConst.NAMESPACE_URI); + jaxWsProxyFactoryBean.setAddress(ConstValue.SOAPWrapperConst.NAMESPACE_URI); //WS-Security Head Map outProps = new HashMap(); diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapper.java index 38b59c6e..e5b9a90d 100644 --- a/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapper.java +++ b/src/main/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapper.java @@ -19,5 +19,9 @@ public interface DisposeDeviceMapper extends Mapper, * * @return the all */ - List getAll(); + List getAllDisposeDevice(); + + int addNewDisposeDevice(DisposeDevice dev); + + int updateDisposeDeviceById(); } diff --git a/src/main/java/com/cmcc/hy/phoenix/mapper/UserAccountMapper.java b/src/main/java/com/cmcc/hy/phoenix/mapper/UserAccountMapper.java new file mode 100644 index 00000000..cd741184 --- /dev/null +++ b/src/main/java/com/cmcc/hy/phoenix/mapper/UserAccountMapper.java @@ -0,0 +1,14 @@ +package com.cmcc.hy.phoenix.mapper; + +import com.cmcc.hy.phoenix.pojo.entity.UserAccount; +import tk.mybatis.mapper.common.IdsMapper; +import tk.mybatis.mapper.common.Mapper; +import tk.mybatis.mapper.common.MySqlMapper; + +import java.util.List; + +public interface UserAccountMapper extends Mapper, + IdsMapper, MySqlMapper { + + List getUserByName(String name); +} 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 index 398845e1..0fb84ecf 100644 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/dto/ProtocolDTO.java +++ b/src/main/java/com/cmcc/hy/phoenix/pojo/dto/ProtocolDTO.java @@ -45,5 +45,15 @@ public class ProtocolDTO { @ApiModelProperty(value="服务器返回状态码", required = false, example = "200") private int code; + + public Boolean IsRequestTimeout() { + Long timeDiff = System.currentTimeMillis() - this.timeStamp; + + if (timeDiff > 0 && timeDiff <= 3000) { + return true; + } + + return true; + } } 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 new file mode 100644 index 00000000..71fa80c1 --- /dev/null +++ b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DeviceCapacity.java @@ -0,0 +1,48 @@ +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; +} 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 index 0868dada..030deb8c 100644 --- a/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeDevice.java +++ b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/DisposeDevice.java @@ -2,10 +2,14 @@ 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. @@ -17,7 +21,14 @@ import java.io.Serializable; @AllArgsConstructor @Builder @Table(name = "dispose_device") +@NameStyle(Style.normal) public class DisposeDevice implements Serializable { + + /** + * The constant serialVersionUID. + */ + private static final long serialVersionUID = 1L; + /** * 设备唯一标识符 */ @@ -69,4 +80,17 @@ public class DisposeDevice implements Serializable { * 备注 */ private String readme; + + + /** + * 能力设备支持的能力列表 + */ + @Transient + private List devCaps; + + /** + * 处置设备支持的处置IP,从处置设备获取 + */ + @Transient + private List disposeIp; } 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 new file mode 100644 index 00000000..ed0baaea --- /dev/null +++ b/src/main/java/com/cmcc/hy/phoenix/pojo/entity/UserAccount.java @@ -0,0 +1,67 @@ +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 Integer pwdErrTimes; + + /** + * 账户锁定时间 + */ + private String lockTime; + + /** + * 账户状态 + */ + private Integer status; +} diff --git a/src/main/java/com/cmcc/hy/phoenix/task/MyTask.java b/src/main/java/com/cmcc/hy/phoenix/task/MyTask.java index 998c95ec..c96a0088 100644 --- a/src/main/java/com/cmcc/hy/phoenix/task/MyTask.java +++ b/src/main/java/com/cmcc/hy/phoenix/task/MyTask.java @@ -25,7 +25,7 @@ import lombok.extern.slf4j.Slf4j; /** * 轻量级定时任务 - * + * * @author phoenix * @date 2020年2月4日 */ @@ -84,47 +84,47 @@ public class MyTask { * 定时请求是否有新文件更新 * 威胁情报文件下载更新示例 */ - @Async("bizExecutor") - @Scheduled(cron = "0/5 * * * * ?") - public void threatInfoHttpReq() { - log.info("定时请求威胁情报,检测是否有文件更新"); - Map header = Maps.newHashMap(); - header.put("HY-AUTH-KEY", myConfig.getThreatInfoKey()); - String str = Http.get(myConfig.getThreatInfoVersionUrl(), header); - log.info("接口响应数据 {}", str); - JSONObject json = JSON.parseObject(str); - String status = json.getString("status"); - int maxVersion = -1; - if ("0".equals(status)) { - JSONArray ja = JSON.parseArray(json.getString("result")); - log.info("result列表数据 {}", ja); - for (int i = 0; i < ja.size(); i++) { - JSONObject eachJson = ja.getJSONObject(i); - String type = eachJson.getString("type"); - if ("1".equals(type)) { - int version = Integer.parseInt(eachJson.getString("version")); - if (version > maxVersion) { - maxVersion = version; - } - } - } - // 判断接口获得最大version是否和当前内存一致,决定是否更新文件 - if (maxVersion > GlobalVar.MAX_THREAT_INFO_VERSION) { - GlobalVar.MAX_THREAT_INFO_VERSION = maxVersion; - // 下载文件更新 - log.info("下载文件更新"); - Map body = Maps.newHashMap(); - body.put("version", GlobalVar.MAX_THREAT_INFO_VERSION); - body.put("type", GlobalVar.THREAT_INFO_TYPE); - String downFileRes = Http.postForm(myConfig.getThreatInfoDownload(), header, body); - List threatInfo = Utils.splitStr2List(downFileRes, "\n"); - log.info("威胁情报数据量 {}",threatInfo.size()); - log.info("下载的文件内容 {}", StringUtils.abbreviate(downFileRes, 1000)); - //将自身系统内的威胁情报变量替换成上述读取的数据,达到威胁情报数据更新的效果 - } +// @Async("bizExecutor") +// @Scheduled(cron = "0/5 * * * * ?") +// public void threatInfoHttpReq() { +// log.info("定时请求威胁情报,检测是否有文件更新"); +// Map header = Maps.newHashMap(); +// header.put("HY-AUTH-KEY", myConfig.getThreatInfoKey()); +// String str = Http.get(myConfig.getThreatInfoVersionUrl(), header); +// log.info("接口响应数据 {}", str); +// JSONObject json = JSON.parseObject(str); +// String status = json.getString("status"); +// int maxVersion = -1; +// if ("0".equals(status)) { +// JSONArray ja = JSON.parseArray(json.getString("result")); +// log.info("result列表数据 {}", ja); +// for (int i = 0; i < ja.size(); i++) { +// JSONObject eachJson = ja.getJSONObject(i); +// String type = eachJson.getString("type"); +// if ("1".equals(type)) { +// int version = Integer.parseInt(eachJson.getString("version")); +// if (version > maxVersion) { +// maxVersion = version; +// } +// } +// } +// // 判断接口获得最大version是否和当前内存一致,决定是否更新文件 +// if (maxVersion > GlobalVar.MAX_THREAT_INFO_VERSION) { +// GlobalVar.MAX_THREAT_INFO_VERSION = maxVersion; +// // 下载文件更新 +// log.info("下载文件更新"); +// Map body = Maps.newHashMap(); +// body.put("version", GlobalVar.MAX_THREAT_INFO_VERSION); +// body.put("type", GlobalVar.THREAT_INFO_TYPE); +// String downFileRes = Http.postForm(myConfig.getThreatInfoDownload(), header, body); +// List threatInfo = Utils.splitStr2List(downFileRes, "\n"); +// log.info("威胁情报数据量 {}",threatInfo.size()); +// log.info("下载的文件内容 {}", StringUtils.abbreviate(downFileRes, 1000)); +// //将自身系统内的威胁情报变量替换成上述读取的数据,达到威胁情报数据更新的效果 +// } +// +// } - } - - } +// } } diff --git a/src/main/java/com/cmcc/hy/phoenix/vo/ProtocolResp.java b/src/main/java/com/cmcc/hy/phoenix/vo/ProtocolResp.java index 2de19c1b..3ba04f6d 100644 --- a/src/main/java/com/cmcc/hy/phoenix/vo/ProtocolResp.java +++ b/src/main/java/com/cmcc/hy/phoenix/vo/ProtocolResp.java @@ -1,5 +1,6 @@ package com.cmcc.hy.phoenix.vo; +import com.cmcc.hy.phoenix.common.ConstValue; import com.cmcc.hy.phoenix.pojo.vo.Resp; import io.swagger.annotations.ApiModelProperty; import lombok.Builder; @@ -51,7 +52,42 @@ public class ProtocolResp { return ProtocolResp.builder().code(resp.getCode()).msgContent(resp.getMsg()).build(); } - public static ProtocolResp result(Resp resp, ProtocolResp obj) { - return ProtocolResp.builder().cmdId(obj.cmdId).code(Resp.SUCCESS.getCode()).msgContent(obj.msgContent).build(); + public static ProtocolResp result(ConstValue.ErrorCode err) { + int code = Resp.SUCCESS.getCode(); + + if(err.getCode() != 0) { + code = 1000 + err.getCode(); + } + + return ProtocolResp.builder() + .ver(ConstValue.Protocol.VERSION) + .cryptoType(ConstValue.Protocol.CRYPTO_NONE) + .code(code) + .msgContent(err.getMsg()).build(); + } + + public static ProtocolResp result(ConstValue.ErrorCode err, Integer cmdId, String respMsg) { + int code = Resp.SUCCESS.getCode(); + + if(err.getCode() != 0) { + code = 1000 + err.getCode(); + } + + return result(err, cmdId, respMsg, ConstValue.Protocol.CRYPTO_NONE); + } + + public static ProtocolResp result(ConstValue.ErrorCode err, Integer cmdId, String respMsg, Integer crypto) { + int code = Resp.SUCCESS.getCode(); + + if(err.getCode() != 0) { + code = 1000 + err.getCode(); + } + + return ProtocolResp.builder() + .cmdId(cmdId + ConstValue.Protocol.RESP_CMD_BASE) + .ver(ConstValue.Protocol.VERSION) + .cryptoType(crypto) + .code(code) + .msgContent(respMsg).build(); } } diff --git a/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMCResponse.java new file mode 100644 index 00000000..cc893cb3 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modDnsSecDomainGlobalV4ForUMCResponse") +public class ModDnsSecDomainGlobalV4ForUMCResponse { + + @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/umc/ModDnsSipCustomV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMC.java new file mode 100644 index 00000000..5a0797f6 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMC.java @@ -0,0 +1,204 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sipstart" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sipend" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "name", + "sipstart", + "sipend", + "protectthreshold", + "action" +}) +@XmlRootElement(name = "modDnsSipCustomV4ForUMC") +public class ModDnsSipCustomV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String sipstart; + @XmlElement(required = true, nillable = true) + protected String sipend; + @XmlElement(required = true, nillable = true) + protected String protectthreshold; + @XmlElement(required = true, nillable = true) + protected String action; + + /** + * ȡ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; + } + + /** + * ȡ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; + } + + /** + * ȡsipstartԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSipstart() { + return sipstart; + } + + /** + * sipstartԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSipstart(String value) { + this.sipstart = value; + } + + /** + * ȡsipendԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSipend() { + return sipend; + } + + /** + * sipendԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSipend(String value) { + this.sipend = value; + } + + /** + * ȡprotectthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getProtectthreshold() { + return protectthreshold; + } + + /** + * protectthresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProtectthreshold(String value) { + this.protectthreshold = value; + } + + /** + * ȡactionԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAction() { + return action; + } + + /** + * actionԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAction(String value) { + this.action = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMCResponse.java new file mode 100644 index 00000000..054d029f --- /dev/null +++ b/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modDnsSipCustomV4ForUMCResponse") +public class ModDnsSipCustomV4ForUMCResponse { + + @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/umc/ModDnsSipGlobalV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMC.java new file mode 100644 index 00000000..e3b776e7 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMC.java @@ -0,0 +1,148 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "name", + "protectthreshold", + "action" +}) +@XmlRootElement(name = "modDnsSipGlobalV4ForUMC") +public class ModDnsSipGlobalV4ForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String protectthreshold; + @XmlElement(required = true, nillable = true) + protected String action; + + /** + * ȡ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; + } + + /** + * ȡ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; + } + + /** + * ȡprotectthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getProtectthreshold() { + return protectthreshold; + } + + /** + * protectthresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProtectthreshold(String value) { + this.protectthreshold = value; + } + + /** + * ȡactionԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAction() { + return action; + } + + /** + * actionԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAction(String value) { + this.action = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMCResponse.java new file mode 100644 index 00000000..69fcb421 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modDnsSipGlobalV4ForUMCResponse") +public class ModDnsSipGlobalV4ForUMCResponse { + + @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/umc/ModFingerprintIcmpForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMC.java new file mode 100644 index 00000000..d9c9a937 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMC.java @@ -0,0 +1,736 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "name", + "keytype1", + "keyoffset1", + "keylength1", + "ip1", + "mask1", + "enable1", + "custom1", + "keytype2", + "keyoffset2", + "keylength2", + "ip2", + "mask2", + "enable2", + "custom2", + "keytype3", + "keyoffset3", + "keylength3", + "ip3", + "mask3", + "enable3", + "custom3", + "threshold", + "action" +}) +@XmlRootElement(name = "modFingerprintIcmpForUMC") +public class ModFingerprintIcmpForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String keytype1; + @XmlElement(required = true, nillable = true) + protected String keyoffset1; + @XmlElement(required = true, nillable = true) + protected String keylength1; + @XmlElement(required = true, nillable = true) + protected String ip1; + @XmlElement(required = true, nillable = true) + protected String mask1; + @XmlElement(required = true, nillable = true) + protected String enable1; + @XmlElement(required = true, nillable = true) + protected String custom1; + @XmlElement(required = true, nillable = true) + protected String keytype2; + @XmlElement(required = true, nillable = true) + protected String keyoffset2; + @XmlElement(required = true, nillable = true) + protected String keylength2; + @XmlElement(required = true, nillable = true) + protected String ip2; + @XmlElement(required = true, nillable = true) + protected String mask2; + @XmlElement(required = true, nillable = true) + protected String enable2; + @XmlElement(required = true, nillable = true) + protected String custom2; + @XmlElement(required = true, nillable = true) + protected String keytype3; + @XmlElement(required = true, nillable = true) + protected String keyoffset3; + @XmlElement(required = true, nillable = true) + protected String keylength3; + @XmlElement(required = true, nillable = true) + protected String ip3; + @XmlElement(required = true, nillable = true) + protected String mask3; + @XmlElement(required = true, nillable = true) + protected String enable3; + @XmlElement(required = true, nillable = true) + protected String custom3; + @XmlElement(required = true, nillable = true) + protected String threshold; + @XmlElement(required = true, nillable = true) + protected String action; + + /** + * ȡ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; + } + + /** + * ȡ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; + } + + /** + * ȡkeytype1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype1() { + return keytype1; + } + + /** + * keytype1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype1(String value) { + this.keytype1 = value; + } + + /** + * ȡkeyoffset1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset1() { + return keyoffset1; + } + + /** + * keyoffset1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset1(String value) { + this.keyoffset1 = value; + } + + /** + * ȡkeylength1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength1() { + return keylength1; + } + + /** + * keylength1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength1(String value) { + this.keylength1 = value; + } + + /** + * ȡip1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp1() { + return ip1; + } + + /** + * ip1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp1(String value) { + this.ip1 = value; + } + + /** + * ȡmask1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask1() { + return mask1; + } + + /** + * mask1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask1(String value) { + this.mask1 = value; + } + + /** + * ȡenable1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable1() { + return enable1; + } + + /** + * enable1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable1(String value) { + this.enable1 = value; + } + + /** + * ȡcustom1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom1() { + return custom1; + } + + /** + * custom1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom1(String value) { + this.custom1 = value; + } + + /** + * ȡkeytype2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype2() { + return keytype2; + } + + /** + * keytype2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype2(String value) { + this.keytype2 = value; + } + + /** + * ȡkeyoffset2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset2() { + return keyoffset2; + } + + /** + * keyoffset2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset2(String value) { + this.keyoffset2 = value; + } + + /** + * ȡkeylength2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength2() { + return keylength2; + } + + /** + * keylength2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength2(String value) { + this.keylength2 = value; + } + + /** + * ȡip2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp2() { + return ip2; + } + + /** + * ip2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp2(String value) { + this.ip2 = value; + } + + /** + * ȡmask2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask2() { + return mask2; + } + + /** + * mask2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask2(String value) { + this.mask2 = value; + } + + /** + * ȡenable2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable2() { + return enable2; + } + + /** + * enable2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable2(String value) { + this.enable2 = value; + } + + /** + * ȡcustom2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom2() { + return custom2; + } + + /** + * custom2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom2(String value) { + this.custom2 = value; + } + + /** + * ȡkeytype3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype3() { + return keytype3; + } + + /** + * keytype3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype3(String value) { + this.keytype3 = value; + } + + /** + * ȡkeyoffset3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset3() { + return keyoffset3; + } + + /** + * keyoffset3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset3(String value) { + this.keyoffset3 = value; + } + + /** + * ȡkeylength3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength3() { + return keylength3; + } + + /** + * keylength3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength3(String value) { + this.keylength3 = value; + } + + /** + * ȡip3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp3() { + return ip3; + } + + /** + * ip3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp3(String value) { + this.ip3 = value; + } + + /** + * ȡmask3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask3() { + return mask3; + } + + /** + * mask3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask3(String value) { + this.mask3 = value; + } + + /** + * ȡenable3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable3() { + return enable3; + } + + /** + * enable3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable3(String value) { + this.enable3 = value; + } + + /** + * ȡcustom3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom3() { + return custom3; + } + + /** + * custom3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom3(String value) { + this.custom3 = value; + } + + /** + * ȡthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getThreshold() { + return threshold; + } + + /** + * thresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setThreshold(String value) { + this.threshold = value; + } + + /** + * ȡactionԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAction() { + return action; + } + + /** + * actionԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAction(String value) { + this.action = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMCResponse.java new file mode 100644 index 00000000..451ea619 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modFingerprintIcmpForUMCResponse") +public class ModFingerprintIcmpForUMCResponse { + + @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/umc/ModFingerprintOtherForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintOtherForUMC.java new file mode 100644 index 00000000..7ab9d11b --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintOtherForUMC.java @@ -0,0 +1,736 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "name", + "keytype1", + "keyoffset1", + "keylength1", + "ip1", + "mask1", + "enable1", + "custom1", + "keytype2", + "keyoffset2", + "keylength2", + "ip2", + "mask2", + "enable2", + "custom2", + "keytype3", + "keyoffset3", + "keylength3", + "ip3", + "mask3", + "enable3", + "custom3", + "threshold", + "action" +}) +@XmlRootElement(name = "modFingerprintOtherForUMC") +public class ModFingerprintOtherForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String keytype1; + @XmlElement(required = true, nillable = true) + protected String keyoffset1; + @XmlElement(required = true, nillable = true) + protected String keylength1; + @XmlElement(required = true, nillable = true) + protected String ip1; + @XmlElement(required = true, nillable = true) + protected String mask1; + @XmlElement(required = true, nillable = true) + protected String enable1; + @XmlElement(required = true, nillable = true) + protected String custom1; + @XmlElement(required = true, nillable = true) + protected String keytype2; + @XmlElement(required = true, nillable = true) + protected String keyoffset2; + @XmlElement(required = true, nillable = true) + protected String keylength2; + @XmlElement(required = true, nillable = true) + protected String ip2; + @XmlElement(required = true, nillable = true) + protected String mask2; + @XmlElement(required = true, nillable = true) + protected String enable2; + @XmlElement(required = true, nillable = true) + protected String custom2; + @XmlElement(required = true, nillable = true) + protected String keytype3; + @XmlElement(required = true, nillable = true) + protected String keyoffset3; + @XmlElement(required = true, nillable = true) + protected String keylength3; + @XmlElement(required = true, nillable = true) + protected String ip3; + @XmlElement(required = true, nillable = true) + protected String mask3; + @XmlElement(required = true, nillable = true) + protected String enable3; + @XmlElement(required = true, nillable = true) + protected String custom3; + @XmlElement(required = true, nillable = true) + protected String threshold; + @XmlElement(required = true, nillable = true) + protected String action; + + /** + * ȡ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; + } + + /** + * ȡ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; + } + + /** + * ȡkeytype1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype1() { + return keytype1; + } + + /** + * keytype1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype1(String value) { + this.keytype1 = value; + } + + /** + * ȡkeyoffset1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset1() { + return keyoffset1; + } + + /** + * keyoffset1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset1(String value) { + this.keyoffset1 = value; + } + + /** + * ȡkeylength1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength1() { + return keylength1; + } + + /** + * keylength1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength1(String value) { + this.keylength1 = value; + } + + /** + * ȡip1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp1() { + return ip1; + } + + /** + * ip1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp1(String value) { + this.ip1 = value; + } + + /** + * ȡmask1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask1() { + return mask1; + } + + /** + * mask1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask1(String value) { + this.mask1 = value; + } + + /** + * ȡenable1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable1() { + return enable1; + } + + /** + * enable1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable1(String value) { + this.enable1 = value; + } + + /** + * ȡcustom1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom1() { + return custom1; + } + + /** + * custom1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom1(String value) { + this.custom1 = value; + } + + /** + * ȡkeytype2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype2() { + return keytype2; + } + + /** + * keytype2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype2(String value) { + this.keytype2 = value; + } + + /** + * ȡkeyoffset2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset2() { + return keyoffset2; + } + + /** + * keyoffset2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset2(String value) { + this.keyoffset2 = value; + } + + /** + * ȡkeylength2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength2() { + return keylength2; + } + + /** + * keylength2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength2(String value) { + this.keylength2 = value; + } + + /** + * ȡip2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp2() { + return ip2; + } + + /** + * ip2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp2(String value) { + this.ip2 = value; + } + + /** + * ȡmask2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask2() { + return mask2; + } + + /** + * mask2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask2(String value) { + this.mask2 = value; + } + + /** + * ȡenable2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable2() { + return enable2; + } + + /** + * enable2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable2(String value) { + this.enable2 = value; + } + + /** + * ȡcustom2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom2() { + return custom2; + } + + /** + * custom2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom2(String value) { + this.custom2 = value; + } + + /** + * ȡkeytype3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype3() { + return keytype3; + } + + /** + * keytype3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype3(String value) { + this.keytype3 = value; + } + + /** + * ȡkeyoffset3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset3() { + return keyoffset3; + } + + /** + * keyoffset3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset3(String value) { + this.keyoffset3 = value; + } + + /** + * ȡkeylength3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength3() { + return keylength3; + } + + /** + * keylength3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength3(String value) { + this.keylength3 = value; + } + + /** + * ȡip3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp3() { + return ip3; + } + + /** + * ip3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp3(String value) { + this.ip3 = value; + } + + /** + * ȡmask3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask3() { + return mask3; + } + + /** + * mask3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask3(String value) { + this.mask3 = value; + } + + /** + * ȡenable3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable3() { + return enable3; + } + + /** + * enable3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable3(String value) { + this.enable3 = value; + } + + /** + * ȡcustom3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom3() { + return custom3; + } + + /** + * custom3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom3(String value) { + this.custom3 = value; + } + + /** + * ȡthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getThreshold() { + return threshold; + } + + /** + * thresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setThreshold(String value) { + this.threshold = value; + } + + /** + * ȡactionԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAction() { + return action; + } + + /** + * actionԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAction(String value) { + this.action = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModFingerprintOtherForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintOtherForUMCResponse.java new file mode 100644 index 00000000..5672de24 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintOtherForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modFingerprintOtherForUMCResponse") +public class ModFingerprintOtherForUMCResponse { + + @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/umc/ModFingerprintTcpForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintTcpForUMC.java new file mode 100644 index 00000000..8c7d9cac --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintTcpForUMC.java @@ -0,0 +1,904 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="port1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="flag1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="port2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="flag2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="port3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="flag3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "name", + "keytype1", + "keyoffset1", + "keylength1", + "port1", + "flag1", + "ip1", + "mask1", + "enable1", + "custom1", + "keytype2", + "keyoffset2", + "keylength2", + "port2", + "flag2", + "ip2", + "mask2", + "enable2", + "custom2", + "keytype3", + "keyoffset3", + "keylength3", + "port3", + "flag3", + "ip3", + "mask3", + "enable3", + "custom3", + "threshold", + "action" +}) +@XmlRootElement(name = "modFingerprintTcpForUMC") +public class ModFingerprintTcpForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String keytype1; + @XmlElement(required = true, nillable = true) + protected String keyoffset1; + @XmlElement(required = true, nillable = true) + protected String keylength1; + @XmlElement(required = true, nillable = true) + protected String port1; + @XmlElement(required = true, nillable = true) + protected String flag1; + @XmlElement(required = true, nillable = true) + protected String ip1; + @XmlElement(required = true, nillable = true) + protected String mask1; + @XmlElement(required = true, nillable = true) + protected String enable1; + @XmlElement(required = true, nillable = true) + protected String custom1; + @XmlElement(required = true, nillable = true) + protected String keytype2; + @XmlElement(required = true, nillable = true) + protected String keyoffset2; + @XmlElement(required = true, nillable = true) + protected String keylength2; + @XmlElement(required = true, nillable = true) + protected String port2; + @XmlElement(required = true, nillable = true) + protected String flag2; + @XmlElement(required = true, nillable = true) + protected String ip2; + @XmlElement(required = true, nillable = true) + protected String mask2; + @XmlElement(required = true, nillable = true) + protected String enable2; + @XmlElement(required = true, nillable = true) + protected String custom2; + @XmlElement(required = true, nillable = true) + protected String keytype3; + @XmlElement(required = true, nillable = true) + protected String keyoffset3; + @XmlElement(required = true, nillable = true) + protected String keylength3; + @XmlElement(required = true, nillable = true) + protected String port3; + @XmlElement(required = true, nillable = true) + protected String flag3; + @XmlElement(required = true, nillable = true) + protected String ip3; + @XmlElement(required = true, nillable = true) + protected String mask3; + @XmlElement(required = true, nillable = true) + protected String enable3; + @XmlElement(required = true, nillable = true) + protected String custom3; + @XmlElement(required = true, nillable = true) + protected String threshold; + @XmlElement(required = true, nillable = true) + protected String action; + + /** + * ȡ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; + } + + /** + * ȡ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; + } + + /** + * ȡkeytype1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype1() { + return keytype1; + } + + /** + * keytype1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype1(String value) { + this.keytype1 = value; + } + + /** + * ȡkeyoffset1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset1() { + return keyoffset1; + } + + /** + * keyoffset1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset1(String value) { + this.keyoffset1 = value; + } + + /** + * ȡkeylength1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength1() { + return keylength1; + } + + /** + * keylength1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength1(String value) { + this.keylength1 = value; + } + + /** + * ȡport1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPort1() { + return port1; + } + + /** + * port1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPort1(String value) { + this.port1 = value; + } + + /** + * ȡflag1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getFlag1() { + return flag1; + } + + /** + * flag1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFlag1(String value) { + this.flag1 = value; + } + + /** + * ȡip1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp1() { + return ip1; + } + + /** + * ip1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp1(String value) { + this.ip1 = value; + } + + /** + * ȡmask1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask1() { + return mask1; + } + + /** + * mask1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask1(String value) { + this.mask1 = value; + } + + /** + * ȡenable1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable1() { + return enable1; + } + + /** + * enable1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable1(String value) { + this.enable1 = value; + } + + /** + * ȡcustom1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom1() { + return custom1; + } + + /** + * custom1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom1(String value) { + this.custom1 = value; + } + + /** + * ȡkeytype2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype2() { + return keytype2; + } + + /** + * keytype2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype2(String value) { + this.keytype2 = value; + } + + /** + * ȡkeyoffset2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset2() { + return keyoffset2; + } + + /** + * keyoffset2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset2(String value) { + this.keyoffset2 = value; + } + + /** + * ȡkeylength2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength2() { + return keylength2; + } + + /** + * keylength2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength2(String value) { + this.keylength2 = value; + } + + /** + * ȡport2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPort2() { + return port2; + } + + /** + * port2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPort2(String value) { + this.port2 = value; + } + + /** + * ȡflag2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getFlag2() { + return flag2; + } + + /** + * flag2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFlag2(String value) { + this.flag2 = value; + } + + /** + * ȡip2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp2() { + return ip2; + } + + /** + * ip2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp2(String value) { + this.ip2 = value; + } + + /** + * ȡmask2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask2() { + return mask2; + } + + /** + * mask2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask2(String value) { + this.mask2 = value; + } + + /** + * ȡenable2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable2() { + return enable2; + } + + /** + * enable2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable2(String value) { + this.enable2 = value; + } + + /** + * ȡcustom2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom2() { + return custom2; + } + + /** + * custom2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom2(String value) { + this.custom2 = value; + } + + /** + * ȡkeytype3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype3() { + return keytype3; + } + + /** + * keytype3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype3(String value) { + this.keytype3 = value; + } + + /** + * ȡkeyoffset3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset3() { + return keyoffset3; + } + + /** + * keyoffset3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset3(String value) { + this.keyoffset3 = value; + } + + /** + * ȡkeylength3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength3() { + return keylength3; + } + + /** + * keylength3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength3(String value) { + this.keylength3 = value; + } + + /** + * ȡport3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPort3() { + return port3; + } + + /** + * port3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPort3(String value) { + this.port3 = value; + } + + /** + * ȡflag3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getFlag3() { + return flag3; + } + + /** + * flag3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFlag3(String value) { + this.flag3 = value; + } + + /** + * ȡip3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp3() { + return ip3; + } + + /** + * ip3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp3(String value) { + this.ip3 = value; + } + + /** + * ȡmask3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask3() { + return mask3; + } + + /** + * mask3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask3(String value) { + this.mask3 = value; + } + + /** + * ȡenable3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable3() { + return enable3; + } + + /** + * enable3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable3(String value) { + this.enable3 = value; + } + + /** + * ȡcustom3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom3() { + return custom3; + } + + /** + * custom3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom3(String value) { + this.custom3 = value; + } + + /** + * ȡthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getThreshold() { + return threshold; + } + + /** + * thresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setThreshold(String value) { + this.threshold = value; + } + + /** + * ȡactionԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAction() { + return action; + } + + /** + * actionԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAction(String value) { + this.action = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModFingerprintTcpForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintTcpForUMCResponse.java new file mode 100644 index 00000000..b1ca9da2 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintTcpForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modFingerprintTcpForUMCResponse") +public class ModFingerprintTcpForUMCResponse { + + @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/umc/ModFingerprintUdpForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintUdpForUMC.java new file mode 100644 index 00000000..f2d7c2d3 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintUdpForUMC.java @@ -0,0 +1,820 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="port1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="port2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="port3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "name", + "keytype1", + "keyoffset1", + "keylength1", + "port1", + "ip1", + "mask1", + "enable1", + "custom1", + "keytype2", + "keyoffset2", + "keylength2", + "port2", + "ip2", + "mask2", + "enable2", + "custom2", + "keytype3", + "keyoffset3", + "keylength3", + "port3", + "ip3", + "mask3", + "enable3", + "custom3", + "threshold", + "action" +}) +@XmlRootElement(name = "modFingerprintUdpForUMC") +public class ModFingerprintUdpForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String name; + @XmlElement(required = true, nillable = true) + protected String keytype1; + @XmlElement(required = true, nillable = true) + protected String keyoffset1; + @XmlElement(required = true, nillable = true) + protected String keylength1; + @XmlElement(required = true, nillable = true) + protected String port1; + @XmlElement(required = true, nillable = true) + protected String ip1; + @XmlElement(required = true, nillable = true) + protected String mask1; + @XmlElement(required = true, nillable = true) + protected String enable1; + @XmlElement(required = true, nillable = true) + protected String custom1; + @XmlElement(required = true, nillable = true) + protected String keytype2; + @XmlElement(required = true, nillable = true) + protected String keyoffset2; + @XmlElement(required = true, nillable = true) + protected String keylength2; + @XmlElement(required = true, nillable = true) + protected String port2; + @XmlElement(required = true, nillable = true) + protected String ip2; + @XmlElement(required = true, nillable = true) + protected String mask2; + @XmlElement(required = true, nillable = true) + protected String enable2; + @XmlElement(required = true, nillable = true) + protected String custom2; + @XmlElement(required = true, nillable = true) + protected String keytype3; + @XmlElement(required = true, nillable = true) + protected String keyoffset3; + @XmlElement(required = true, nillable = true) + protected String keylength3; + @XmlElement(required = true, nillable = true) + protected String port3; + @XmlElement(required = true, nillable = true) + protected String ip3; + @XmlElement(required = true, nillable = true) + protected String mask3; + @XmlElement(required = true, nillable = true) + protected String enable3; + @XmlElement(required = true, nillable = true) + protected String custom3; + @XmlElement(required = true, nillable = true) + protected String threshold; + @XmlElement(required = true, nillable = true) + protected String action; + + /** + * ȡ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; + } + + /** + * ȡ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; + } + + /** + * ȡkeytype1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype1() { + return keytype1; + } + + /** + * keytype1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype1(String value) { + this.keytype1 = value; + } + + /** + * ȡkeyoffset1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset1() { + return keyoffset1; + } + + /** + * keyoffset1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset1(String value) { + this.keyoffset1 = value; + } + + /** + * ȡkeylength1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength1() { + return keylength1; + } + + /** + * keylength1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength1(String value) { + this.keylength1 = value; + } + + /** + * ȡport1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPort1() { + return port1; + } + + /** + * port1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPort1(String value) { + this.port1 = value; + } + + /** + * ȡip1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp1() { + return ip1; + } + + /** + * ip1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp1(String value) { + this.ip1 = value; + } + + /** + * ȡmask1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask1() { + return mask1; + } + + /** + * mask1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask1(String value) { + this.mask1 = value; + } + + /** + * ȡenable1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable1() { + return enable1; + } + + /** + * enable1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable1(String value) { + this.enable1 = value; + } + + /** + * ȡcustom1Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom1() { + return custom1; + } + + /** + * custom1Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom1(String value) { + this.custom1 = value; + } + + /** + * ȡkeytype2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype2() { + return keytype2; + } + + /** + * keytype2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype2(String value) { + this.keytype2 = value; + } + + /** + * ȡkeyoffset2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset2() { + return keyoffset2; + } + + /** + * keyoffset2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset2(String value) { + this.keyoffset2 = value; + } + + /** + * ȡkeylength2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength2() { + return keylength2; + } + + /** + * keylength2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength2(String value) { + this.keylength2 = value; + } + + /** + * ȡport2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPort2() { + return port2; + } + + /** + * port2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPort2(String value) { + this.port2 = value; + } + + /** + * ȡip2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp2() { + return ip2; + } + + /** + * ip2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp2(String value) { + this.ip2 = value; + } + + /** + * ȡmask2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask2() { + return mask2; + } + + /** + * mask2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask2(String value) { + this.mask2 = value; + } + + /** + * ȡenable2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable2() { + return enable2; + } + + /** + * enable2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable2(String value) { + this.enable2 = value; + } + + /** + * ȡcustom2Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom2() { + return custom2; + } + + /** + * custom2Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom2(String value) { + this.custom2 = value; + } + + /** + * ȡkeytype3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeytype3() { + return keytype3; + } + + /** + * keytype3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeytype3(String value) { + this.keytype3 = value; + } + + /** + * ȡkeyoffset3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeyoffset3() { + return keyoffset3; + } + + /** + * keyoffset3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeyoffset3(String value) { + this.keyoffset3 = value; + } + + /** + * ȡkeylength3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getKeylength3() { + return keylength3; + } + + /** + * keylength3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKeylength3(String value) { + this.keylength3 = value; + } + + /** + * ȡport3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPort3() { + return port3; + } + + /** + * port3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPort3(String value) { + this.port3 = value; + } + + /** + * ȡip3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp3() { + return ip3; + } + + /** + * ip3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp3(String value) { + this.ip3 = value; + } + + /** + * ȡmask3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMask3() { + return mask3; + } + + /** + * mask3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMask3(String value) { + this.mask3 = value; + } + + /** + * ȡenable3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable3() { + return enable3; + } + + /** + * enable3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable3(String value) { + this.enable3 = value; + } + + /** + * ȡcustom3Եֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCustom3() { + return custom3; + } + + /** + * custom3Եֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCustom3(String value) { + this.custom3 = value; + } + + /** + * ȡthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getThreshold() { + return threshold; + } + + /** + * thresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setThreshold(String value) { + this.threshold = value; + } + + /** + * ȡactionԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAction() { + return action; + } + + /** + * actionԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAction(String value) { + this.action = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModFingerprintUdpForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintUdpForUMCResponse.java new file mode 100644 index 00000000..5198b2f5 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModFingerprintUdpForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modFingerprintUdpForUMCResponse") +public class ModFingerprintUdpForUMCResponse { + + @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/umc/ModifyDetectionObjectForUMC.java b/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMC.java new file mode 100644 index 00000000..102c25b5 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMC.java @@ -0,0 +1,130 @@ + +package com.dptech.umc; + +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"/>
+ *         <element name="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "detectionName", + "ipSegment", + "ipType", + "cleaningType" +}) +@XmlRootElement(name = "modifyDetectionObjectForUMC") +public class ModifyDetectionObjectForUMC { + + @XmlElement(required = true, nillable = true) + protected String detectionName; + @XmlElement(required = true, nillable = true) + protected String ipSegment; + protected int ipType; + protected int cleaningType; + + /** + * ȡ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; + } + + /** + * ȡipSegmentԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIpSegment() { + return ipSegment; + } + + /** + * ipSegmentԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIpSegment(String value) { + this.ipSegment = value; + } + + /** + * ȡipTypeԵֵ + * + */ + public int getIpType() { + return ipType; + } + + /** + * ipTypeԵֵ + * + */ + public void setIpType(int value) { + this.ipType = value; + } + + /** + * ȡcleaningTypeԵֵ + * + */ + public int getCleaningType() { + return cleaningType; + } + + /** + * cleaningTypeԵֵ + * + */ + public void setCleaningType(int value) { + this.cleaningType = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMCResponse.java b/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMCResponse.java new file mode 100644 index 00000000..52cca423 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modifyDetectionObjectForUMCResponse") +public class ModifyDetectionObjectForUMCResponse { + + @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/umc/ModifyProtectionObjectForUMC.java b/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMC.java new file mode 100644 index 00000000..403828a1 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMC.java @@ -0,0 +1,130 @@ + +package com.dptech.umc; + +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="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "protectionName", + "ipSegment", + "ipType", + "cleaningType" +}) +@XmlRootElement(name = "modifyProtectionObjectForUMC") +public class ModifyProtectionObjectForUMC { + + @XmlElement(required = true, nillable = true) + protected String protectionName; + @XmlElement(required = true, nillable = true) + protected String ipSegment; + protected int ipType; + protected int cleaningType; + + /** + * ȡ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; + } + + /** + * ȡipSegmentԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIpSegment() { + return ipSegment; + } + + /** + * ipSegmentԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIpSegment(String value) { + this.ipSegment = value; + } + + /** + * ȡipTypeԵֵ + * + */ + public int getIpType() { + return ipType; + } + + /** + * ipTypeԵֵ + * + */ + public void setIpType(int value) { + this.ipType = value; + } + + /** + * ȡcleaningTypeԵֵ + * + */ + public int getCleaningType() { + return cleaningType; + } + + /** + * cleaningTypeԵֵ + * + */ + public void setCleaningType(int value) { + this.cleaningType = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMCResponse.java b/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMCResponse.java new file mode 100644 index 00000000..87af0040 --- /dev/null +++ b/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "modifyProtectionObjectForUMCResponse") +public class ModifyProtectionObjectForUMCResponse { + + @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/umc/NtcRequestResultInfo.java b/src/main/java/com/dptech/umc/NtcRequestResultInfo.java new file mode 100644 index 00000000..38dfe39b --- /dev/null +++ b/src/main/java/com/dptech/umc/NtcRequestResultInfo.java @@ -0,0 +1,90 @@ + +package com.dptech.umc; + +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; + + +/** + *

NtcRequestResultInfo complex type Java ࡣ + * + *

ģʽƬָڴеԤݡ + * + *

+ * <complexType name="NtcRequestResultInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="resultInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="resultRetVal" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NtcRequestResultInfo", propOrder = { + "resultInfo", + "resultRetVal" +}) +public class NtcRequestResultInfo { + + @XmlElementRef(name = "resultInfo", namespace = "http://service.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement resultInfo; + protected Integer resultRetVal; + + /** + * ȡresultInfoԵֵ + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getResultInfo() { + return resultInfo; + } + + /** + * resultInfoԵֵ + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setResultInfo(JAXBElement value) { + this.resultInfo = value; + } + + /** + * ȡresultRetValԵֵ + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getResultRetVal() { + return resultRetVal; + } + + /** + * resultRetValԵֵ + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setResultRetVal(Integer value) { + this.resultRetVal = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ObjectFactory.java b/src/main/java/com/dptech/umc/ObjectFactory.java new file mode 100644 index 00000000..606c5434 --- /dev/null +++ b/src/main/java/com/dptech/umc/ObjectFactory.java @@ -0,0 +1,6496 @@ + +package com.dptech.umc; + +import javax.xml.bind.JAXBElement; +import javax.xml.bind.annotation.XmlElementDecl; +import javax.xml.bind.annotation.XmlRegistry; +import javax.xml.namespace.QName; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the com.dptech.umc package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _BlackAndWhiteListDataForServiceDipEndIp_QNAME = new QName("http://data.ntc.dp.com", "dipEndIp"); + private final static QName _BlackAndWhiteListDataForServiceDipStartIp_QNAME = new QName("http://data.ntc.dp.com", "dipStartIp"); + private final static QName _BlackAndWhiteListDataForServiceDipType_QNAME = new QName("http://data.ntc.dp.com", "dipType"); + private final static QName _BlackAndWhiteListDataForServiceHour_QNAME = new QName("http://data.ntc.dp.com", "hour"); + private final static QName _BlackAndWhiteListDataForServiceMinute_QNAME = new QName("http://data.ntc.dp.com", "minute"); + private final static QName _BlackAndWhiteListDataForServiceName_QNAME = new QName("http://data.ntc.dp.com", "name"); + private final static QName _BlackAndWhiteListDataForServiceProtectionType_QNAME = new QName("http://data.ntc.dp.com", "protectionType"); + private final static QName _BlackAndWhiteListDataForServiceSecond_QNAME = new QName("http://data.ntc.dp.com", "second"); + private final static QName _BlackAndWhiteListDataForServiceSipEndIp_QNAME = new QName("http://data.ntc.dp.com", "sipEndIp"); + private final static QName _BlackAndWhiteListDataForServiceSipStartIp_QNAME = new QName("http://data.ntc.dp.com", "sipStartIp"); + private final static QName _BlackAndWhiteListDataForServiceSipType_QNAME = new QName("http://data.ntc.dp.com", "sipType"); + private final static QName _BlackAndWhiteListDataForServiceTimeType_QNAME = new QName("http://data.ntc.dp.com", "timeType"); + private final static QName _ProtectionTargetWithStrategyForServiceProtectionStrategyName_QNAME = new QName("http://data.ntc.dp.com", "protectionStrategyName"); + private final static QName _ProtectionTargetWithStrategyForServiceProtectionTargetName_QNAME = new QName("http://data.ntc.dp.com", "protectionTargetName"); + private final static QName _DdosHttpGetUriCusProV4ForServiceURI_QNAME = new QName("http://data.ntc.dp.com", "URI"); + private final static QName _DdosHttpGetUriCusProV4ForServiceAction_QNAME = new QName("http://data.ntc.dp.com", "action"); + private final static QName _DdosHttpGetUriCusProV4ForServiceObjName_QNAME = new QName("http://data.ntc.dp.com", "objName"); + private final static QName _DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME = new QName("http://data.ntc.dp.com", "protectthreshold"); + private final static QName _FingerprintOtherForServiceCustom1_QNAME = new QName("http://data.ntc.dp.com", "custom1"); + private final static QName _FingerprintOtherForServiceCustom2_QNAME = new QName("http://data.ntc.dp.com", "custom2"); + private final static QName _FingerprintOtherForServiceCustom3_QNAME = new QName("http://data.ntc.dp.com", "custom3"); + private final static QName _FingerprintOtherForServiceEnable1_QNAME = new QName("http://data.ntc.dp.com", "enable1"); + private final static QName _FingerprintOtherForServiceEnable2_QNAME = new QName("http://data.ntc.dp.com", "enable2"); + private final static QName _FingerprintOtherForServiceEnable3_QNAME = new QName("http://data.ntc.dp.com", "enable3"); + private final static QName _FingerprintOtherForServiceIp1_QNAME = new QName("http://data.ntc.dp.com", "ip1"); + private final static QName _FingerprintOtherForServiceIp2_QNAME = new QName("http://data.ntc.dp.com", "ip2"); + private final static QName _FingerprintOtherForServiceIp3_QNAME = new QName("http://data.ntc.dp.com", "ip3"); + private final static QName _FingerprintOtherForServiceKeylength1_QNAME = new QName("http://data.ntc.dp.com", "keylength1"); + private final static QName _FingerprintOtherForServiceKeylength2_QNAME = new QName("http://data.ntc.dp.com", "keylength2"); + private final static QName _FingerprintOtherForServiceKeylength3_QNAME = new QName("http://data.ntc.dp.com", "keylength3"); + private final static QName _FingerprintOtherForServiceKeyoffset1_QNAME = new QName("http://data.ntc.dp.com", "keyoffset1"); + private final static QName _FingerprintOtherForServiceKeyoffset2_QNAME = new QName("http://data.ntc.dp.com", "keyoffset2"); + private final static QName _FingerprintOtherForServiceKeyoffset3_QNAME = new QName("http://data.ntc.dp.com", "keyoffset3"); + private final static QName _FingerprintOtherForServiceKeytype1_QNAME = new QName("http://data.ntc.dp.com", "keytype1"); + private final static QName _FingerprintOtherForServiceKeytype2_QNAME = new QName("http://data.ntc.dp.com", "keytype2"); + private final static QName _FingerprintOtherForServiceKeytype3_QNAME = new QName("http://data.ntc.dp.com", "keytype3"); + private final static QName _FingerprintOtherForServiceMask1_QNAME = new QName("http://data.ntc.dp.com", "mask1"); + private final static QName _FingerprintOtherForServiceMask2_QNAME = new QName("http://data.ntc.dp.com", "mask2"); + private final static QName _FingerprintOtherForServiceMask3_QNAME = new QName("http://data.ntc.dp.com", "mask3"); + private final static QName _FingerprintOtherForServiceThreshold_QNAME = new QName("http://data.ntc.dp.com", "threshold"); + private final static QName _ProtectionStrategyTemplateForServiceDescription_QNAME = new QName("http://data.ntc.dp.com", "description"); + private final static QName _BlackHoleAutoStrategyForServiceDetectName_QNAME = new QName("http://data.ntc.dp.com", "detectName"); + private final static QName _BlackHoleAutoStrategyForServicePolicyName_QNAME = new QName("http://data.ntc.dp.com", "policyName"); + private final static QName _BlackHoleManualStrategyForServiceIpAddress_QNAME = new QName("http://data.ntc.dp.com", "ipAddress"); + private final static QName _DetectionObjectDataForServiceCleaningDevices_QNAME = new QName("http://data.ntc.dp.com", "cleaningDevices"); + private final static QName _DetectionObjectDataForServiceDetectionDevices_QNAME = new QName("http://data.ntc.dp.com", "detectionDevices"); + private final static QName _DetectionObjectDataForServiceDetectionName_QNAME = new QName("http://data.ntc.dp.com", "detectionName"); + private final static QName _DetectionObjectDataForServiceIpSegment_QNAME = new QName("http://data.ntc.dp.com", "ipSegment"); + private final static QName _DdosHttpGetSipCusProV4ForServiceSip_QNAME = new QName("http://data.ntc.dp.com", "sip"); + private final static QName _DnsSipCustomV4ForServiceSipend_QNAME = new QName("http://data.ntc.dp.com", "sipend"); + private final static QName _DnsSipCustomV4ForServiceSipstart_QNAME = new QName("http://data.ntc.dp.com", "sipstart"); + private final static QName _FingerprintTcpForServiceFlag1_QNAME = new QName("http://data.ntc.dp.com", "flag1"); + private final static QName _FingerprintTcpForServiceFlag2_QNAME = new QName("http://data.ntc.dp.com", "flag2"); + private final static QName _FingerprintTcpForServiceFlag3_QNAME = new QName("http://data.ntc.dp.com", "flag3"); + private final static QName _FingerprintTcpForServicePort1_QNAME = new QName("http://data.ntc.dp.com", "port1"); + private final static QName _FingerprintTcpForServicePort2_QNAME = new QName("http://data.ntc.dp.com", "port2"); + private final static QName _FingerprintTcpForServicePort3_QNAME = new QName("http://data.ntc.dp.com", "port3"); + private final static QName _DdosDnsRetryProtectForServiceAlertthreshold_QNAME = new QName("http://data.ntc.dp.com", "alertthreshold"); + private final static QName _DdosHttpGetSipGloProV4ForServiceType_QNAME = new QName("http://data.ntc.dp.com", "type"); + private final static QName _ProtectionObjectDataForServiceProtectionName_QNAME = new QName("http://data.ntc.dp.com", "protectionName"); + private final static QName _BypassManualTractionStrategyForServiceEnabled_QNAME = new QName("http://data.ntc.dp.com", "enabled"); + private final static QName _BypassManualTractionStrategyForServiceIpRange_QNAME = new QName("http://data.ntc.dp.com", "ipRange"); + private final static QName _BypassManualTractionStrategyForServiceProtectName_QNAME = new QName("http://data.ntc.dp.com", "protectName"); + private final static QName _DnsDomainCustomV4ForServiceDomain_QNAME = new QName("http://data.ntc.dp.com", "domain"); + private final static QName _DdosACProtectionForServiceAcDip_QNAME = new QName("http://data.ntc.dp.com", "acDip"); + private final static QName _DdosACProtectionForServiceAcDmask_QNAME = new QName("http://data.ntc.dp.com", "acDmask"); + private final static QName _DdosACProtectionForServiceAcSip_QNAME = new QName("http://data.ntc.dp.com", "acSip"); + private final static QName _DdosACProtectionForServiceAcSmask_QNAME = new QName("http://data.ntc.dp.com", "acSmask"); + private final static QName _DdosACProtectionForServiceDstPortMax_QNAME = new QName("http://data.ntc.dp.com", "dstPortMax"); + private final static QName _DdosACProtectionForServiceDstPortMin_QNAME = new QName("http://data.ntc.dp.com", "dstPortMin"); + private final static QName _DdosACProtectionForServiceEndLocation_QNAME = new QName("http://data.ntc.dp.com", "endLocation"); + private final static QName _DdosACProtectionForServiceFixString_QNAME = new QName("http://data.ntc.dp.com", "fixString"); + private final static QName _DdosACProtectionForServiceProtocol_QNAME = new QName("http://data.ntc.dp.com", "protocol"); + private final static QName _DdosACProtectionForServiceRegularExpression_QNAME = new QName("http://data.ntc.dp.com", "regularExpression"); + private final static QName _DdosACProtectionForServiceSrcPortMax_QNAME = new QName("http://data.ntc.dp.com", "srcPortMax"); + private final static QName _DdosACProtectionForServiceSrcPortMin_QNAME = new QName("http://data.ntc.dp.com", "srcPortMin"); + private final static QName _DdosACProtectionForServiceStartLocation_QNAME = new QName("http://data.ntc.dp.com", "startLocation"); + private final static QName _AnomalyDetectionStrategyDetectionObjName_QNAME = new QName("http://service.ntc.dp.com", "detectionObjName"); + private final static QName _AnomalyDetectionStrategyStrategyName_QNAME = new QName("http://service.ntc.dp.com", "strategyName"); + private final static QName _DdosGlobalUdpFragForServiceUdpenable_QNAME = new QName("http://data.ntc.dp.com", "udpenable"); + private final static QName _DdosGlobalUdpFragForServiceUdpthreshold_QNAME = new QName("http://data.ntc.dp.com", "udpthreshold"); + private final static QName _DdosGlobalIcmpLengthForServiceLengthenable_QNAME = new QName("http://data.ntc.dp.com", "lengthenable"); + private final static QName _DdosGlobalIcmpLengthForServiceMaxlength_QNAME = new QName("http://data.ntc.dp.com", "maxlength"); + private final static QName _DdosGlobalIcmpLengthForServiceMinlength_QNAME = new QName("http://data.ntc.dp.com", "minlength"); + private final static QName _DdosGlobalOtherFragForServiceOtherenable_QNAME = new QName("http://data.ntc.dp.com", "otherenable"); + private final static QName _DdosGlobalOtherFragForServiceOtherthreshold_QNAME = new QName("http://data.ntc.dp.com", "otherthreshold"); + private final static QName _DdosGlobalTcpLengthForServiceFinMax_QNAME = new QName("http://data.ntc.dp.com", "finMax"); + private final static QName _DdosGlobalTcpLengthForServiceFinMin_QNAME = new QName("http://data.ntc.dp.com", "finMin"); + private final static QName _DdosGlobalTcpLengthForServiceFinenable_QNAME = new QName("http://data.ntc.dp.com", "finenable"); + private final static QName _DdosGlobalTcpLengthForServiceRstMax_QNAME = new QName("http://data.ntc.dp.com", "rstMax"); + private final static QName _DdosGlobalTcpLengthForServiceRstMin_QNAME = new QName("http://data.ntc.dp.com", "rstMin"); + private final static QName _DdosGlobalTcpLengthForServiceRstenable_QNAME = new QName("http://data.ntc.dp.com", "rstenable"); + private final static QName _DdosGlobalTcpLengthForServiceSynMax_QNAME = new QName("http://data.ntc.dp.com", "synMax"); + private final static QName _DdosGlobalTcpLengthForServiceSynMin_QNAME = new QName("http://data.ntc.dp.com", "synMin"); + private final static QName _DdosGlobalTcpLengthForServiceSynackMax_QNAME = new QName("http://data.ntc.dp.com", "synackMax"); + private final static QName _DdosGlobalTcpLengthForServiceSynackMin_QNAME = new QName("http://data.ntc.dp.com", "synackMin"); + private final static QName _DdosGlobalTcpLengthForServiceSynackenable_QNAME = new QName("http://data.ntc.dp.com", "synackenable"); + private final static QName _DdosGlobalTcpLengthForServiceSynenable_QNAME = new QName("http://data.ntc.dp.com", "synenable"); + private final static QName _DdosGlobalSynFloodForServiceEnable_QNAME = new QName("http://data.ntc.dp.com", "enable"); + private final static QName _DdosGlobalTcpFragForServiceTcpenable_QNAME = new QName("http://data.ntc.dp.com", "tcpenable"); + private final static QName _DdosGlobalTcpFragForServiceTcpthreshold_QNAME = new QName("http://data.ntc.dp.com", "tcpthreshold"); + private final static QName _DdosGlobalUdpPayloadForServicePayloadOffsetMax_QNAME = new QName("http://data.ntc.dp.com", "payloadOffsetMax"); + private final static QName _DdosGlobalUdpPayloadForServicePayloadOffsetMin_QNAME = new QName("http://data.ntc.dp.com", "payloadOffsetMin"); + private final static QName _DdosGlobalUdpPayloadForServicePayloadThreshold_QNAME = new QName("http://data.ntc.dp.com", "payloadThreshold"); + private final static QName _DdosGlobalUdpPayloadForServicePayloadcontentenable_QNAME = new QName("http://data.ntc.dp.com", "payloadcontentenable"); + private final static QName _DdosGlobalUdpPayloadForServicePayloademptyenable_QNAME = new QName("http://data.ntc.dp.com", "payloademptyenable"); + private final static QName _DdosGlobalIcmpFragForServiceIcmpenable_QNAME = new QName("http://data.ntc.dp.com", "icmpenable"); + private final static QName _DdosGlobalIcmpFragForServiceIcmpthreshold_QNAME = new QName("http://data.ntc.dp.com", "icmpthreshold"); + private final static QName _DdosGlobalTcpFlagForServiceTcpFlagenable_QNAME = new QName("http://data.ntc.dp.com", "tcpFlagenable"); + private final static QName _DdosGlobalTcpStateForServiceChosen_QNAME = new QName("http://data.ntc.dp.com", "chosen"); + private final static QName _DdosGlobalTcpStateForServiceStatenable_QNAME = new QName("http://data.ntc.dp.com", "statenable"); + private final static QName _NtcRequestResultInfoResultInfo_QNAME = new QName("http://service.ntc.dp.com", "resultInfo"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.dptech.umc + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link AddBlackHoleAutoStrategyForUMC } + * + */ + public AddBlackHoleAutoStrategyForUMC createAddBlackHoleAutoStrategyForUMC() { + return new AddBlackHoleAutoStrategyForUMC(); + } + + /** + * Create an instance of {@link AddBlackHoleAutoStrategyForUMCResponse } + * + */ + public AddBlackHoleAutoStrategyForUMCResponse createAddBlackHoleAutoStrategyForUMCResponse() { + return new AddBlackHoleAutoStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link NtcRequestResultInfo } + * + */ + public NtcRequestResultInfo createNtcRequestResultInfo() { + return new NtcRequestResultInfo(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpStateForUMC } + * + */ + public SetDdosGlobalTcpStateForUMC createSetDdosGlobalTcpStateForUMC() { + return new SetDdosGlobalTcpStateForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpStateForUMCResponse } + * + */ + public SetDdosGlobalTcpStateForUMCResponse createSetDdosGlobalTcpStateForUMCResponse() { + return new SetDdosGlobalTcpStateForUMCResponse(); + } + + /** + * Create an instance of {@link DelDnsSecDomainCustomV4ForUMC } + * + */ + public DelDnsSecDomainCustomV4ForUMC createDelDnsSecDomainCustomV4ForUMC() { + return new DelDnsSecDomainCustomV4ForUMC(); + } + + /** + * Create an instance of {@link DelDnsSecDomainCustomV4ForUMCResponse } + * + */ + public DelDnsSecDomainCustomV4ForUMCResponse createDelDnsSecDomainCustomV4ForUMCResponse() { + return new DelDnsSecDomainCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllCompleteAnomalyDetectionStrategyFromUMC } + * + */ + public GetAllCompleteAnomalyDetectionStrategyFromUMC createGetAllCompleteAnomalyDetectionStrategyFromUMC() { + return new GetAllCompleteAnomalyDetectionStrategyFromUMC(); + } + + /** + * Create an instance of {@link GetAllCompleteAnomalyDetectionStrategyFromUMCResponse } + * + */ + public GetAllCompleteAnomalyDetectionStrategyFromUMCResponse createGetAllCompleteAnomalyDetectionStrategyFromUMCResponse() { + return new GetAllCompleteAnomalyDetectionStrategyFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfAnomalyDetectionStrategy } + * + */ + public ArrayOfAnomalyDetectionStrategy createArrayOfAnomalyDetectionStrategy() { + return new ArrayOfAnomalyDetectionStrategy(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpLengthForUMC } + * + */ + public SetDdosGlobalTcpLengthForUMC createSetDdosGlobalTcpLengthForUMC() { + return new SetDdosGlobalTcpLengthForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpLengthForUMCResponse } + * + */ + public SetDdosGlobalTcpLengthForUMCResponse createSetDdosGlobalTcpLengthForUMCResponse() { + return new SetDdosGlobalTcpLengthForUMCResponse(); + } + + /** + * Create an instance of {@link ModBypassManualTractionStrategyForUMC } + * + */ + public ModBypassManualTractionStrategyForUMC createModBypassManualTractionStrategyForUMC() { + return new ModBypassManualTractionStrategyForUMC(); + } + + /** + * Create an instance of {@link ModBypassManualTractionStrategyForUMCResponse } + * + */ + public ModBypassManualTractionStrategyForUMCResponse createModBypassManualTractionStrategyForUMCResponse() { + return new ModBypassManualTractionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link GetDnsSecDomainCustomV4FromUMC } + * + */ + public GetDnsSecDomainCustomV4FromUMC createGetDnsSecDomainCustomV4FromUMC() { + return new GetDnsSecDomainCustomV4FromUMC(); + } + + /** + * Create an instance of {@link GetDnsSecDomainCustomV4FromUMCResponse } + * + */ + public GetDnsSecDomainCustomV4FromUMCResponse createGetDnsSecDomainCustomV4FromUMCResponse() { + return new GetDnsSecDomainCustomV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDnsSecDomainCustomV4ForService } + * + */ + public ArrayOfDnsSecDomainCustomV4ForService createArrayOfDnsSecDomainCustomV4ForService() { + return new ArrayOfDnsSecDomainCustomV4ForService(); + } + + /** + * Create an instance of {@link DelDnsSipCustomV4ForUMC } + * + */ + public DelDnsSipCustomV4ForUMC createDelDnsSipCustomV4ForUMC() { + return new DelDnsSipCustomV4ForUMC(); + } + + /** + * Create an instance of {@link DelDnsSipCustomV4ForUMCResponse } + * + */ + public DelDnsSipCustomV4ForUMCResponse createDelDnsSipCustomV4ForUMCResponse() { + return new DelDnsSipCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link DelDnsSecDomainGlobalV4ForUMC } + * + */ + public DelDnsSecDomainGlobalV4ForUMC createDelDnsSecDomainGlobalV4ForUMC() { + return new DelDnsSecDomainGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link DelDnsSecDomainGlobalV4ForUMCResponse } + * + */ + public DelDnsSecDomainGlobalV4ForUMCResponse createDelDnsSecDomainGlobalV4ForUMCResponse() { + return new DelDnsSecDomainGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalUdpLengthForUMC } + * + */ + public SetDdosGlobalUdpLengthForUMC createSetDdosGlobalUdpLengthForUMC() { + return new SetDdosGlobalUdpLengthForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalUdpLengthForUMCResponse } + * + */ + public SetDdosGlobalUdpLengthForUMCResponse createSetDdosGlobalUdpLengthForUMCResponse() { + return new SetDdosGlobalUdpLengthForUMCResponse(); + } + + /** + * Create an instance of {@link AddCompleteAnomalyDetectionStrategyForUMC } + * + */ + public AddCompleteAnomalyDetectionStrategyForUMC createAddCompleteAnomalyDetectionStrategyForUMC() { + return new AddCompleteAnomalyDetectionStrategyForUMC(); + } + + /** + * Create an instance of {@link AddCompleteAnomalyDetectionStrategyForUMCResponse } + * + */ + public AddCompleteAnomalyDetectionStrategyForUMCResponse createAddCompleteAnomalyDetectionStrategyForUMCResponse() { + return new AddCompleteAnomalyDetectionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link AddDdosHttpGetUriGloProV4ForUMC } + * + */ + public AddDdosHttpGetUriGloProV4ForUMC createAddDdosHttpGetUriGloProV4ForUMC() { + return new AddDdosHttpGetUriGloProV4ForUMC(); + } + + /** + * Create an instance of {@link AddDdosHttpGetUriGloProV4ForUMCResponse } + * + */ + public AddDdosHttpGetUriGloProV4ForUMCResponse createAddDdosHttpGetUriGloProV4ForUMCResponse() { + return new AddDdosHttpGetUriGloProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link AddDdosHttpGetSipCusProV4ForUMC } + * + */ + public AddDdosHttpGetSipCusProV4ForUMC createAddDdosHttpGetSipCusProV4ForUMC() { + return new AddDdosHttpGetSipCusProV4ForUMC(); + } + + /** + * Create an instance of {@link AddDdosHttpGetSipCusProV4ForUMCResponse } + * + */ + public AddDdosHttpGetSipCusProV4ForUMCResponse createAddDdosHttpGetSipCusProV4ForUMCResponse() { + return new AddDdosHttpGetSipCusProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosACProtectionFromUMC } + * + */ + public GetDdosACProtectionFromUMC createGetDdosACProtectionFromUMC() { + return new GetDdosACProtectionFromUMC(); + } + + /** + * Create an instance of {@link GetDdosACProtectionFromUMCResponse } + * + */ + public GetDdosACProtectionFromUMCResponse createGetDdosACProtectionFromUMCResponse() { + return new GetDdosACProtectionFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDdosACProtectionForService } + * + */ + public ArrayOfDdosACProtectionForService createArrayOfDdosACProtectionForService() { + return new ArrayOfDdosACProtectionForService(); + } + + /** + * Create an instance of {@link ModBlackAndWhiteListProtection } + * + */ + public ModBlackAndWhiteListProtection createModBlackAndWhiteListProtection() { + return new ModBlackAndWhiteListProtection(); + } + + /** + * Create an instance of {@link ModBlackAndWhiteListProtectionResponse } + * + */ + public ModBlackAndWhiteListProtectionResponse createModBlackAndWhiteListProtectionResponse() { + return new ModBlackAndWhiteListProtectionResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalIcmpPayloadForUMC } + * + */ + public SetDdosGlobalIcmpPayloadForUMC createSetDdosGlobalIcmpPayloadForUMC() { + return new SetDdosGlobalIcmpPayloadForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalIcmpPayloadForUMCResponse } + * + */ + public SetDdosGlobalIcmpPayloadForUMCResponse createSetDdosGlobalIcmpPayloadForUMCResponse() { + return new SetDdosGlobalIcmpPayloadForUMCResponse(); + } + + /** + * Create an instance of {@link StopBlackHoleStrategyForUMC } + * + */ + public StopBlackHoleStrategyForUMC createStopBlackHoleStrategyForUMC() { + return new StopBlackHoleStrategyForUMC(); + } + + /** + * Create an instance of {@link StopBlackHoleStrategyForUMCResponse } + * + */ + public StopBlackHoleStrategyForUMCResponse createStopBlackHoleStrategyForUMCResponse() { + return new StopBlackHoleStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link DelDnsDomainCustomV4ForUMC } + * + */ + public DelDnsDomainCustomV4ForUMC createDelDnsDomainCustomV4ForUMC() { + return new DelDnsDomainCustomV4ForUMC(); + } + + /** + * Create an instance of {@link DelDnsDomainCustomV4ForUMCResponse } + * + */ + public DelDnsDomainCustomV4ForUMCResponse createDelDnsDomainCustomV4ForUMCResponse() { + return new DelDnsDomainCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link DelDdosCCuserGroupV4ForUMC } + * + */ + public DelDdosCCuserGroupV4ForUMC createDelDdosCCuserGroupV4ForUMC() { + return new DelDdosCCuserGroupV4ForUMC(); + } + + /** + * Create an instance of {@link DelDdosCCuserGroupV4ForUMCResponse } + * + */ + public DelDdosCCuserGroupV4ForUMCResponse createDelDdosCCuserGroupV4ForUMCResponse() { + return new DelDdosCCuserGroupV4ForUMCResponse(); + } + + /** + * Create an instance of {@link DelFingerprintOtherForUMC } + * + */ + public DelFingerprintOtherForUMC createDelFingerprintOtherForUMC() { + return new DelFingerprintOtherForUMC(); + } + + /** + * Create an instance of {@link DelFingerprintOtherForUMCResponse } + * + */ + public DelFingerprintOtherForUMCResponse createDelFingerprintOtherForUMCResponse() { + return new DelFingerprintOtherForUMCResponse(); + } + + /** + * Create an instance of {@link AddDnsDomainGlobalV4ForUMC } + * + */ + public AddDnsDomainGlobalV4ForUMC createAddDnsDomainGlobalV4ForUMC() { + return new AddDnsDomainGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link AddDnsDomainGlobalV4ForUMCResponse } + * + */ + public AddDnsDomainGlobalV4ForUMCResponse createAddDnsDomainGlobalV4ForUMCResponse() { + return new AddDnsDomainGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalIcmpFragForUMC } + * + */ + public SetDdosGlobalIcmpFragForUMC createSetDdosGlobalIcmpFragForUMC() { + return new SetDdosGlobalIcmpFragForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalIcmpFragForUMCResponse } + * + */ + public SetDdosGlobalIcmpFragForUMCResponse createSetDdosGlobalIcmpFragForUMCResponse() { + return new SetDdosGlobalIcmpFragForUMCResponse(); + } + + /** + * Create an instance of {@link ModACProtectionForUMC } + * + */ + public ModACProtectionForUMC createModACProtectionForUMC() { + return new ModACProtectionForUMC(); + } + + /** + * Create an instance of {@link ModACProtectionForUMCResponse } + * + */ + public ModACProtectionForUMCResponse createModACProtectionForUMCResponse() { + return new ModACProtectionForUMCResponse(); + } + + /** + * Create an instance of {@link DelBypassManualTractionStrategyForUMC } + * + */ + public DelBypassManualTractionStrategyForUMC createDelBypassManualTractionStrategyForUMC() { + return new DelBypassManualTractionStrategyForUMC(); + } + + /** + * Create an instance of {@link DelBypassManualTractionStrategyForUMCResponse } + * + */ + public DelBypassManualTractionStrategyForUMCResponse createDelBypassManualTractionStrategyForUMCResponse() { + return new DelBypassManualTractionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpFragForUMC } + * + */ + public SetDdosGlobalTcpFragForUMC createSetDdosGlobalTcpFragForUMC() { + return new SetDdosGlobalTcpFragForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpFragForUMCResponse } + * + */ + public SetDdosGlobalTcpFragForUMCResponse createSetDdosGlobalTcpFragForUMCResponse() { + return new SetDdosGlobalTcpFragForUMCResponse(); + } + + /** + * Create an instance of {@link ModDdosHttpGetUriGloProV4ForUMC } + * + */ + public ModDdosHttpGetUriGloProV4ForUMC createModDdosHttpGetUriGloProV4ForUMC() { + return new ModDdosHttpGetUriGloProV4ForUMC(); + } + + /** + * Create an instance of {@link ModDdosHttpGetUriGloProV4ForUMCResponse } + * + */ + public ModDdosHttpGetUriGloProV4ForUMCResponse createModDdosHttpGetUriGloProV4ForUMCResponse() { + return new ModDdosHttpGetUriGloProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link AddBlackAndWhiteListProtection } + * + */ + public AddBlackAndWhiteListProtection createAddBlackAndWhiteListProtection() { + return new AddBlackAndWhiteListProtection(); + } + + /** + * Create an instance of {@link AddBlackAndWhiteListProtectionResponse } + * + */ + public AddBlackAndWhiteListProtectionResponse createAddBlackAndWhiteListProtectionResponse() { + return new AddBlackAndWhiteListProtectionResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpStateFromUMC } + * + */ + public GetDdosGlobalTcpStateFromUMC createGetDdosGlobalTcpStateFromUMC() { + return new GetDdosGlobalTcpStateFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpStateFromUMCResponse } + * + */ + public GetDdosGlobalTcpStateFromUMCResponse createGetDdosGlobalTcpStateFromUMCResponse() { + return new GetDdosGlobalTcpStateFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalTcpStateForService } + * + */ + public DdosGlobalTcpStateForService createDdosGlobalTcpStateForService() { + return new DdosGlobalTcpStateForService(); + } + + /** + * Create an instance of {@link GetFingerprintIcmpFromUMC } + * + */ + public GetFingerprintIcmpFromUMC createGetFingerprintIcmpFromUMC() { + return new GetFingerprintIcmpFromUMC(); + } + + /** + * Create an instance of {@link GetFingerprintIcmpFromUMCResponse } + * + */ + public GetFingerprintIcmpFromUMCResponse createGetFingerprintIcmpFromUMCResponse() { + return new GetFingerprintIcmpFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfFingerprintIcmpForService } + * + */ + public ArrayOfFingerprintIcmpForService createArrayOfFingerprintIcmpForService() { + return new ArrayOfFingerprintIcmpForService(); + } + + /** + * Create an instance of {@link StopAbnormalTaskWithSpecificDeviceForUMC } + * + */ + public StopAbnormalTaskWithSpecificDeviceForUMC createStopAbnormalTaskWithSpecificDeviceForUMC() { + return new StopAbnormalTaskWithSpecificDeviceForUMC(); + } + + /** + * Create an instance of {@link StopAbnormalTaskWithSpecificDeviceForUMCResponse } + * + */ + public StopAbnormalTaskWithSpecificDeviceForUMCResponse createStopAbnormalTaskWithSpecificDeviceForUMCResponse() { + return new StopAbnormalTaskWithSpecificDeviceForUMCResponse(); + } + + /** + * Create an instance of {@link AddAnomalyDetectionStrategyForUMC } + * + */ + public AddAnomalyDetectionStrategyForUMC createAddAnomalyDetectionStrategyForUMC() { + return new AddAnomalyDetectionStrategyForUMC(); + } + + /** + * Create an instance of {@link AddAnomalyDetectionStrategyForUMCResponse } + * + */ + public AddAnomalyDetectionStrategyForUMCResponse createAddAnomalyDetectionStrategyForUMCResponse() { + return new AddAnomalyDetectionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link StopAbnormalTaskForUMC } + * + */ + public StopAbnormalTaskForUMC createStopAbnormalTaskForUMC() { + return new StopAbnormalTaskForUMC(); + } + + /** + * Create an instance of {@link StopAbnormalTaskForUMCResponse } + * + */ + public StopAbnormalTaskForUMCResponse createStopAbnormalTaskForUMCResponse() { + return new StopAbnormalTaskForUMCResponse(); + } + + /** + * Create an instance of {@link AddDnsDomainCustomV4ForUMC } + * + */ + public AddDnsDomainCustomV4ForUMC createAddDnsDomainCustomV4ForUMC() { + return new AddDnsDomainCustomV4ForUMC(); + } + + /** + * Create an instance of {@link AddDnsDomainCustomV4ForUMCResponse } + * + */ + public AddDnsDomainCustomV4ForUMCResponse createAddDnsDomainCustomV4ForUMCResponse() { + return new AddDnsDomainCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosCCuserGroupV4FromUMC } + * + */ + public GetDdosCCuserGroupV4FromUMC createGetDdosCCuserGroupV4FromUMC() { + return new GetDdosCCuserGroupV4FromUMC(); + } + + /** + * Create an instance of {@link GetDdosCCuserGroupV4FromUMCResponse } + * + */ + public GetDdosCCuserGroupV4FromUMCResponse createGetDdosCCuserGroupV4FromUMCResponse() { + return new GetDdosCCuserGroupV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDdosCCuserGroupV4ForService } + * + */ + public ArrayOfDdosCCuserGroupV4ForService createArrayOfDdosCCuserGroupV4ForService() { + return new ArrayOfDdosCCuserGroupV4ForService(); + } + + /** + * Create an instance of {@link GetDdosGlobalUdpLengthFromUMC } + * + */ + public GetDdosGlobalUdpLengthFromUMC createGetDdosGlobalUdpLengthFromUMC() { + return new GetDdosGlobalUdpLengthFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalUdpLengthFromUMCResponse } + * + */ + public GetDdosGlobalUdpLengthFromUMCResponse createGetDdosGlobalUdpLengthFromUMCResponse() { + return new GetDdosGlobalUdpLengthFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalUdpLengthForService } + * + */ + public DdosGlobalUdpLengthForService createDdosGlobalUdpLengthForService() { + return new DdosGlobalUdpLengthForService(); + } + + /** + * Create an instance of {@link DelAnomalyDetectionStrategyForUMC } + * + */ + public DelAnomalyDetectionStrategyForUMC createDelAnomalyDetectionStrategyForUMC() { + return new DelAnomalyDetectionStrategyForUMC(); + } + + /** + * Create an instance of {@link DelAnomalyDetectionStrategyForUMCResponse } + * + */ + public DelAnomalyDetectionStrategyForUMCResponse createDelAnomalyDetectionStrategyForUMCResponse() { + return new DelAnomalyDetectionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalAckPayloadFromUMC } + * + */ + public GetDdosGlobalAckPayloadFromUMC createGetDdosGlobalAckPayloadFromUMC() { + return new GetDdosGlobalAckPayloadFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalAckPayloadFromUMCResponse } + * + */ + public GetDdosGlobalAckPayloadFromUMCResponse createGetDdosGlobalAckPayloadFromUMCResponse() { + return new GetDdosGlobalAckPayloadFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalAckPayloadForService } + * + */ + public DdosGlobalAckPayloadForService createDdosGlobalAckPayloadForService() { + return new DdosGlobalAckPayloadForService(); + } + + /** + * Create an instance of {@link GetDnsSecDomainGlobalV4FromUMC } + * + */ + public GetDnsSecDomainGlobalV4FromUMC createGetDnsSecDomainGlobalV4FromUMC() { + return new GetDnsSecDomainGlobalV4FromUMC(); + } + + /** + * Create an instance of {@link GetDnsSecDomainGlobalV4FromUMCResponse } + * + */ + public GetDnsSecDomainGlobalV4FromUMCResponse createGetDnsSecDomainGlobalV4FromUMCResponse() { + return new GetDnsSecDomainGlobalV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDnsSecDomainGlobalV4ForService } + * + */ + public ArrayOfDnsSecDomainGlobalV4ForService createArrayOfDnsSecDomainGlobalV4ForService() { + return new ArrayOfDnsSecDomainGlobalV4ForService(); + } + + /** + * Create an instance of {@link DelFingerprintIcmpForUMC } + * + */ + public DelFingerprintIcmpForUMC createDelFingerprintIcmpForUMC() { + return new DelFingerprintIcmpForUMC(); + } + + /** + * Create an instance of {@link DelFingerprintIcmpForUMCResponse } + * + */ + public DelFingerprintIcmpForUMCResponse createDelFingerprintIcmpForUMCResponse() { + return new DelFingerprintIcmpForUMCResponse(); + } + + /** + * Create an instance of {@link AddDdosDnsRetryProtectForUMC } + * + */ + public AddDdosDnsRetryProtectForUMC createAddDdosDnsRetryProtectForUMC() { + return new AddDdosDnsRetryProtectForUMC(); + } + + /** + * Create an instance of {@link AddDdosDnsRetryProtectForUMCResponse } + * + */ + public AddDdosDnsRetryProtectForUMCResponse createAddDdosDnsRetryProtectForUMCResponse() { + return new AddDdosDnsRetryProtectForUMCResponse(); + } + + /** + * Create an instance of {@link AddFingerprintUdpForUMC } + * + */ + public AddFingerprintUdpForUMC createAddFingerprintUdpForUMC() { + return new AddFingerprintUdpForUMC(); + } + + /** + * Create an instance of {@link AddFingerprintUdpForUMCResponse } + * + */ + public AddFingerprintUdpForUMCResponse createAddFingerprintUdpForUMCResponse() { + return new AddFingerprintUdpForUMCResponse(); + } + + /** + * Create an instance of {@link GeDnsDomainCustomV4TFromUMC } + * + */ + public GeDnsDomainCustomV4TFromUMC createGeDnsDomainCustomV4TFromUMC() { + return new GeDnsDomainCustomV4TFromUMC(); + } + + /** + * Create an instance of {@link GeDnsDomainCustomV4TFromUMCResponse } + * + */ + public GeDnsDomainCustomV4TFromUMCResponse createGeDnsDomainCustomV4TFromUMCResponse() { + return new GeDnsDomainCustomV4TFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDnsDomainCustomV4ForService } + * + */ + public ArrayOfDnsDomainCustomV4ForService createArrayOfDnsDomainCustomV4ForService() { + return new ArrayOfDnsDomainCustomV4ForService(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpFlagFromUMC } + * + */ + public GetDdosGlobalTcpFlagFromUMC createGetDdosGlobalTcpFlagFromUMC() { + return new GetDdosGlobalTcpFlagFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpFlagFromUMCResponse } + * + */ + public GetDdosGlobalTcpFlagFromUMCResponse createGetDdosGlobalTcpFlagFromUMCResponse() { + return new GetDdosGlobalTcpFlagFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalTcpFlagForService } + * + */ + public DdosGlobalTcpFlagForService createDdosGlobalTcpFlagForService() { + return new DdosGlobalTcpFlagForService(); + } + + /** + * Create an instance of {@link GetDnsDomainGlobalV4FromUMC } + * + */ + public GetDnsDomainGlobalV4FromUMC createGetDnsDomainGlobalV4FromUMC() { + return new GetDnsDomainGlobalV4FromUMC(); + } + + /** + * Create an instance of {@link GetDnsDomainGlobalV4FromUMCResponse } + * + */ + public GetDnsDomainGlobalV4FromUMCResponse createGetDnsDomainGlobalV4FromUMCResponse() { + return new GetDnsDomainGlobalV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDnsDomainGlobalV4ForService } + * + */ + public ArrayOfDnsDomainGlobalV4ForService createArrayOfDnsDomainGlobalV4ForService() { + return new ArrayOfDnsDomainGlobalV4ForService(); + } + + /** + * Create an instance of {@link SetDdosGlobalSynFloodForUMC } + * + */ + public SetDdosGlobalSynFloodForUMC createSetDdosGlobalSynFloodForUMC() { + return new SetDdosGlobalSynFloodForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalSynFloodForUMCResponse } + * + */ + public SetDdosGlobalSynFloodForUMCResponse createSetDdosGlobalSynFloodForUMCResponse() { + return new SetDdosGlobalSynFloodForUMCResponse(); + } + + /** + * Create an instance of {@link StartBypassManualTractionStrategyForUMC } + * + */ + public StartBypassManualTractionStrategyForUMC createStartBypassManualTractionStrategyForUMC() { + return new StartBypassManualTractionStrategyForUMC(); + } + + /** + * Create an instance of {@link StartBypassManualTractionStrategyForUMCResponse } + * + */ + public StartBypassManualTractionStrategyForUMCResponse createStartBypassManualTractionStrategyForUMCResponse() { + return new StartBypassManualTractionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalIcmpFragFromUMC } + * + */ + public GetDdosGlobalIcmpFragFromUMC createGetDdosGlobalIcmpFragFromUMC() { + return new GetDdosGlobalIcmpFragFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalIcmpFragFromUMCResponse } + * + */ + public GetDdosGlobalIcmpFragFromUMCResponse createGetDdosGlobalIcmpFragFromUMCResponse() { + return new GetDdosGlobalIcmpFragFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalIcmpFragForService } + * + */ + public DdosGlobalIcmpFragForService createDdosGlobalIcmpFragForService() { + return new DdosGlobalIcmpFragForService(); + } + + /** + * Create an instance of {@link GetAllBypassManualTractionStrategyFromUMC } + * + */ + public GetAllBypassManualTractionStrategyFromUMC createGetAllBypassManualTractionStrategyFromUMC() { + return new GetAllBypassManualTractionStrategyFromUMC(); + } + + /** + * Create an instance of {@link GetAllBypassManualTractionStrategyFromUMCResponse } + * + */ + public GetAllBypassManualTractionStrategyFromUMCResponse createGetAllBypassManualTractionStrategyFromUMCResponse() { + return new GetAllBypassManualTractionStrategyFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfBypassManualTractionStrategyForService } + * + */ + public ArrayOfBypassManualTractionStrategyForService createArrayOfBypassManualTractionStrategyForService() { + return new ArrayOfBypassManualTractionStrategyForService(); + } + + /** + * Create an instance of {@link GetDdosGlobalIcmpPayloadFromUMC } + * + */ + public GetDdosGlobalIcmpPayloadFromUMC createGetDdosGlobalIcmpPayloadFromUMC() { + return new GetDdosGlobalIcmpPayloadFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalIcmpPayloadFromUMCResponse } + * + */ + public GetDdosGlobalIcmpPayloadFromUMCResponse createGetDdosGlobalIcmpPayloadFromUMCResponse() { + return new GetDdosGlobalIcmpPayloadFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalIcmpPayloadForService } + * + */ + public DdosGlobalIcmpPayloadForService createDdosGlobalIcmpPayloadForService() { + return new DdosGlobalIcmpPayloadForService(); + } + + /** + * Create an instance of {@link AddOneKeyRestore } + * + */ + public AddOneKeyRestore createAddOneKeyRestore() { + return new AddOneKeyRestore(); + } + + /** + * Create an instance of {@link AddOneKeyRestoreResponse } + * + */ + public AddOneKeyRestoreResponse createAddOneKeyRestoreResponse() { + return new AddOneKeyRestoreResponse(); + } + + /** + * Create an instance of {@link AddBlackHoleManualStrategyForUMC } + * + */ + public AddBlackHoleManualStrategyForUMC createAddBlackHoleManualStrategyForUMC() { + return new AddBlackHoleManualStrategyForUMC(); + } + + /** + * Create an instance of {@link AddBlackHoleManualStrategyForUMCResponse } + * + */ + public AddBlackHoleManualStrategyForUMCResponse createAddBlackHoleManualStrategyForUMCResponse() { + return new AddBlackHoleManualStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link AddDetectionObjectForUMC } + * + */ + public AddDetectionObjectForUMC createAddDetectionObjectForUMC() { + return new AddDetectionObjectForUMC(); + } + + /** + * Create an instance of {@link AddDetectionObjectForUMCResponse } + * + */ + public AddDetectionObjectForUMCResponse createAddDetectionObjectForUMCResponse() { + return new AddDetectionObjectForUMCResponse(); + } + + /** + * Create an instance of {@link ModDnsSecDomainCustomV4ForUMC } + * + */ + public ModDnsSecDomainCustomV4ForUMC createModDnsSecDomainCustomV4ForUMC() { + return new ModDnsSecDomainCustomV4ForUMC(); + } + + /** + * Create an instance of {@link ModDnsSecDomainCustomV4ForUMCResponse } + * + */ + public ModDnsSecDomainCustomV4ForUMCResponse createModDnsSecDomainCustomV4ForUMCResponse() { + return new ModDnsSecDomainCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link ModFingerprintTcpForUMC } + * + */ + public ModFingerprintTcpForUMC createModFingerprintTcpForUMC() { + return new ModFingerprintTcpForUMC(); + } + + /** + * Create an instance of {@link ModFingerprintTcpForUMCResponse } + * + */ + public ModFingerprintTcpForUMCResponse createModFingerprintTcpForUMCResponse() { + return new ModFingerprintTcpForUMCResponse(); + } + + /** + * Create an instance of {@link AddFingerprintIcmpForUMC } + * + */ + public AddFingerprintIcmpForUMC createAddFingerprintIcmpForUMC() { + return new AddFingerprintIcmpForUMC(); + } + + /** + * Create an instance of {@link AddFingerprintIcmpForUMCResponse } + * + */ + public AddFingerprintIcmpForUMCResponse createAddFingerprintIcmpForUMCResponse() { + return new AddFingerprintIcmpForUMCResponse(); + } + + /** + * Create an instance of {@link DeleteDetectionObjectForUMC } + * + */ + public DeleteDetectionObjectForUMC createDeleteDetectionObjectForUMC() { + return new DeleteDetectionObjectForUMC(); + } + + /** + * Create an instance of {@link DeleteDetectionObjectForUMCResponse } + * + */ + public DeleteDetectionObjectForUMCResponse createDeleteDetectionObjectForUMCResponse() { + return new DeleteDetectionObjectForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalOtherFragForUMC } + * + */ + public SetDdosGlobalOtherFragForUMC createSetDdosGlobalOtherFragForUMC() { + return new SetDdosGlobalOtherFragForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalOtherFragForUMCResponse } + * + */ + public SetDdosGlobalOtherFragForUMCResponse createSetDdosGlobalOtherFragForUMCResponse() { + return new SetDdosGlobalOtherFragForUMCResponse(); + } + + /** + * Create an instance of {@link LinkProtectionStrategyTemplateForUMC } + * + */ + public LinkProtectionStrategyTemplateForUMC createLinkProtectionStrategyTemplateForUMC() { + return new LinkProtectionStrategyTemplateForUMC(); + } + + /** + * Create an instance of {@link LinkProtectionStrategyTemplateForUMCResponse } + * + */ + public LinkProtectionStrategyTemplateForUMCResponse createLinkProtectionStrategyTemplateForUMCResponse() { + return new LinkProtectionStrategyTemplateForUMCResponse(); + } + + /** + * Create an instance of {@link DelDdosHttpGetSipGloProV4ForUMC } + * + */ + public DelDdosHttpGetSipGloProV4ForUMC createDelDdosHttpGetSipGloProV4ForUMC() { + return new DelDdosHttpGetSipGloProV4ForUMC(); + } + + /** + * Create an instance of {@link DelDdosHttpGetSipGloProV4ForUMCResponse } + * + */ + public DelDdosHttpGetSipGloProV4ForUMCResponse createDelDdosHttpGetSipGloProV4ForUMCResponse() { + return new DelDdosHttpGetSipGloProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalUdpPayloadFromUMC } + * + */ + public GetDdosGlobalUdpPayloadFromUMC createGetDdosGlobalUdpPayloadFromUMC() { + return new GetDdosGlobalUdpPayloadFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalUdpPayloadFromUMCResponse } + * + */ + public GetDdosGlobalUdpPayloadFromUMCResponse createGetDdosGlobalUdpPayloadFromUMCResponse() { + return new GetDdosGlobalUdpPayloadFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalUdpPayloadForService } + * + */ + public DdosGlobalUdpPayloadForService createDdosGlobalUdpPayloadForService() { + return new DdosGlobalUdpPayloadForService(); + } + + /** + * Create an instance of {@link AddProtectionObjectForUMC } + * + */ + public AddProtectionObjectForUMC createAddProtectionObjectForUMC() { + return new AddProtectionObjectForUMC(); + } + + /** + * Create an instance of {@link AddProtectionObjectForUMCResponse } + * + */ + public AddProtectionObjectForUMCResponse createAddProtectionObjectForUMCResponse() { + return new AddProtectionObjectForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosHttpGetUriGloProV4FromUMC } + * + */ + public GetDdosHttpGetUriGloProV4FromUMC createGetDdosHttpGetUriGloProV4FromUMC() { + return new GetDdosHttpGetUriGloProV4FromUMC(); + } + + /** + * Create an instance of {@link GetDdosHttpGetUriGloProV4FromUMCResponse } + * + */ + public GetDdosHttpGetUriGloProV4FromUMCResponse createGetDdosHttpGetUriGloProV4FromUMCResponse() { + return new GetDdosHttpGetUriGloProV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDdosHttpGetUriGloProV4ForService } + * + */ + public ArrayOfDdosHttpGetUriGloProV4ForService createArrayOfDdosHttpGetUriGloProV4ForService() { + return new ArrayOfDdosHttpGetUriGloProV4ForService(); + } + + /** + * Create an instance of {@link GetAllProtectionObjectFromUMC } + * + */ + public GetAllProtectionObjectFromUMC createGetAllProtectionObjectFromUMC() { + return new GetAllProtectionObjectFromUMC(); + } + + /** + * Create an instance of {@link GetAllProtectionObjectFromUMCResponse } + * + */ + public GetAllProtectionObjectFromUMCResponse createGetAllProtectionObjectFromUMCResponse() { + return new GetAllProtectionObjectFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfProtectionObjectDataForService } + * + */ + public ArrayOfProtectionObjectDataForService createArrayOfProtectionObjectDataForService() { + return new ArrayOfProtectionObjectDataForService(); + } + + /** + * Create an instance of {@link ModDnsDomainGlobalV4ForUMC } + * + */ + public ModDnsDomainGlobalV4ForUMC createModDnsDomainGlobalV4ForUMC() { + return new ModDnsDomainGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link ModDnsDomainGlobalV4ForUMCResponse } + * + */ + public ModDnsDomainGlobalV4ForUMCResponse createModDnsDomainGlobalV4ForUMCResponse() { + return new ModDnsDomainGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link ModDdosHttpGetSipCusProV4ForUMC } + * + */ + public ModDdosHttpGetSipCusProV4ForUMC createModDdosHttpGetSipCusProV4ForUMC() { + return new ModDdosHttpGetSipCusProV4ForUMC(); + } + + /** + * Create an instance of {@link ModDdosHttpGetSipCusProV4ForUMCResponse } + * + */ + public ModDdosHttpGetSipCusProV4ForUMCResponse createModDdosHttpGetSipCusProV4ForUMCResponse() { + return new ModDdosHttpGetSipCusProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosHttpGetSipGloProV4FromUMC } + * + */ + public GetDdosHttpGetSipGloProV4FromUMC createGetDdosHttpGetSipGloProV4FromUMC() { + return new GetDdosHttpGetSipGloProV4FromUMC(); + } + + /** + * Create an instance of {@link GetDdosHttpGetSipGloProV4FromUMCResponse } + * + */ + public GetDdosHttpGetSipGloProV4FromUMCResponse createGetDdosHttpGetSipGloProV4FromUMCResponse() { + return new GetDdosHttpGetSipGloProV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDdosHttpGetSipGloProV4ForService } + * + */ + public ArrayOfDdosHttpGetSipGloProV4ForService createArrayOfDdosHttpGetSipGloProV4ForService() { + return new ArrayOfDdosHttpGetSipGloProV4ForService(); + } + + /** + * Create an instance of {@link GetAllAnomalyDetectionStrategyFromUMC } + * + */ + public GetAllAnomalyDetectionStrategyFromUMC createGetAllAnomalyDetectionStrategyFromUMC() { + return new GetAllAnomalyDetectionStrategyFromUMC(); + } + + /** + * Create an instance of {@link GetAllAnomalyDetectionStrategyFromUMCResponse } + * + */ + public GetAllAnomalyDetectionStrategyFromUMCResponse createGetAllAnomalyDetectionStrategyFromUMCResponse() { + return new GetAllAnomalyDetectionStrategyFromUMCResponse(); + } + + /** + * Create an instance of {@link ModifyDetectionObjectForUMC } + * + */ + public ModifyDetectionObjectForUMC createModifyDetectionObjectForUMC() { + return new ModifyDetectionObjectForUMC(); + } + + /** + * Create an instance of {@link ModifyDetectionObjectForUMCResponse } + * + */ + public ModifyDetectionObjectForUMCResponse createModifyDetectionObjectForUMCResponse() { + return new ModifyDetectionObjectForUMCResponse(); + } + + /** + * Create an instance of {@link DelFingerprintUdpForUMC } + * + */ + public DelFingerprintUdpForUMC createDelFingerprintUdpForUMC() { + return new DelFingerprintUdpForUMC(); + } + + /** + * Create an instance of {@link DelFingerprintUdpForUMCResponse } + * + */ + public DelFingerprintUdpForUMCResponse createDelFingerprintUdpForUMCResponse() { + return new DelFingerprintUdpForUMCResponse(); + } + + /** + * Create an instance of {@link AddDdosCCuserGroupV4ForUMC } + * + */ + public AddDdosCCuserGroupV4ForUMC createAddDdosCCuserGroupV4ForUMC() { + return new AddDdosCCuserGroupV4ForUMC(); + } + + /** + * Create an instance of {@link AddDdosCCuserGroupV4ForUMCResponse } + * + */ + public AddDdosCCuserGroupV4ForUMCResponse createAddDdosCCuserGroupV4ForUMCResponse() { + return new AddDdosCCuserGroupV4ForUMCResponse(); + } + + /** + * Create an instance of {@link DeleteCompleteAnomalyDetectionStrategyForUMC } + * + */ + public DeleteCompleteAnomalyDetectionStrategyForUMC createDeleteCompleteAnomalyDetectionStrategyForUMC() { + return new DeleteCompleteAnomalyDetectionStrategyForUMC(); + } + + /** + * Create an instance of {@link DeleteCompleteAnomalyDetectionStrategyForUMCResponse } + * + */ + public DeleteCompleteAnomalyDetectionStrategyForUMCResponse createDeleteCompleteAnomalyDetectionStrategyForUMCResponse() { + return new DeleteCompleteAnomalyDetectionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link DelDnsSipGlobalV4ForUMC } + * + */ + public DelDnsSipGlobalV4ForUMC createDelDnsSipGlobalV4ForUMC() { + return new DelDnsSipGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link DelDnsSipGlobalV4ForUMCResponse } + * + */ + public DelDnsSipGlobalV4ForUMCResponse createDelDnsSipGlobalV4ForUMCResponse() { + return new DelDnsSipGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpFragFromUMC } + * + */ + public GetDdosGlobalTcpFragFromUMC createGetDdosGlobalTcpFragFromUMC() { + return new GetDdosGlobalTcpFragFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpFragFromUMCResponse } + * + */ + public GetDdosGlobalTcpFragFromUMCResponse createGetDdosGlobalTcpFragFromUMCResponse() { + return new GetDdosGlobalTcpFragFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalTcpFragForService } + * + */ + public DdosGlobalTcpFragForService createDdosGlobalTcpFragForService() { + return new DdosGlobalTcpFragForService(); + } + + /** + * Create an instance of {@link DelBlackAndWhiteListProtection } + * + */ + public DelBlackAndWhiteListProtection createDelBlackAndWhiteListProtection() { + return new DelBlackAndWhiteListProtection(); + } + + /** + * Create an instance of {@link DelBlackAndWhiteListProtectionResponse } + * + */ + public DelBlackAndWhiteListProtectionResponse createDelBlackAndWhiteListProtectionResponse() { + return new DelBlackAndWhiteListProtectionResponse(); + } + + /** + * Create an instance of {@link GetDdosDnsRetryProtectFromUMC } + * + */ + public GetDdosDnsRetryProtectFromUMC createGetDdosDnsRetryProtectFromUMC() { + return new GetDdosDnsRetryProtectFromUMC(); + } + + /** + * Create an instance of {@link GetDdosDnsRetryProtectFromUMCResponse } + * + */ + public GetDdosDnsRetryProtectFromUMCResponse createGetDdosDnsRetryProtectFromUMCResponse() { + return new GetDdosDnsRetryProtectFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDdosDnsRetryProtectForService } + * + */ + public ArrayOfDdosDnsRetryProtectForService createArrayOfDdosDnsRetryProtectForService() { + return new ArrayOfDdosDnsRetryProtectForService(); + } + + /** + * Create an instance of {@link DelDdosHttpGetUriCusProV4ForUMC } + * + */ + public DelDdosHttpGetUriCusProV4ForUMC createDelDdosHttpGetUriCusProV4ForUMC() { + return new DelDdosHttpGetUriCusProV4ForUMC(); + } + + /** + * Create an instance of {@link DelDdosHttpGetUriCusProV4ForUMCResponse } + * + */ + public DelDdosHttpGetUriCusProV4ForUMCResponse createDelDdosHttpGetUriCusProV4ForUMCResponse() { + return new DelDdosHttpGetUriCusProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link DelDnsDomainGlobalV4ForUMC } + * + */ + public DelDnsDomainGlobalV4ForUMC createDelDnsDomainGlobalV4ForUMC() { + return new DelDnsDomainGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link DelDnsDomainGlobalV4ForUMCResponse } + * + */ + public DelDnsDomainGlobalV4ForUMCResponse createDelDnsDomainGlobalV4ForUMCResponse() { + return new DelDnsDomainGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllDetectDevices } + * + */ + public GetAllDetectDevices createGetAllDetectDevices() { + return new GetAllDetectDevices(); + } + + /** + * Create an instance of {@link GetAllDetectDevicesResponse } + * + */ + public GetAllDetectDevicesResponse createGetAllDetectDevicesResponse() { + return new GetAllDetectDevicesResponse(); + } + + /** + * Create an instance of {@link GetFingerprintUdpFromUMC } + * + */ + public GetFingerprintUdpFromUMC createGetFingerprintUdpFromUMC() { + return new GetFingerprintUdpFromUMC(); + } + + /** + * Create an instance of {@link GetFingerprintUdpFromUMCResponse } + * + */ + public GetFingerprintUdpFromUMCResponse createGetFingerprintUdpFromUMCResponse() { + return new GetFingerprintUdpFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfFingerprintUdpForService } + * + */ + public ArrayOfFingerprintUdpForService createArrayOfFingerprintUdpForService() { + return new ArrayOfFingerprintUdpForService(); + } + + /** + * Create an instance of {@link ModDdosDnsRetryProtectForUMC } + * + */ + public ModDdosDnsRetryProtectForUMC createModDdosDnsRetryProtectForUMC() { + return new ModDdosDnsRetryProtectForUMC(); + } + + /** + * Create an instance of {@link ModDdosDnsRetryProtectForUMCResponse } + * + */ + public ModDdosDnsRetryProtectForUMCResponse createModDdosDnsRetryProtectForUMCResponse() { + return new ModDdosDnsRetryProtectForUMCResponse(); + } + + /** + * Create an instance of {@link AddOneKeyDetection } + * + */ + public AddOneKeyDetection createAddOneKeyDetection() { + return new AddOneKeyDetection(); + } + + /** + * Create an instance of {@link AddOneKeyDetectionResponse } + * + */ + public AddOneKeyDetectionResponse createAddOneKeyDetectionResponse() { + return new AddOneKeyDetectionResponse(); + } + + /** + * Create an instance of {@link DeleteProtectionObjectIPRangeForUMC } + * + */ + public DeleteProtectionObjectIPRangeForUMC createDeleteProtectionObjectIPRangeForUMC() { + return new DeleteProtectionObjectIPRangeForUMC(); + } + + /** + * Create an instance of {@link DeleteProtectionObjectIPRangeForUMCResponse } + * + */ + public DeleteProtectionObjectIPRangeForUMCResponse createDeleteProtectionObjectIPRangeForUMCResponse() { + return new DeleteProtectionObjectIPRangeForUMCResponse(); + } + + /** + * Create an instance of {@link ModFingerprintIcmpForUMC } + * + */ + public ModFingerprintIcmpForUMC createModFingerprintIcmpForUMC() { + return new ModFingerprintIcmpForUMC(); + } + + /** + * Create an instance of {@link ModFingerprintIcmpForUMCResponse } + * + */ + public ModFingerprintIcmpForUMCResponse createModFingerprintIcmpForUMCResponse() { + return new ModFingerprintIcmpForUMCResponse(); + } + + /** + * Create an instance of {@link ModifyProtectionObjectForUMC } + * + */ + public ModifyProtectionObjectForUMC createModifyProtectionObjectForUMC() { + return new ModifyProtectionObjectForUMC(); + } + + /** + * Create an instance of {@link ModifyProtectionObjectForUMCResponse } + * + */ + public ModifyProtectionObjectForUMCResponse createModifyProtectionObjectForUMCResponse() { + return new ModifyProtectionObjectForUMCResponse(); + } + + /** + * Create an instance of {@link DelDdosHttpGetSipCusProV4ForUMC } + * + */ + public DelDdosHttpGetSipCusProV4ForUMC createDelDdosHttpGetSipCusProV4ForUMC() { + return new DelDdosHttpGetSipCusProV4ForUMC(); + } + + /** + * Create an instance of {@link DelDdosHttpGetSipCusProV4ForUMCResponse } + * + */ + public DelDdosHttpGetSipCusProV4ForUMCResponse createDelDdosHttpGetSipCusProV4ForUMCResponse() { + return new DelDdosHttpGetSipCusProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalSynFloodFromUMC } + * + */ + public GetDdosGlobalSynFloodFromUMC createGetDdosGlobalSynFloodFromUMC() { + return new GetDdosGlobalSynFloodFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalSynFloodFromUMCResponse } + * + */ + public GetDdosGlobalSynFloodFromUMCResponse createGetDdosGlobalSynFloodFromUMCResponse() { + return new GetDdosGlobalSynFloodFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalSynFloodForService } + * + */ + public DdosGlobalSynFloodForService createDdosGlobalSynFloodForService() { + return new DdosGlobalSynFloodForService(); + } + + /** + * Create an instance of {@link AddDnsSipCustomV4ForUMC } + * + */ + public AddDnsSipCustomV4ForUMC createAddDnsSipCustomV4ForUMC() { + return new AddDnsSipCustomV4ForUMC(); + } + + /** + * Create an instance of {@link AddDnsSipCustomV4ForUMCResponse } + * + */ + public AddDnsSipCustomV4ForUMCResponse createAddDnsSipCustomV4ForUMCResponse() { + return new AddDnsSipCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link ModDnsSipCustomV4ForUMC } + * + */ + public ModDnsSipCustomV4ForUMC createModDnsSipCustomV4ForUMC() { + return new ModDnsSipCustomV4ForUMC(); + } + + /** + * Create an instance of {@link ModDnsSipCustomV4ForUMCResponse } + * + */ + public ModDnsSipCustomV4ForUMCResponse createModDnsSipCustomV4ForUMCResponse() { + return new ModDnsSipCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpLengthFromUMC } + * + */ + public GetDdosGlobalTcpLengthFromUMC createGetDdosGlobalTcpLengthFromUMC() { + return new GetDdosGlobalTcpLengthFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalTcpLengthFromUMCResponse } + * + */ + public GetDdosGlobalTcpLengthFromUMCResponse createGetDdosGlobalTcpLengthFromUMCResponse() { + return new GetDdosGlobalTcpLengthFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalTcpLengthForService } + * + */ + public DdosGlobalTcpLengthForService createDdosGlobalTcpLengthForService() { + return new DdosGlobalTcpLengthForService(); + } + + /** + * Create an instance of {@link GetFingerprintTcpFromUMC } + * + */ + public GetFingerprintTcpFromUMC createGetFingerprintTcpFromUMC() { + return new GetFingerprintTcpFromUMC(); + } + + /** + * Create an instance of {@link GetFingerprintTcpFromUMCResponse } + * + */ + public GetFingerprintTcpFromUMCResponse createGetFingerprintTcpFromUMCResponse() { + return new GetFingerprintTcpFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfFingerprintTcpForService } + * + */ + public ArrayOfFingerprintTcpForService createArrayOfFingerprintTcpForService() { + return new ArrayOfFingerprintTcpForService(); + } + + /** + * Create an instance of {@link DelDdosDnsRetryProtectForUMC } + * + */ + public DelDdosDnsRetryProtectForUMC createDelDdosDnsRetryProtectForUMC() { + return new DelDdosDnsRetryProtectForUMC(); + } + + /** + * Create an instance of {@link DelDdosDnsRetryProtectForUMCResponse } + * + */ + public DelDdosDnsRetryProtectForUMCResponse createDelDdosDnsRetryProtectForUMCResponse() { + return new DelDdosDnsRetryProtectForUMCResponse(); + } + + /** + * Create an instance of {@link GetDnsSipCustomV4FromUMC } + * + */ + public GetDnsSipCustomV4FromUMC createGetDnsSipCustomV4FromUMC() { + return new GetDnsSipCustomV4FromUMC(); + } + + /** + * Create an instance of {@link GetDnsSipCustomV4FromUMCResponse } + * + */ + public GetDnsSipCustomV4FromUMCResponse createGetDnsSipCustomV4FromUMCResponse() { + return new GetDnsSipCustomV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDnsSipCustomV4ForService } + * + */ + public ArrayOfDnsSipCustomV4ForService createArrayOfDnsSipCustomV4ForService() { + return new ArrayOfDnsSipCustomV4ForService(); + } + + /** + * Create an instance of {@link SetDdosGlobalUdpFragForUMC } + * + */ + public SetDdosGlobalUdpFragForUMC createSetDdosGlobalUdpFragForUMC() { + return new SetDdosGlobalUdpFragForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalUdpFragForUMCResponse } + * + */ + public SetDdosGlobalUdpFragForUMCResponse createSetDdosGlobalUdpFragForUMCResponse() { + return new SetDdosGlobalUdpFragForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalUdpPayloadForUMC } + * + */ + public SetDdosGlobalUdpPayloadForUMC createSetDdosGlobalUdpPayloadForUMC() { + return new SetDdosGlobalUdpPayloadForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalUdpPayloadForUMCResponse } + * + */ + public SetDdosGlobalUdpPayloadForUMCResponse createSetDdosGlobalUdpPayloadForUMCResponse() { + return new SetDdosGlobalUdpPayloadForUMCResponse(); + } + + /** + * Create an instance of {@link StartBlackHoleStrategyForUMC } + * + */ + public StartBlackHoleStrategyForUMC createStartBlackHoleStrategyForUMC() { + return new StartBlackHoleStrategyForUMC(); + } + + /** + * Create an instance of {@link StartBlackHoleStrategyForUMCResponse } + * + */ + public StartBlackHoleStrategyForUMCResponse createStartBlackHoleStrategyForUMCResponse() { + return new StartBlackHoleStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link ModDdosHttpGetSipGloProV4ForUMC } + * + */ + public ModDdosHttpGetSipGloProV4ForUMC createModDdosHttpGetSipGloProV4ForUMC() { + return new ModDdosHttpGetSipGloProV4ForUMC(); + } + + /** + * Create an instance of {@link ModDdosHttpGetSipGloProV4ForUMCResponse } + * + */ + public ModDdosHttpGetSipGloProV4ForUMCResponse createModDdosHttpGetSipGloProV4ForUMCResponse() { + return new ModDdosHttpGetSipGloProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link DelDdosACProtectionForUMC } + * + */ + public DelDdosACProtectionForUMC createDelDdosACProtectionForUMC() { + return new DelDdosACProtectionForUMC(); + } + + /** + * Create an instance of {@link DelDdosACProtectionForUMCResponse } + * + */ + public DelDdosACProtectionForUMCResponse createDelDdosACProtectionForUMCResponse() { + return new DelDdosACProtectionForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosHttpGetSipCusProV4FromUMC } + * + */ + public GetDdosHttpGetSipCusProV4FromUMC createGetDdosHttpGetSipCusProV4FromUMC() { + return new GetDdosHttpGetSipCusProV4FromUMC(); + } + + /** + * Create an instance of {@link GetDdosHttpGetSipCusProV4FromUMCResponse } + * + */ + public GetDdosHttpGetSipCusProV4FromUMCResponse createGetDdosHttpGetSipCusProV4FromUMCResponse() { + return new GetDdosHttpGetSipCusProV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDdosHttpGetSipCusProV4ForService } + * + */ + public ArrayOfDdosHttpGetSipCusProV4ForService createArrayOfDdosHttpGetSipCusProV4ForService() { + return new ArrayOfDdosHttpGetSipCusProV4ForService(); + } + + /** + * Create an instance of {@link ModFingerprintUdpForUMC } + * + */ + public ModFingerprintUdpForUMC createModFingerprintUdpForUMC() { + return new ModFingerprintUdpForUMC(); + } + + /** + * Create an instance of {@link ModFingerprintUdpForUMCResponse } + * + */ + public ModFingerprintUdpForUMCResponse createModFingerprintUdpForUMCResponse() { + return new ModFingerprintUdpForUMCResponse(); + } + + /** + * Create an instance of {@link AddDnsSecDomainGlobalV4ForUMC } + * + */ + public AddDnsSecDomainGlobalV4ForUMC createAddDnsSecDomainGlobalV4ForUMC() { + return new AddDnsSecDomainGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link AddDnsSecDomainGlobalV4ForUMCResponse } + * + */ + public AddDnsSecDomainGlobalV4ForUMCResponse createAddDnsSecDomainGlobalV4ForUMCResponse() { + return new AddDnsSecDomainGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalOtherFragFromUMC } + * + */ + public GetDdosGlobalOtherFragFromUMC createGetDdosGlobalOtherFragFromUMC() { + return new GetDdosGlobalOtherFragFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalOtherFragFromUMCResponse } + * + */ + public GetDdosGlobalOtherFragFromUMCResponse createGetDdosGlobalOtherFragFromUMCResponse() { + return new GetDdosGlobalOtherFragFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalOtherFragForService } + * + */ + public DdosGlobalOtherFragForService createDdosGlobalOtherFragForService() { + return new DdosGlobalOtherFragForService(); + } + + /** + * Create an instance of {@link GetDnsSipGlobalV4FromUMC } + * + */ + public GetDnsSipGlobalV4FromUMC createGetDnsSipGlobalV4FromUMC() { + return new GetDnsSipGlobalV4FromUMC(); + } + + /** + * Create an instance of {@link GetDnsSipGlobalV4FromUMCResponse } + * + */ + public GetDnsSipGlobalV4FromUMCResponse createGetDnsSipGlobalV4FromUMCResponse() { + return new GetDnsSipGlobalV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDnsSipGlobalV4ForService } + * + */ + public ArrayOfDnsSipGlobalV4ForService createArrayOfDnsSipGlobalV4ForService() { + return new ArrayOfDnsSipGlobalV4ForService(); + } + + /** + * Create an instance of {@link GetAllDetectionObjectFromUMC } + * + */ + public GetAllDetectionObjectFromUMC createGetAllDetectionObjectFromUMC() { + return new GetAllDetectionObjectFromUMC(); + } + + /** + * Create an instance of {@link GetAllDetectionObjectFromUMCResponse } + * + */ + public GetAllDetectionObjectFromUMCResponse createGetAllDetectionObjectFromUMCResponse() { + return new GetAllDetectionObjectFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDetectionObjectDataForService } + * + */ + public ArrayOfDetectionObjectDataForService createArrayOfDetectionObjectDataForService() { + return new ArrayOfDetectionObjectDataForService(); + } + + /** + * Create an instance of {@link DelDdosHttpGetUriGloProV4ForUMC } + * + */ + public DelDdosHttpGetUriGloProV4ForUMC createDelDdosHttpGetUriGloProV4ForUMC() { + return new DelDdosHttpGetUriGloProV4ForUMC(); + } + + /** + * Create an instance of {@link DelDdosHttpGetUriGloProV4ForUMCResponse } + * + */ + public DelDdosHttpGetUriGloProV4ForUMCResponse createDelDdosHttpGetUriGloProV4ForUMCResponse() { + return new DelDdosHttpGetUriGloProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link AddDdosACProtectionForUMC } + * + */ + public AddDdosACProtectionForUMC createAddDdosACProtectionForUMC() { + return new AddDdosACProtectionForUMC(); + } + + /** + * Create an instance of {@link AddDdosACProtectionForUMCResponse } + * + */ + public AddDdosACProtectionForUMCResponse createAddDdosACProtectionForUMCResponse() { + return new AddDdosACProtectionForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalIcmpLengthFromUMC } + * + */ + public GetDdosGlobalIcmpLengthFromUMC createGetDdosGlobalIcmpLengthFromUMC() { + return new GetDdosGlobalIcmpLengthFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalIcmpLengthFromUMCResponse } + * + */ + public GetDdosGlobalIcmpLengthFromUMCResponse createGetDdosGlobalIcmpLengthFromUMCResponse() { + return new GetDdosGlobalIcmpLengthFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalIcmpLengthForService } + * + */ + public DdosGlobalIcmpLengthForService createDdosGlobalIcmpLengthForService() { + return new DdosGlobalIcmpLengthForService(); + } + + /** + * Create an instance of {@link StartAbnormalTaskForUMC } + * + */ + public StartAbnormalTaskForUMC createStartAbnormalTaskForUMC() { + return new StartAbnormalTaskForUMC(); + } + + /** + * Create an instance of {@link StartAbnormalTaskForUMCResponse } + * + */ + public StartAbnormalTaskForUMCResponse createStartAbnormalTaskForUMCResponse() { + return new StartAbnormalTaskForUMCResponse(); + } + + /** + * Create an instance of {@link AddDdosHttpGetSipGloProV4ForUMC } + * + */ + public AddDdosHttpGetSipGloProV4ForUMC createAddDdosHttpGetSipGloProV4ForUMC() { + return new AddDdosHttpGetSipGloProV4ForUMC(); + } + + /** + * Create an instance of {@link AddDdosHttpGetSipGloProV4ForUMCResponse } + * + */ + public AddDdosHttpGetSipGloProV4ForUMCResponse createAddDdosHttpGetSipGloProV4ForUMCResponse() { + return new AddDdosHttpGetSipGloProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link AddDdosHttpGetUriCusProV4ForUMC } + * + */ + public AddDdosHttpGetUriCusProV4ForUMC createAddDdosHttpGetUriCusProV4ForUMC() { + return new AddDdosHttpGetUriCusProV4ForUMC(); + } + + /** + * Create an instance of {@link AddDdosHttpGetUriCusProV4ForUMCResponse } + * + */ + public AddDdosHttpGetUriCusProV4ForUMCResponse createAddDdosHttpGetUriCusProV4ForUMCResponse() { + return new AddDdosHttpGetUriCusProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link AddFingerprintOtherForUMC } + * + */ + public AddFingerprintOtherForUMC createAddFingerprintOtherForUMC() { + return new AddFingerprintOtherForUMC(); + } + + /** + * Create an instance of {@link AddFingerprintOtherForUMCResponse } + * + */ + public AddFingerprintOtherForUMCResponse createAddFingerprintOtherForUMCResponse() { + return new AddFingerprintOtherForUMCResponse(); + } + + /** + * Create an instance of {@link GetDdosGlobalUdpFragFromUMC } + * + */ + public GetDdosGlobalUdpFragFromUMC createGetDdosGlobalUdpFragFromUMC() { + return new GetDdosGlobalUdpFragFromUMC(); + } + + /** + * Create an instance of {@link GetDdosGlobalUdpFragFromUMCResponse } + * + */ + public GetDdosGlobalUdpFragFromUMCResponse createGetDdosGlobalUdpFragFromUMCResponse() { + return new GetDdosGlobalUdpFragFromUMCResponse(); + } + + /** + * Create an instance of {@link DdosGlobalUdpFragForService } + * + */ + public DdosGlobalUdpFragForService createDdosGlobalUdpFragForService() { + return new DdosGlobalUdpFragForService(); + } + + /** + * Create an instance of {@link DeleteProtectionObjectForUMC } + * + */ + public DeleteProtectionObjectForUMC createDeleteProtectionObjectForUMC() { + return new DeleteProtectionObjectForUMC(); + } + + /** + * Create an instance of {@link DeleteProtectionObjectForUMCResponse } + * + */ + public DeleteProtectionObjectForUMCResponse createDeleteProtectionObjectForUMCResponse() { + return new DeleteProtectionObjectForUMCResponse(); + } + + /** + * Create an instance of {@link GetAnomalyDetectionStrategyFromUMC } + * + */ + public GetAnomalyDetectionStrategyFromUMC createGetAnomalyDetectionStrategyFromUMC() { + return new GetAnomalyDetectionStrategyFromUMC(); + } + + /** + * Create an instance of {@link GetAnomalyDetectionStrategyFromUMCResponse } + * + */ + public GetAnomalyDetectionStrategyFromUMCResponse createGetAnomalyDetectionStrategyFromUMCResponse() { + return new GetAnomalyDetectionStrategyFromUMCResponse(); + } + + /** + * Create an instance of {@link AnomalyDetectionStrategy } + * + */ + public AnomalyDetectionStrategy createAnomalyDetectionStrategy() { + return new AnomalyDetectionStrategy(); + } + + /** + * Create an instance of {@link AddDnsSipGlobalV4ForUMC } + * + */ + public AddDnsSipGlobalV4ForUMC createAddDnsSipGlobalV4ForUMC() { + return new AddDnsSipGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link AddDnsSipGlobalV4ForUMCResponse } + * + */ + public AddDnsSipGlobalV4ForUMCResponse createAddDnsSipGlobalV4ForUMCResponse() { + return new AddDnsSipGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllBlackHoleManualStrategyFromUMC } + * + */ + public GetAllBlackHoleManualStrategyFromUMC createGetAllBlackHoleManualStrategyFromUMC() { + return new GetAllBlackHoleManualStrategyFromUMC(); + } + + /** + * Create an instance of {@link GetAllBlackHoleManualStrategyFromUMCResponse } + * + */ + public GetAllBlackHoleManualStrategyFromUMCResponse createGetAllBlackHoleManualStrategyFromUMCResponse() { + return new GetAllBlackHoleManualStrategyFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfBlackHoleManualStrategyForService } + * + */ + public ArrayOfBlackHoleManualStrategyForService createArrayOfBlackHoleManualStrategyForService() { + return new ArrayOfBlackHoleManualStrategyForService(); + } + + /** + * Create an instance of {@link AddDnsSecDomainCustomV4ForUMC } + * + */ + public AddDnsSecDomainCustomV4ForUMC createAddDnsSecDomainCustomV4ForUMC() { + return new AddDnsSecDomainCustomV4ForUMC(); + } + + /** + * Create an instance of {@link AddDnsSecDomainCustomV4ForUMCResponse } + * + */ + public AddDnsSecDomainCustomV4ForUMCResponse createAddDnsSecDomainCustomV4ForUMCResponse() { + return new AddDnsSecDomainCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link ModDdosHttpGetUriCusProV4ForUMC } + * + */ + public ModDdosHttpGetUriCusProV4ForUMC createModDdosHttpGetUriCusProV4ForUMC() { + return new ModDdosHttpGetUriCusProV4ForUMC(); + } + + /** + * Create an instance of {@link ModDdosHttpGetUriCusProV4ForUMCResponse } + * + */ + public ModDdosHttpGetUriCusProV4ForUMCResponse createModDdosHttpGetUriCusProV4ForUMCResponse() { + return new ModDdosHttpGetUriCusProV4ForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalIcmpLengthForUMC } + * + */ + public SetDdosGlobalIcmpLengthForUMC createSetDdosGlobalIcmpLengthForUMC() { + return new SetDdosGlobalIcmpLengthForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalIcmpLengthForUMCResponse } + * + */ + public SetDdosGlobalIcmpLengthForUMCResponse createSetDdosGlobalIcmpLengthForUMCResponse() { + return new SetDdosGlobalIcmpLengthForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllBlackHoleAutoStrategyFromUMC } + * + */ + public GetAllBlackHoleAutoStrategyFromUMC createGetAllBlackHoleAutoStrategyFromUMC() { + return new GetAllBlackHoleAutoStrategyFromUMC(); + } + + /** + * Create an instance of {@link GetAllBlackHoleAutoStrategyFromUMCResponse } + * + */ + public GetAllBlackHoleAutoStrategyFromUMCResponse createGetAllBlackHoleAutoStrategyFromUMCResponse() { + return new GetAllBlackHoleAutoStrategyFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfBlackHoleAutoStrategyForService } + * + */ + public ArrayOfBlackHoleAutoStrategyForService createArrayOfBlackHoleAutoStrategyForService() { + return new ArrayOfBlackHoleAutoStrategyForService(); + } + + /** + * Create an instance of {@link AddFingerprintTcpForUMC } + * + */ + public AddFingerprintTcpForUMC createAddFingerprintTcpForUMC() { + return new AddFingerprintTcpForUMC(); + } + + /** + * Create an instance of {@link AddFingerprintTcpForUMCResponse } + * + */ + public AddFingerprintTcpForUMCResponse createAddFingerprintTcpForUMCResponse() { + return new AddFingerprintTcpForUMCResponse(); + } + + /** + * Create an instance of {@link ModBlackHoleAutoStrategyForUMC } + * + */ + public ModBlackHoleAutoStrategyForUMC createModBlackHoleAutoStrategyForUMC() { + return new ModBlackHoleAutoStrategyForUMC(); + } + + /** + * Create an instance of {@link ModBlackHoleAutoStrategyForUMCResponse } + * + */ + public ModBlackHoleAutoStrategyForUMCResponse createModBlackHoleAutoStrategyForUMCResponse() { + return new ModBlackHoleAutoStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalAckPayloadForUMC } + * + */ + public SetDdosGlobalAckPayloadForUMC createSetDdosGlobalAckPayloadForUMC() { + return new SetDdosGlobalAckPayloadForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalAckPayloadForUMCResponse } + * + */ + public SetDdosGlobalAckPayloadForUMCResponse createSetDdosGlobalAckPayloadForUMCResponse() { + return new SetDdosGlobalAckPayloadForUMCResponse(); + } + + /** + * Create an instance of {@link GetCompleteAnomalyDetectionStrategyFromUMC } + * + */ + public GetCompleteAnomalyDetectionStrategyFromUMC createGetCompleteAnomalyDetectionStrategyFromUMC() { + return new GetCompleteAnomalyDetectionStrategyFromUMC(); + } + + /** + * Create an instance of {@link GetCompleteAnomalyDetectionStrategyFromUMCResponse } + * + */ + public GetCompleteAnomalyDetectionStrategyFromUMCResponse createGetCompleteAnomalyDetectionStrategyFromUMCResponse() { + return new GetCompleteAnomalyDetectionStrategyFromUMCResponse(); + } + + /** + * Create an instance of {@link StopBypassManualTractionStrategyForUMC } + * + */ + public StopBypassManualTractionStrategyForUMC createStopBypassManualTractionStrategyForUMC() { + return new StopBypassManualTractionStrategyForUMC(); + } + + /** + * Create an instance of {@link StopBypassManualTractionStrategyForUMCResponse } + * + */ + public StopBypassManualTractionStrategyForUMCResponse createStopBypassManualTractionStrategyForUMCResponse() { + return new StopBypassManualTractionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllProtectionStrategyTemplateFromUMC } + * + */ + public GetAllProtectionStrategyTemplateFromUMC createGetAllProtectionStrategyTemplateFromUMC() { + return new GetAllProtectionStrategyTemplateFromUMC(); + } + + /** + * Create an instance of {@link GetAllProtectionStrategyTemplateFromUMCResponse } + * + */ + public GetAllProtectionStrategyTemplateFromUMCResponse createGetAllProtectionStrategyTemplateFromUMCResponse() { + return new GetAllProtectionStrategyTemplateFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfProtectionStrategyTemplateForService } + * + */ + public ArrayOfProtectionStrategyTemplateForService createArrayOfProtectionStrategyTemplateForService() { + return new ArrayOfProtectionStrategyTemplateForService(); + } + + /** + * Create an instance of {@link StartAbnormalTaskWithSpecificDeviceForUMC } + * + */ + public StartAbnormalTaskWithSpecificDeviceForUMC createStartAbnormalTaskWithSpecificDeviceForUMC() { + return new StartAbnormalTaskWithSpecificDeviceForUMC(); + } + + /** + * Create an instance of {@link StartAbnormalTaskWithSpecificDeviceForUMCResponse } + * + */ + public StartAbnormalTaskWithSpecificDeviceForUMCResponse createStartAbnormalTaskWithSpecificDeviceForUMCResponse() { + return new StartAbnormalTaskWithSpecificDeviceForUMCResponse(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpFlagForUMC } + * + */ + public SetDdosGlobalTcpFlagForUMC createSetDdosGlobalTcpFlagForUMC() { + return new SetDdosGlobalTcpFlagForUMC(); + } + + /** + * Create an instance of {@link SetDdosGlobalTcpFlagForUMCResponse } + * + */ + public SetDdosGlobalTcpFlagForUMCResponse createSetDdosGlobalTcpFlagForUMCResponse() { + return new SetDdosGlobalTcpFlagForUMCResponse(); + } + + /** + * Create an instance of {@link AddBypassManualTractionStrategyForUMC } + * + */ + public AddBypassManualTractionStrategyForUMC createAddBypassManualTractionStrategyForUMC() { + return new AddBypassManualTractionStrategyForUMC(); + } + + /** + * Create an instance of {@link AddBypassManualTractionStrategyForUMCResponse } + * + */ + public AddBypassManualTractionStrategyForUMCResponse createAddBypassManualTractionStrategyForUMCResponse() { + return new AddBypassManualTractionStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link DelFingerprintTcpForUMC } + * + */ + public DelFingerprintTcpForUMC createDelFingerprintTcpForUMC() { + return new DelFingerprintTcpForUMC(); + } + + /** + * Create an instance of {@link DelFingerprintTcpForUMCResponse } + * + */ + public DelFingerprintTcpForUMCResponse createDelFingerprintTcpForUMCResponse() { + return new DelFingerprintTcpForUMCResponse(); + } + + /** + * Create an instance of {@link ModBlackHoleManualStrategyForUMC } + * + */ + public ModBlackHoleManualStrategyForUMC createModBlackHoleManualStrategyForUMC() { + return new ModBlackHoleManualStrategyForUMC(); + } + + /** + * Create an instance of {@link ModBlackHoleManualStrategyForUMCResponse } + * + */ + public ModBlackHoleManualStrategyForUMCResponse createModBlackHoleManualStrategyForUMCResponse() { + return new ModBlackHoleManualStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link DisableProtectionStrategyTemplateForUMC } + * + */ + public DisableProtectionStrategyTemplateForUMC createDisableProtectionStrategyTemplateForUMC() { + return new DisableProtectionStrategyTemplateForUMC(); + } + + /** + * Create an instance of {@link DisableProtectionStrategyTemplateForUMCResponse } + * + */ + public DisableProtectionStrategyTemplateForUMCResponse createDisableProtectionStrategyTemplateForUMCResponse() { + return new DisableProtectionStrategyTemplateForUMCResponse(); + } + + /** + * Create an instance of {@link ModDnsSecDomainGlobalV4ForUMC } + * + */ + public ModDnsSecDomainGlobalV4ForUMC createModDnsSecDomainGlobalV4ForUMC() { + return new ModDnsSecDomainGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link ModDnsSecDomainGlobalV4ForUMCResponse } + * + */ + public ModDnsSecDomainGlobalV4ForUMCResponse createModDnsSecDomainGlobalV4ForUMCResponse() { + return new ModDnsSecDomainGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllProtectDevices } + * + */ + public GetAllProtectDevices createGetAllProtectDevices() { + return new GetAllProtectDevices(); + } + + /** + * Create an instance of {@link GetAllProtectDevicesResponse } + * + */ + public GetAllProtectDevicesResponse createGetAllProtectDevicesResponse() { + return new GetAllProtectDevicesResponse(); + } + + /** + * Create an instance of {@link GetFingerprintOtherFromUMC } + * + */ + public GetFingerprintOtherFromUMC createGetFingerprintOtherFromUMC() { + return new GetFingerprintOtherFromUMC(); + } + + /** + * Create an instance of {@link GetFingerprintOtherFromUMCResponse } + * + */ + public GetFingerprintOtherFromUMCResponse createGetFingerprintOtherFromUMCResponse() { + return new GetFingerprintOtherFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfFingerprintOtherForService } + * + */ + public ArrayOfFingerprintOtherForService createArrayOfFingerprintOtherForService() { + return new ArrayOfFingerprintOtherForService(); + } + + /** + * Create an instance of {@link GetDdosHttpGetUriCusProV4FromUMC } + * + */ + public GetDdosHttpGetUriCusProV4FromUMC createGetDdosHttpGetUriCusProV4FromUMC() { + return new GetDdosHttpGetUriCusProV4FromUMC(); + } + + /** + * Create an instance of {@link GetDdosHttpGetUriCusProV4FromUMCResponse } + * + */ + public GetDdosHttpGetUriCusProV4FromUMCResponse createGetDdosHttpGetUriCusProV4FromUMCResponse() { + return new GetDdosHttpGetUriCusProV4FromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfDdosHttpGetUriCusProV4ForService } + * + */ + public ArrayOfDdosHttpGetUriCusProV4ForService createArrayOfDdosHttpGetUriCusProV4ForService() { + return new ArrayOfDdosHttpGetUriCusProV4ForService(); + } + + /** + * Create an instance of {@link ModDnsSipGlobalV4ForUMC } + * + */ + public ModDnsSipGlobalV4ForUMC createModDnsSipGlobalV4ForUMC() { + return new ModDnsSipGlobalV4ForUMC(); + } + + /** + * Create an instance of {@link ModDnsSipGlobalV4ForUMCResponse } + * + */ + public ModDnsSipGlobalV4ForUMCResponse createModDnsSipGlobalV4ForUMCResponse() { + return new ModDnsSipGlobalV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC } + * + */ + public GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC createGetAllProtectionTargetWithStrategyAssociationRelationshipForUMC() { + return new GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC(); + } + + /** + * Create an instance of {@link GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse } + * + */ + public GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse createGetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse() { + return new GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfProtectionTargetWithStrategyForService } + * + */ + public ArrayOfProtectionTargetWithStrategyForService createArrayOfProtectionTargetWithStrategyForService() { + return new ArrayOfProtectionTargetWithStrategyForService(); + } + + /** + * Create an instance of {@link DelBlackHoleStrategyForUMC } + * + */ + public DelBlackHoleStrategyForUMC createDelBlackHoleStrategyForUMC() { + return new DelBlackHoleStrategyForUMC(); + } + + /** + * Create an instance of {@link DelBlackHoleStrategyForUMCResponse } + * + */ + public DelBlackHoleStrategyForUMCResponse createDelBlackHoleStrategyForUMCResponse() { + return new DelBlackHoleStrategyForUMCResponse(); + } + + /** + * Create an instance of {@link ModDdosCCuserGroupV4ForUMC } + * + */ + public ModDdosCCuserGroupV4ForUMC createModDdosCCuserGroupV4ForUMC() { + return new ModDdosCCuserGroupV4ForUMC(); + } + + /** + * Create an instance of {@link ModDdosCCuserGroupV4ForUMCResponse } + * + */ + public ModDdosCCuserGroupV4ForUMCResponse createModDdosCCuserGroupV4ForUMCResponse() { + return new ModDdosCCuserGroupV4ForUMCResponse(); + } + + /** + * Create an instance of {@link ModFingerprintOtherForUMC } + * + */ + public ModFingerprintOtherForUMC createModFingerprintOtherForUMC() { + return new ModFingerprintOtherForUMC(); + } + + /** + * Create an instance of {@link ModFingerprintOtherForUMCResponse } + * + */ + public ModFingerprintOtherForUMCResponse createModFingerprintOtherForUMCResponse() { + return new ModFingerprintOtherForUMCResponse(); + } + + /** + * Create an instance of {@link ModDnsDomainCustomV4ForUMC } + * + */ + public ModDnsDomainCustomV4ForUMC createModDnsDomainCustomV4ForUMC() { + return new ModDnsDomainCustomV4ForUMC(); + } + + /** + * Create an instance of {@link ModDnsDomainCustomV4ForUMCResponse } + * + */ + public ModDnsDomainCustomV4ForUMCResponse createModDnsDomainCustomV4ForUMCResponse() { + return new ModDnsDomainCustomV4ForUMCResponse(); + } + + /** + * Create an instance of {@link GetAllBlackAndWhiteListFromUMC } + * + */ + public GetAllBlackAndWhiteListFromUMC createGetAllBlackAndWhiteListFromUMC() { + return new GetAllBlackAndWhiteListFromUMC(); + } + + /** + * Create an instance of {@link GetAllBlackAndWhiteListFromUMCResponse } + * + */ + public GetAllBlackAndWhiteListFromUMCResponse createGetAllBlackAndWhiteListFromUMCResponse() { + return new GetAllBlackAndWhiteListFromUMCResponse(); + } + + /** + * Create an instance of {@link ArrayOfBlackAndWhiteListDataForService } + * + */ + public ArrayOfBlackAndWhiteListDataForService createArrayOfBlackAndWhiteListDataForService() { + return new ArrayOfBlackAndWhiteListDataForService(); + } + + /** + * Create an instance of {@link DnsSecDomainCustomV4ForService } + * + */ + public DnsSecDomainCustomV4ForService createDnsSecDomainCustomV4ForService() { + return new DnsSecDomainCustomV4ForService(); + } + + /** + * Create an instance of {@link DdosACProtectionForService } + * + */ + public DdosACProtectionForService createDdosACProtectionForService() { + return new DdosACProtectionForService(); + } + + /** + * Create an instance of {@link FingerprintIcmpForService } + * + */ + public FingerprintIcmpForService createFingerprintIcmpForService() { + return new FingerprintIcmpForService(); + } + + /** + * Create an instance of {@link DdosCCuserGroupV4ForService } + * + */ + public DdosCCuserGroupV4ForService createDdosCCuserGroupV4ForService() { + return new DdosCCuserGroupV4ForService(); + } + + /** + * Create an instance of {@link DnsSecDomainGlobalV4ForService } + * + */ + public DnsSecDomainGlobalV4ForService createDnsSecDomainGlobalV4ForService() { + return new DnsSecDomainGlobalV4ForService(); + } + + /** + * Create an instance of {@link DnsDomainCustomV4ForService } + * + */ + public DnsDomainCustomV4ForService createDnsDomainCustomV4ForService() { + return new DnsDomainCustomV4ForService(); + } + + /** + * Create an instance of {@link DnsDomainGlobalV4ForService } + * + */ + public DnsDomainGlobalV4ForService createDnsDomainGlobalV4ForService() { + return new DnsDomainGlobalV4ForService(); + } + + /** + * Create an instance of {@link BypassManualTractionStrategyForService } + * + */ + public BypassManualTractionStrategyForService createBypassManualTractionStrategyForService() { + return new BypassManualTractionStrategyForService(); + } + + /** + * Create an instance of {@link DdosHttpGetUriGloProV4ForService } + * + */ + public DdosHttpGetUriGloProV4ForService createDdosHttpGetUriGloProV4ForService() { + return new DdosHttpGetUriGloProV4ForService(); + } + + /** + * Create an instance of {@link ProtectionObjectDataForService } + * + */ + public ProtectionObjectDataForService createProtectionObjectDataForService() { + return new ProtectionObjectDataForService(); + } + + /** + * Create an instance of {@link DdosHttpGetSipGloProV4ForService } + * + */ + public DdosHttpGetSipGloProV4ForService createDdosHttpGetSipGloProV4ForService() { + return new DdosHttpGetSipGloProV4ForService(); + } + + /** + * Create an instance of {@link DdosDnsRetryProtectForService } + * + */ + public DdosDnsRetryProtectForService createDdosDnsRetryProtectForService() { + return new DdosDnsRetryProtectForService(); + } + + /** + * Create an instance of {@link FingerprintUdpForService } + * + */ + public FingerprintUdpForService createFingerprintUdpForService() { + return new FingerprintUdpForService(); + } + + /** + * Create an instance of {@link FingerprintTcpForService } + * + */ + public FingerprintTcpForService createFingerprintTcpForService() { + return new FingerprintTcpForService(); + } + + /** + * Create an instance of {@link DnsSipCustomV4ForService } + * + */ + public DnsSipCustomV4ForService createDnsSipCustomV4ForService() { + return new DnsSipCustomV4ForService(); + } + + /** + * Create an instance of {@link DdosHttpGetSipCusProV4ForService } + * + */ + public DdosHttpGetSipCusProV4ForService createDdosHttpGetSipCusProV4ForService() { + return new DdosHttpGetSipCusProV4ForService(); + } + + /** + * Create an instance of {@link DnsSipGlobalV4ForService } + * + */ + public DnsSipGlobalV4ForService createDnsSipGlobalV4ForService() { + return new DnsSipGlobalV4ForService(); + } + + /** + * Create an instance of {@link DetectionObjectDataForService } + * + */ + public DetectionObjectDataForService createDetectionObjectDataForService() { + return new DetectionObjectDataForService(); + } + + /** + * Create an instance of {@link BlackHoleManualStrategyForService } + * + */ + public BlackHoleManualStrategyForService createBlackHoleManualStrategyForService() { + return new BlackHoleManualStrategyForService(); + } + + /** + * Create an instance of {@link BlackHoleAutoStrategyForService } + * + */ + public BlackHoleAutoStrategyForService createBlackHoleAutoStrategyForService() { + return new BlackHoleAutoStrategyForService(); + } + + /** + * Create an instance of {@link ProtectionStrategyTemplateForService } + * + */ + public ProtectionStrategyTemplateForService createProtectionStrategyTemplateForService() { + return new ProtectionStrategyTemplateForService(); + } + + /** + * Create an instance of {@link FingerprintOtherForService } + * + */ + public FingerprintOtherForService createFingerprintOtherForService() { + return new FingerprintOtherForService(); + } + + /** + * Create an instance of {@link DdosHttpGetUriCusProV4ForService } + * + */ + public DdosHttpGetUriCusProV4ForService createDdosHttpGetUriCusProV4ForService() { + return new DdosHttpGetUriCusProV4ForService(); + } + + /** + * Create an instance of {@link ProtectionTargetWithStrategyForService } + * + */ + public ProtectionTargetWithStrategyForService createProtectionTargetWithStrategyForService() { + return new ProtectionTargetWithStrategyForService(); + } + + /** + * Create an instance of {@link BlackAndWhiteListDataForService } + * + */ + public BlackAndWhiteListDataForService createBlackAndWhiteListDataForService() { + return new BlackAndWhiteListDataForService(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "dipEndIp", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceDipEndIp(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceDipEndIp_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "dipStartIp", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceDipStartIp(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceDipStartIp_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "dipType", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceDipType(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceDipType_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "hour", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceHour(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceHour_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "minute", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceMinute(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceMinute_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectionType", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceProtectionType(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceProtectionType_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "second", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceSecond(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceSecond_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "sipEndIp", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceSipEndIp(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceSipEndIp_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "sipStartIp", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceSipStartIp(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceSipStartIp_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "sipType", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceSipType(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceSipType_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "timeType", scope = BlackAndWhiteListDataForService.class) + public JAXBElement createBlackAndWhiteListDataForServiceTimeType(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceTimeType_QNAME, String.class, BlackAndWhiteListDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectionStrategyName", scope = ProtectionTargetWithStrategyForService.class) + public JAXBElement createProtectionTargetWithStrategyForServiceProtectionStrategyName(String value) { + return new JAXBElement(_ProtectionTargetWithStrategyForServiceProtectionStrategyName_QNAME, String.class, ProtectionTargetWithStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectionTargetName", scope = ProtectionTargetWithStrategyForService.class) + public JAXBElement createProtectionTargetWithStrategyForServiceProtectionTargetName(String value) { + return new JAXBElement(_ProtectionTargetWithStrategyForServiceProtectionTargetName_QNAME, String.class, ProtectionTargetWithStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "URI", scope = DdosHttpGetUriCusProV4ForService.class) + public JAXBElement createDdosHttpGetUriCusProV4ForServiceURI(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceURI_QNAME, String.class, DdosHttpGetUriCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DdosHttpGetUriCusProV4ForService.class) + public JAXBElement createDdosHttpGetUriCusProV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DdosHttpGetUriCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DdosHttpGetUriCusProV4ForService.class) + public JAXBElement createDdosHttpGetUriCusProV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DdosHttpGetUriCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosHttpGetUriCusProV4ForService.class) + public JAXBElement createDdosHttpGetUriCusProV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosHttpGetUriCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DdosHttpGetUriCusProV4ForService.class) + public JAXBElement createDdosHttpGetUriCusProV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DdosHttpGetUriCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom1", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceCustom1(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom1_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom2", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceCustom2(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom2_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom3", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceCustom3(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom3_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable1", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceEnable1(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable1_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable2", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceEnable2(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable2_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable3", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceEnable3(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable3_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip1", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceIp1(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp1_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip2", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceIp2(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp2_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip3", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceIp3(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp3_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength1", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeylength1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength1_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength2", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeylength2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength2_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength3", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeylength3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength3_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset1", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeyoffset1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset1_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset2", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeyoffset2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset2_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset3", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeyoffset3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset3_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype1", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeytype1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype1_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype2", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeytype2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype2_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype3", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceKeytype3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype3_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask1", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceMask1(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask1_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask2", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceMask2(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask2_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask3", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceMask3(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask3_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "threshold", scope = FingerprintOtherForService.class) + public JAXBElement createFingerprintOtherForServiceThreshold(String value) { + return new JAXBElement(_FingerprintOtherForServiceThreshold_QNAME, String.class, FingerprintOtherForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "description", scope = ProtectionStrategyTemplateForService.class) + public JAXBElement createProtectionStrategyTemplateForServiceDescription(String value) { + return new JAXBElement(_ProtectionStrategyTemplateForServiceDescription_QNAME, String.class, ProtectionStrategyTemplateForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = ProtectionStrategyTemplateForService.class) + public JAXBElement createProtectionStrategyTemplateForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, ProtectionStrategyTemplateForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "detectName", scope = BlackHoleAutoStrategyForService.class) + public JAXBElement createBlackHoleAutoStrategyForServiceDetectName(String value) { + return new JAXBElement(_BlackHoleAutoStrategyForServiceDetectName_QNAME, String.class, BlackHoleAutoStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "policyName", scope = BlackHoleAutoStrategyForService.class) + public JAXBElement createBlackHoleAutoStrategyForServicePolicyName(String value) { + return new JAXBElement(_BlackHoleAutoStrategyForServicePolicyName_QNAME, String.class, BlackHoleAutoStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "detectName", scope = BlackHoleManualStrategyForService.class) + public JAXBElement createBlackHoleManualStrategyForServiceDetectName(String value) { + return new JAXBElement(_BlackHoleAutoStrategyForServiceDetectName_QNAME, String.class, BlackHoleManualStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ipAddress", scope = BlackHoleManualStrategyForService.class) + public JAXBElement createBlackHoleManualStrategyForServiceIpAddress(String value) { + return new JAXBElement(_BlackHoleManualStrategyForServiceIpAddress_QNAME, String.class, BlackHoleManualStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "policyName", scope = BlackHoleManualStrategyForService.class) + public JAXBElement createBlackHoleManualStrategyForServicePolicyName(String value) { + return new JAXBElement(_BlackHoleAutoStrategyForServicePolicyName_QNAME, String.class, BlackHoleManualStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "cleaningDevices", scope = DetectionObjectDataForService.class) + public JAXBElement createDetectionObjectDataForServiceCleaningDevices(String value) { + return new JAXBElement(_DetectionObjectDataForServiceCleaningDevices_QNAME, String.class, DetectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "detectionDevices", scope = DetectionObjectDataForService.class) + public JAXBElement createDetectionObjectDataForServiceDetectionDevices(String value) { + return new JAXBElement(_DetectionObjectDataForServiceDetectionDevices_QNAME, String.class, DetectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "detectionName", scope = DetectionObjectDataForService.class) + public JAXBElement createDetectionObjectDataForServiceDetectionName(String value) { + return new JAXBElement(_DetectionObjectDataForServiceDetectionName_QNAME, String.class, DetectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ipSegment", scope = DetectionObjectDataForService.class) + public JAXBElement createDetectionObjectDataForServiceIpSegment(String value) { + return new JAXBElement(_DetectionObjectDataForServiceIpSegment_QNAME, String.class, DetectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DnsSipGlobalV4ForService.class) + public JAXBElement createDnsSipGlobalV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DnsSipGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DnsSipGlobalV4ForService.class) + public JAXBElement createDnsSipGlobalV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DnsSipGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DnsSipGlobalV4ForService.class) + public JAXBElement createDnsSipGlobalV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DnsSipGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DnsSipGlobalV4ForService.class) + public JAXBElement createDnsSipGlobalV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DnsSipGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DdosHttpGetSipCusProV4ForService.class) + public JAXBElement createDdosHttpGetSipCusProV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DdosHttpGetSipCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DdosHttpGetSipCusProV4ForService.class) + public JAXBElement createDdosHttpGetSipCusProV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DdosHttpGetSipCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosHttpGetSipCusProV4ForService.class) + public JAXBElement createDdosHttpGetSipCusProV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosHttpGetSipCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DdosHttpGetSipCusProV4ForService.class) + public JAXBElement createDdosHttpGetSipCusProV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DdosHttpGetSipCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "sip", scope = DdosHttpGetSipCusProV4ForService.class) + public JAXBElement createDdosHttpGetSipCusProV4ForServiceSip(String value) { + return new JAXBElement(_DdosHttpGetSipCusProV4ForServiceSip_QNAME, String.class, DdosHttpGetSipCusProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DnsSipCustomV4ForService.class) + public JAXBElement createDnsSipCustomV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DnsSipCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DnsSipCustomV4ForService.class) + public JAXBElement createDnsSipCustomV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DnsSipCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DnsSipCustomV4ForService.class) + public JAXBElement createDnsSipCustomV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DnsSipCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DnsSipCustomV4ForService.class) + public JAXBElement createDnsSipCustomV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DnsSipCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "sipend", scope = DnsSipCustomV4ForService.class) + public JAXBElement createDnsSipCustomV4ForServiceSipend(String value) { + return new JAXBElement(_DnsSipCustomV4ForServiceSipend_QNAME, String.class, DnsSipCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "sipstart", scope = DnsSipCustomV4ForService.class) + public JAXBElement createDnsSipCustomV4ForServiceSipstart(String value) { + return new JAXBElement(_DnsSipCustomV4ForServiceSipstart_QNAME, String.class, DnsSipCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceCustom1(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceCustom2(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceCustom3(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceEnable1(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceEnable2(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceEnable3(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "flag1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceFlag1(String value) { + return new JAXBElement(_FingerprintTcpForServiceFlag1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "flag2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceFlag2(String value) { + return new JAXBElement(_FingerprintTcpForServiceFlag2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "flag3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceFlag3(String value) { + return new JAXBElement(_FingerprintTcpForServiceFlag3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceIp1(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceIp2(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceIp3(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeylength1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeylength2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeylength3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeyoffset1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeyoffset2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeyoffset3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeytype1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeytype2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceKeytype3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceMask1(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceMask2(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceMask3(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "port1", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServicePort1(String value) { + return new JAXBElement(_FingerprintTcpForServicePort1_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "port2", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServicePort2(String value) { + return new JAXBElement(_FingerprintTcpForServicePort2_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "port3", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServicePort3(String value) { + return new JAXBElement(_FingerprintTcpForServicePort3_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "threshold", scope = FingerprintTcpForService.class) + public JAXBElement createFingerprintTcpForServiceThreshold(String value) { + return new JAXBElement(_FingerprintOtherForServiceThreshold_QNAME, String.class, FingerprintTcpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceCustom1(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceCustom2(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceCustom3(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceEnable1(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceEnable2(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceEnable3(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceIp1(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceIp2(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceIp3(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeylength1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeylength2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeylength3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeyoffset1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeyoffset2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeyoffset3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeytype1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeytype2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceKeytype3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceMask1(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceMask2(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceMask3(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "port1", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServicePort1(String value) { + return new JAXBElement(_FingerprintTcpForServicePort1_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "port2", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServicePort2(String value) { + return new JAXBElement(_FingerprintTcpForServicePort2_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "port3", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServicePort3(String value) { + return new JAXBElement(_FingerprintTcpForServicePort3_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "threshold", scope = FingerprintUdpForService.class) + public JAXBElement createFingerprintUdpForServiceThreshold(String value) { + return new JAXBElement(_FingerprintOtherForServiceThreshold_QNAME, String.class, FingerprintUdpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DdosDnsRetryProtectForService.class) + public JAXBElement createDdosDnsRetryProtectForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DdosDnsRetryProtectForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "alertthreshold", scope = DdosDnsRetryProtectForService.class) + public JAXBElement createDdosDnsRetryProtectForServiceAlertthreshold(String value) { + return new JAXBElement(_DdosDnsRetryProtectForServiceAlertthreshold_QNAME, String.class, DdosDnsRetryProtectForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DdosDnsRetryProtectForService.class) + public JAXBElement createDdosDnsRetryProtectForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DdosDnsRetryProtectForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosDnsRetryProtectForService.class) + public JAXBElement createDdosDnsRetryProtectForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosDnsRetryProtectForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DdosDnsRetryProtectForService.class) + public JAXBElement createDdosDnsRetryProtectForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DdosDnsRetryProtectForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DdosHttpGetSipGloProV4ForService.class) + public JAXBElement createDdosHttpGetSipGloProV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DdosHttpGetSipGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DdosHttpGetSipGloProV4ForService.class) + public JAXBElement createDdosHttpGetSipGloProV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DdosHttpGetSipGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosHttpGetSipGloProV4ForService.class) + public JAXBElement createDdosHttpGetSipGloProV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosHttpGetSipGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DdosHttpGetSipGloProV4ForService.class) + public JAXBElement createDdosHttpGetSipGloProV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DdosHttpGetSipGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "type", scope = DdosHttpGetSipGloProV4ForService.class) + public JAXBElement createDdosHttpGetSipGloProV4ForServiceType(String value) { + return new JAXBElement(_DdosHttpGetSipGloProV4ForServiceType_QNAME, String.class, DdosHttpGetSipGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "cleaningDevices", scope = ProtectionObjectDataForService.class) + public JAXBElement createProtectionObjectDataForServiceCleaningDevices(String value) { + return new JAXBElement(_DetectionObjectDataForServiceCleaningDevices_QNAME, String.class, ProtectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "detectionDevices", scope = ProtectionObjectDataForService.class) + public JAXBElement createProtectionObjectDataForServiceDetectionDevices(String value) { + return new JAXBElement(_DetectionObjectDataForServiceDetectionDevices_QNAME, String.class, ProtectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ipSegment", scope = ProtectionObjectDataForService.class) + public JAXBElement createProtectionObjectDataForServiceIpSegment(String value) { + return new JAXBElement(_DetectionObjectDataForServiceIpSegment_QNAME, String.class, ProtectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectionName", scope = ProtectionObjectDataForService.class) + public JAXBElement createProtectionObjectDataForServiceProtectionName(String value) { + return new JAXBElement(_ProtectionObjectDataForServiceProtectionName_QNAME, String.class, ProtectionObjectDataForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DdosHttpGetUriGloProV4ForService.class) + public JAXBElement createDdosHttpGetUriGloProV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DdosHttpGetUriGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DdosHttpGetUriGloProV4ForService.class) + public JAXBElement createDdosHttpGetUriGloProV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DdosHttpGetUriGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosHttpGetUriGloProV4ForService.class) + public JAXBElement createDdosHttpGetUriGloProV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosHttpGetUriGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DdosHttpGetUriGloProV4ForService.class) + public JAXBElement createDdosHttpGetUriGloProV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DdosHttpGetUriGloProV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enabled", scope = BypassManualTractionStrategyForService.class) + public JAXBElement createBypassManualTractionStrategyForServiceEnabled(String value) { + return new JAXBElement(_BypassManualTractionStrategyForServiceEnabled_QNAME, String.class, BypassManualTractionStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ipRange", scope = BypassManualTractionStrategyForService.class) + public JAXBElement createBypassManualTractionStrategyForServiceIpRange(String value) { + return new JAXBElement(_BypassManualTractionStrategyForServiceIpRange_QNAME, String.class, BypassManualTractionStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "policyName", scope = BypassManualTractionStrategyForService.class) + public JAXBElement createBypassManualTractionStrategyForServicePolicyName(String value) { + return new JAXBElement(_BlackHoleAutoStrategyForServicePolicyName_QNAME, String.class, BypassManualTractionStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectName", scope = BypassManualTractionStrategyForService.class) + public JAXBElement createBypassManualTractionStrategyForServiceProtectName(String value) { + return new JAXBElement(_BypassManualTractionStrategyForServiceProtectName_QNAME, String.class, BypassManualTractionStrategyForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DnsDomainGlobalV4ForService.class) + public JAXBElement createDnsDomainGlobalV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DnsDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DnsDomainGlobalV4ForService.class) + public JAXBElement createDnsDomainGlobalV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DnsDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DnsDomainGlobalV4ForService.class) + public JAXBElement createDnsDomainGlobalV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DnsDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DnsDomainGlobalV4ForService.class) + public JAXBElement createDnsDomainGlobalV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DnsDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DnsDomainCustomV4ForService.class) + public JAXBElement createDnsDomainCustomV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DnsDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "domain", scope = DnsDomainCustomV4ForService.class) + public JAXBElement createDnsDomainCustomV4ForServiceDomain(String value) { + return new JAXBElement(_DnsDomainCustomV4ForServiceDomain_QNAME, String.class, DnsDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DnsDomainCustomV4ForService.class) + public JAXBElement createDnsDomainCustomV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DnsDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DnsDomainCustomV4ForService.class) + public JAXBElement createDnsDomainCustomV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DnsDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DnsDomainCustomV4ForService.class) + public JAXBElement createDnsDomainCustomV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DnsDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DnsSecDomainGlobalV4ForService.class) + public JAXBElement createDnsSecDomainGlobalV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DnsSecDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DnsSecDomainGlobalV4ForService.class) + public JAXBElement createDnsSecDomainGlobalV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DnsSecDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DnsSecDomainGlobalV4ForService.class) + public JAXBElement createDnsSecDomainGlobalV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DnsSecDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DnsSecDomainGlobalV4ForService.class) + public JAXBElement createDnsSecDomainGlobalV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DnsSecDomainGlobalV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DdosCCuserGroupV4ForService.class) + public JAXBElement createDdosCCuserGroupV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DdosCCuserGroupV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosCCuserGroupV4ForService.class) + public JAXBElement createDdosCCuserGroupV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosCCuserGroupV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom1", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceCustom1(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom1_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom2", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceCustom2(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom2_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "custom3", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceCustom3(String value) { + return new JAXBElement(_FingerprintOtherForServiceCustom3_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable1", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceEnable1(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable1_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable2", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceEnable2(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable2_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable3", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceEnable3(String value) { + return new JAXBElement(_FingerprintOtherForServiceEnable3_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip1", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceIp1(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp1_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip2", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceIp2(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp2_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "ip3", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceIp3(String value) { + return new JAXBElement(_FingerprintOtherForServiceIp3_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength1", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeylength1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength1_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength2", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeylength2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength2_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keylength3", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeylength3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeylength3_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset1", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeyoffset1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset1_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset2", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeyoffset2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset2_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keyoffset3", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeyoffset3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeyoffset3_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype1", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeytype1(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype1_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype2", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeytype2(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype2_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "keytype3", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceKeytype3(String value) { + return new JAXBElement(_FingerprintOtherForServiceKeytype3_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask1", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceMask1(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask1_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask2", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceMask2(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask2_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "mask3", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceMask3(String value) { + return new JAXBElement(_FingerprintOtherForServiceMask3_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "threshold", scope = FingerprintIcmpForService.class) + public JAXBElement createFingerprintIcmpForServiceThreshold(String value) { + return new JAXBElement(_FingerprintOtherForServiceThreshold_QNAME, String.class, FingerprintIcmpForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "acDip", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceAcDip(String value) { + return new JAXBElement(_DdosACProtectionForServiceAcDip_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "acDmask", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceAcDmask(String value) { + return new JAXBElement(_DdosACProtectionForServiceAcDmask_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "acSip", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceAcSip(String value) { + return new JAXBElement(_DdosACProtectionForServiceAcSip_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "acSmask", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceAcSmask(String value) { + return new JAXBElement(_DdosACProtectionForServiceAcSmask_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "dstPortMax", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceDstPortMax(String value) { + return new JAXBElement(_DdosACProtectionForServiceDstPortMax_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "dstPortMin", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceDstPortMin(String value) { + return new JAXBElement(_DdosACProtectionForServiceDstPortMin_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "endLocation", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceEndLocation(String value) { + return new JAXBElement(_DdosACProtectionForServiceEndLocation_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "fixString", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceFixString(String value) { + return new JAXBElement(_DdosACProtectionForServiceFixString_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protocol", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceProtocol(String value) { + return new JAXBElement(_DdosACProtectionForServiceProtocol_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "regularExpression", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceRegularExpression(String value) { + return new JAXBElement(_DdosACProtectionForServiceRegularExpression_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "srcPortMax", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceSrcPortMax(String value) { + return new JAXBElement(_DdosACProtectionForServiceSrcPortMax_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "srcPortMin", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceSrcPortMin(String value) { + return new JAXBElement(_DdosACProtectionForServiceSrcPortMin_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "startLocation", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceStartLocation(String value) { + return new JAXBElement(_DdosACProtectionForServiceStartLocation_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "threshold", scope = DdosACProtectionForService.class) + public JAXBElement createDdosACProtectionForServiceThreshold(String value) { + return new JAXBElement(_FingerprintOtherForServiceThreshold_QNAME, String.class, DdosACProtectionForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "action", scope = DnsSecDomainCustomV4ForService.class) + public JAXBElement createDnsSecDomainCustomV4ForServiceAction(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceAction_QNAME, String.class, DnsSecDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "domain", scope = DnsSecDomainCustomV4ForService.class) + public JAXBElement createDnsSecDomainCustomV4ForServiceDomain(String value) { + return new JAXBElement(_DnsDomainCustomV4ForServiceDomain_QNAME, String.class, DnsSecDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "name", scope = DnsSecDomainCustomV4ForService.class) + public JAXBElement createDnsSecDomainCustomV4ForServiceName(String value) { + return new JAXBElement(_BlackAndWhiteListDataForServiceName_QNAME, String.class, DnsSecDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DnsSecDomainCustomV4ForService.class) + public JAXBElement createDnsSecDomainCustomV4ForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DnsSecDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "protectthreshold", scope = DnsSecDomainCustomV4ForService.class) + public JAXBElement createDnsSecDomainCustomV4ForServiceProtectthreshold(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceProtectthreshold_QNAME, String.class, DnsSecDomainCustomV4ForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://service.ntc.dp.com", name = "detectionObjName", scope = AnomalyDetectionStrategy.class) + public JAXBElement createAnomalyDetectionStrategyDetectionObjName(String value) { + return new JAXBElement(_AnomalyDetectionStrategyDetectionObjName_QNAME, String.class, AnomalyDetectionStrategy.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://service.ntc.dp.com", name = "strategyName", scope = AnomalyDetectionStrategy.class) + public JAXBElement createAnomalyDetectionStrategyStrategyName(String value) { + return new JAXBElement(_AnomalyDetectionStrategyStrategyName_QNAME, String.class, AnomalyDetectionStrategy.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalUdpFragForService.class) + public JAXBElement createDdosGlobalUdpFragForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalUdpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "udpenable", scope = DdosGlobalUdpFragForService.class) + public JAXBElement createDdosGlobalUdpFragForServiceUdpenable(String value) { + return new JAXBElement(_DdosGlobalUdpFragForServiceUdpenable_QNAME, String.class, DdosGlobalUdpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "udpthreshold", scope = DdosGlobalUdpFragForService.class) + public JAXBElement createDdosGlobalUdpFragForServiceUdpthreshold(String value) { + return new JAXBElement(_DdosGlobalUdpFragForServiceUdpthreshold_QNAME, String.class, DdosGlobalUdpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "lengthenable", scope = DdosGlobalIcmpLengthForService.class) + public JAXBElement createDdosGlobalIcmpLengthForServiceLengthenable(String value) { + return new JAXBElement(_DdosGlobalIcmpLengthForServiceLengthenable_QNAME, String.class, DdosGlobalIcmpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "maxlength", scope = DdosGlobalIcmpLengthForService.class) + public JAXBElement createDdosGlobalIcmpLengthForServiceMaxlength(String value) { + return new JAXBElement(_DdosGlobalIcmpLengthForServiceMaxlength_QNAME, String.class, DdosGlobalIcmpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "minlength", scope = DdosGlobalIcmpLengthForService.class) + public JAXBElement createDdosGlobalIcmpLengthForServiceMinlength(String value) { + return new JAXBElement(_DdosGlobalIcmpLengthForServiceMinlength_QNAME, String.class, DdosGlobalIcmpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalIcmpLengthForService.class) + public JAXBElement createDdosGlobalIcmpLengthForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalIcmpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalOtherFragForService.class) + public JAXBElement createDdosGlobalOtherFragForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalOtherFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "otherenable", scope = DdosGlobalOtherFragForService.class) + public JAXBElement createDdosGlobalOtherFragForServiceOtherenable(String value) { + return new JAXBElement(_DdosGlobalOtherFragForServiceOtherenable_QNAME, String.class, DdosGlobalOtherFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "otherthreshold", scope = DdosGlobalOtherFragForService.class) + public JAXBElement createDdosGlobalOtherFragForServiceOtherthreshold(String value) { + return new JAXBElement(_DdosGlobalOtherFragForServiceOtherthreshold_QNAME, String.class, DdosGlobalOtherFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "finMax", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceFinMax(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceFinMax_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "finMin", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceFinMin(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceFinMin_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "finenable", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceFinenable(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceFinenable_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "rstMax", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceRstMax(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceRstMax_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "rstMin", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceRstMin(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceRstMin_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "rstenable", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceRstenable(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceRstenable_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "synMax", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceSynMax(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceSynMax_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "synMin", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceSynMin(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceSynMin_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "synackMax", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceSynackMax(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceSynackMax_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "synackMin", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceSynackMin(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceSynackMin_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "synackenable", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceSynackenable(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceSynackenable_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "synenable", scope = DdosGlobalTcpLengthForService.class) + public JAXBElement createDdosGlobalTcpLengthForServiceSynenable(String value) { + return new JAXBElement(_DdosGlobalTcpLengthForServiceSynenable_QNAME, String.class, DdosGlobalTcpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "enable", scope = DdosGlobalSynFloodForService.class) + public JAXBElement createDdosGlobalSynFloodForServiceEnable(String value) { + return new JAXBElement(_DdosGlobalSynFloodForServiceEnable_QNAME, String.class, DdosGlobalSynFloodForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalSynFloodForService.class) + public JAXBElement createDdosGlobalSynFloodForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalSynFloodForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "threshold", scope = DdosGlobalSynFloodForService.class) + public JAXBElement createDdosGlobalSynFloodForServiceThreshold(String value) { + return new JAXBElement(_FingerprintOtherForServiceThreshold_QNAME, String.class, DdosGlobalSynFloodForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "type", scope = DdosGlobalSynFloodForService.class) + public JAXBElement createDdosGlobalSynFloodForServiceType(String value) { + return new JAXBElement(_DdosHttpGetSipGloProV4ForServiceType_QNAME, String.class, DdosGlobalSynFloodForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalTcpFragForService.class) + public JAXBElement createDdosGlobalTcpFragForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalTcpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "tcpenable", scope = DdosGlobalTcpFragForService.class) + public JAXBElement createDdosGlobalTcpFragForServiceTcpenable(String value) { + return new JAXBElement(_DdosGlobalTcpFragForServiceTcpenable_QNAME, String.class, DdosGlobalTcpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "tcpthreshold", scope = DdosGlobalTcpFragForService.class) + public JAXBElement createDdosGlobalTcpFragForServiceTcpthreshold(String value) { + return new JAXBElement(_DdosGlobalTcpFragForServiceTcpthreshold_QNAME, String.class, DdosGlobalTcpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalUdpPayloadForService.class) + public JAXBElement createDdosGlobalUdpPayloadForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalUdpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadOffsetMax", scope = DdosGlobalUdpPayloadForService.class) + public JAXBElement createDdosGlobalUdpPayloadForServicePayloadOffsetMax(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadOffsetMax_QNAME, String.class, DdosGlobalUdpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadOffsetMin", scope = DdosGlobalUdpPayloadForService.class) + public JAXBElement createDdosGlobalUdpPayloadForServicePayloadOffsetMin(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadOffsetMin_QNAME, String.class, DdosGlobalUdpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadThreshold", scope = DdosGlobalUdpPayloadForService.class) + public JAXBElement createDdosGlobalUdpPayloadForServicePayloadThreshold(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadThreshold_QNAME, String.class, DdosGlobalUdpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadcontentenable", scope = DdosGlobalUdpPayloadForService.class) + public JAXBElement createDdosGlobalUdpPayloadForServicePayloadcontentenable(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadcontentenable_QNAME, String.class, DdosGlobalUdpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloademptyenable", scope = DdosGlobalUdpPayloadForService.class) + public JAXBElement createDdosGlobalUdpPayloadForServicePayloademptyenable(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloademptyenable_QNAME, String.class, DdosGlobalUdpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalIcmpPayloadForService.class) + public JAXBElement createDdosGlobalIcmpPayloadForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalIcmpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadOffsetMax", scope = DdosGlobalIcmpPayloadForService.class) + public JAXBElement createDdosGlobalIcmpPayloadForServicePayloadOffsetMax(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadOffsetMax_QNAME, String.class, DdosGlobalIcmpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadOffsetMin", scope = DdosGlobalIcmpPayloadForService.class) + public JAXBElement createDdosGlobalIcmpPayloadForServicePayloadOffsetMin(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadOffsetMin_QNAME, String.class, DdosGlobalIcmpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadThreshold", scope = DdosGlobalIcmpPayloadForService.class) + public JAXBElement createDdosGlobalIcmpPayloadForServicePayloadThreshold(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadThreshold_QNAME, String.class, DdosGlobalIcmpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadcontentenable", scope = DdosGlobalIcmpPayloadForService.class) + public JAXBElement createDdosGlobalIcmpPayloadForServicePayloadcontentenable(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadcontentenable_QNAME, String.class, DdosGlobalIcmpPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "icmpenable", scope = DdosGlobalIcmpFragForService.class) + public JAXBElement createDdosGlobalIcmpFragForServiceIcmpenable(String value) { + return new JAXBElement(_DdosGlobalIcmpFragForServiceIcmpenable_QNAME, String.class, DdosGlobalIcmpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "icmpthreshold", scope = DdosGlobalIcmpFragForService.class) + public JAXBElement createDdosGlobalIcmpFragForServiceIcmpthreshold(String value) { + return new JAXBElement(_DdosGlobalIcmpFragForServiceIcmpthreshold_QNAME, String.class, DdosGlobalIcmpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalIcmpFragForService.class) + public JAXBElement createDdosGlobalIcmpFragForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalIcmpFragForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalTcpFlagForService.class) + public JAXBElement createDdosGlobalTcpFlagForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalTcpFlagForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "tcpFlagenable", scope = DdosGlobalTcpFlagForService.class) + public JAXBElement createDdosGlobalTcpFlagForServiceTcpFlagenable(String value) { + return new JAXBElement(_DdosGlobalTcpFlagForServiceTcpFlagenable_QNAME, String.class, DdosGlobalTcpFlagForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalAckPayloadForService.class) + public JAXBElement createDdosGlobalAckPayloadForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalAckPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadOffsetMax", scope = DdosGlobalAckPayloadForService.class) + public JAXBElement createDdosGlobalAckPayloadForServicePayloadOffsetMax(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadOffsetMax_QNAME, String.class, DdosGlobalAckPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadOffsetMin", scope = DdosGlobalAckPayloadForService.class) + public JAXBElement createDdosGlobalAckPayloadForServicePayloadOffsetMin(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadOffsetMin_QNAME, String.class, DdosGlobalAckPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadThreshold", scope = DdosGlobalAckPayloadForService.class) + public JAXBElement createDdosGlobalAckPayloadForServicePayloadThreshold(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadThreshold_QNAME, String.class, DdosGlobalAckPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "payloadcontentenable", scope = DdosGlobalAckPayloadForService.class) + public JAXBElement createDdosGlobalAckPayloadForServicePayloadcontentenable(String value) { + return new JAXBElement(_DdosGlobalUdpPayloadForServicePayloadcontentenable_QNAME, String.class, DdosGlobalAckPayloadForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "lengthenable", scope = DdosGlobalUdpLengthForService.class) + public JAXBElement createDdosGlobalUdpLengthForServiceLengthenable(String value) { + return new JAXBElement(_DdosGlobalIcmpLengthForServiceLengthenable_QNAME, String.class, DdosGlobalUdpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "maxlength", scope = DdosGlobalUdpLengthForService.class) + public JAXBElement createDdosGlobalUdpLengthForServiceMaxlength(String value) { + return new JAXBElement(_DdosGlobalIcmpLengthForServiceMaxlength_QNAME, String.class, DdosGlobalUdpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "minlength", scope = DdosGlobalUdpLengthForService.class) + public JAXBElement createDdosGlobalUdpLengthForServiceMinlength(String value) { + return new JAXBElement(_DdosGlobalIcmpLengthForServiceMinlength_QNAME, String.class, DdosGlobalUdpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalUdpLengthForService.class) + public JAXBElement createDdosGlobalUdpLengthForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalUdpLengthForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "chosen", scope = DdosGlobalTcpStateForService.class) + public JAXBElement createDdosGlobalTcpStateForServiceChosen(String value) { + return new JAXBElement(_DdosGlobalTcpStateForServiceChosen_QNAME, String.class, DdosGlobalTcpStateForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "objName", scope = DdosGlobalTcpStateForService.class) + public JAXBElement createDdosGlobalTcpStateForServiceObjName(String value) { + return new JAXBElement(_DdosHttpGetUriCusProV4ForServiceObjName_QNAME, String.class, DdosGlobalTcpStateForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://data.ntc.dp.com", name = "statenable", scope = DdosGlobalTcpStateForService.class) + public JAXBElement createDdosGlobalTcpStateForServiceStatenable(String value) { + return new JAXBElement(_DdosGlobalTcpStateForServiceStatenable_QNAME, String.class, DdosGlobalTcpStateForService.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://service.ntc.dp.com", name = "resultInfo", scope = NtcRequestResultInfo.class) + public JAXBElement createNtcRequestResultInfoResultInfo(String value) { + return new JAXBElement(_NtcRequestResultInfoResultInfo_QNAME, String.class, NtcRequestResultInfo.class, value); + } + +} diff --git a/src/main/java/com/dptech/umc/ProtectionObjectDataForService.java b/src/main/java/com/dptech/umc/ProtectionObjectDataForService.java new file mode 100644 index 00000000..9a3558d5 --- /dev/null +++ b/src/main/java/com/dptech/umc/ProtectionObjectDataForService.java @@ -0,0 +1,201 @@ + +package com.dptech.umc; + +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; + + +/** + *

ProtectionObjectDataForService complex type Java ࡣ + * + *

ģʽƬָڴеԤݡ + * + *

+ * <complexType name="ProtectionObjectDataForService">
+ *   <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="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="protectionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProtectionObjectDataForService", namespace = "http://data.ntc.dp.com", propOrder = { + "cleaningDevices", + "cleaningType", + "detectionDevices", + "ipSegment", + "ipType", + "protectionName" +}) +public class ProtectionObjectDataForService { + + @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 = "ipSegment", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement ipSegment; + protected Integer ipType; + @XmlElementRef(name = "protectionName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectionName; + + /** + * ȡ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; + } + + /** + * ȡ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; + } + + /** + * ȡprotectionNameԵֵ + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectionName() { + return protectionName; + } + + /** + * protectionNameԵֵ + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectionName(JAXBElement value) { + this.protectionName = value; + } + +} diff --git a/src/main/java/com/dptech/umc/ProtectionStrategyTemplateForService.java b/src/main/java/com/dptech/umc/ProtectionStrategyTemplateForService.java new file mode 100644 index 00000000..8a5a5db0 --- /dev/null +++ b/src/main/java/com/dptech/umc/ProtectionStrategyTemplateForService.java @@ -0,0 +1,91 @@ + +package com.dptech.umc; + +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; + + +/** + *

ProtectionStrategyTemplateForService complex type Java ࡣ + * + *

ģʽƬָڴеԤݡ + * + *

+ * <complexType name="ProtectionStrategyTemplateForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProtectionStrategyTemplateForService", namespace = "http://data.ntc.dp.com", propOrder = { + "description", + "name" +}) +public class ProtectionStrategyTemplateForService { + + @XmlElementRef(name = "description", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement description; + @XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement name; + + /** + * ȡdescriptionԵֵ + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getDescription() { + return description; + } + + /** + * descriptionԵֵ + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setDescription(JAXBElement value) { + this.description = 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; + } + +} diff --git a/src/main/java/com/dptech/umc/ProtectionTargetWithStrategyForService.java b/src/main/java/com/dptech/umc/ProtectionTargetWithStrategyForService.java new file mode 100644 index 00000000..89d83ffe --- /dev/null +++ b/src/main/java/com/dptech/umc/ProtectionTargetWithStrategyForService.java @@ -0,0 +1,91 @@ + +package com.dptech.umc; + +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; + + +/** + *

ProtectionTargetWithStrategyForService complex type Java ࡣ + * + *

ģʽƬָڴеԤݡ + * + *

+ * <complexType name="ProtectionTargetWithStrategyForService">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="protectionStrategyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="protectionTargetName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProtectionTargetWithStrategyForService", namespace = "http://data.ntc.dp.com", propOrder = { + "protectionStrategyName", + "protectionTargetName" +}) +public class ProtectionTargetWithStrategyForService { + + @XmlElementRef(name = "protectionStrategyName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectionStrategyName; + @XmlElementRef(name = "protectionTargetName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false) + protected JAXBElement protectionTargetName; + + /** + * ȡprotectionStrategyNameԵֵ + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectionStrategyName() { + return protectionStrategyName; + } + + /** + * protectionStrategyNameԵֵ + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectionStrategyName(JAXBElement value) { + this.protectionStrategyName = value; + } + + /** + * ȡprotectionTargetNameԵֵ + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public JAXBElement getProtectionTargetName() { + return protectionTargetName; + } + + /** + * protectionTargetNameԵֵ + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link String }{@code >} + * + */ + public void setProtectionTargetName(JAXBElement value) { + this.protectionTargetName = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMC.java new file mode 100644 index 00000000..6b34272e --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMC.java @@ -0,0 +1,176 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "payloadcontentenable", + "payloadThreshold", + "payloadOffsetMin", + "payloadOffsetMax" +}) +@XmlRootElement(name = "setDdosGlobalAckPayloadForUMC") +public class SetDdosGlobalAckPayloadForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String payloadcontentenable; + @XmlElement(required = true, nillable = true) + protected String payloadThreshold; + @XmlElement(required = true, nillable = true) + protected String payloadOffsetMin; + @XmlElement(required = true, nillable = true) + protected String payloadOffsetMax; + + /** + * ȡ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; + } + + /** + * ȡpayloadcontentenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadcontentenable() { + return payloadcontentenable; + } + + /** + * payloadcontentenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadcontentenable(String value) { + this.payloadcontentenable = value; + } + + /** + * ȡpayloadThresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadThreshold() { + return payloadThreshold; + } + + /** + * payloadThresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadThreshold(String value) { + this.payloadThreshold = value; + } + + /** + * ȡpayloadOffsetMinԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadOffsetMin() { + return payloadOffsetMin; + } + + /** + * payloadOffsetMinԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadOffsetMin(String value) { + this.payloadOffsetMin = value; + } + + /** + * ȡpayloadOffsetMaxԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadOffsetMax() { + return payloadOffsetMax; + } + + /** + * payloadOffsetMaxԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadOffsetMax(String value) { + this.payloadOffsetMax = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMCResponse.java new file mode 100644 index 00000000..686cce97 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalAckPayloadForUMCResponse") +public class SetDdosGlobalAckPayloadForUMCResponse { + + @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/umc/SetDdosGlobalIcmpFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMC.java new file mode 100644 index 00000000..659a260b --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMC.java @@ -0,0 +1,120 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="icmpenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="icmpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "icmpenable", + "icmpthreshold" +}) +@XmlRootElement(name = "setDdosGlobalIcmpFragForUMC") +public class SetDdosGlobalIcmpFragForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String icmpenable; + @XmlElement(required = true, nillable = true) + protected String icmpthreshold; + + /** + * ȡ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; + } + + /** + * ȡicmpenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIcmpenable() { + return icmpenable; + } + + /** + * icmpenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIcmpenable(String value) { + this.icmpenable = value; + } + + /** + * ȡicmpthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getIcmpthreshold() { + return icmpthreshold; + } + + /** + * icmpthresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIcmpthreshold(String value) { + this.icmpthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMCResponse.java new file mode 100644 index 00000000..f0779d7d --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalIcmpFragForUMCResponse") +public class SetDdosGlobalIcmpFragForUMCResponse { + + @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/umc/SetDdosGlobalIcmpLengthForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMC.java new file mode 100644 index 00000000..ca3e7eb9 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMC.java @@ -0,0 +1,148 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lengthenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="minlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="maxlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "lengthenable", + "minlength", + "maxlength" +}) +@XmlRootElement(name = "setDdosGlobalIcmpLengthForUMC") +public class SetDdosGlobalIcmpLengthForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String lengthenable; + @XmlElement(required = true, nillable = true) + protected String minlength; + @XmlElement(required = true, nillable = true) + protected String maxlength; + + /** + * ȡ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; + } + + /** + * ȡlengthenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getLengthenable() { + return lengthenable; + } + + /** + * lengthenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLengthenable(String value) { + this.lengthenable = value; + } + + /** + * ȡminlengthԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMinlength() { + return minlength; + } + + /** + * minlengthԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMinlength(String value) { + this.minlength = value; + } + + /** + * ȡmaxlengthԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxlength() { + return maxlength; + } + + /** + * maxlengthԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxlength(String value) { + this.maxlength = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMCResponse.java new file mode 100644 index 00000000..3e2d65d6 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalIcmpLengthForUMCResponse") +public class SetDdosGlobalIcmpLengthForUMCResponse { + + @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/umc/SetDdosGlobalIcmpPayloadForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMC.java new file mode 100644 index 00000000..c30dac6f --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMC.java @@ -0,0 +1,176 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "payloadcontentenable", + "payloadThreshold", + "payloadOffsetMin", + "payloadOffsetMax" +}) +@XmlRootElement(name = "setDdosGlobalIcmpPayloadForUMC") +public class SetDdosGlobalIcmpPayloadForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String payloadcontentenable; + @XmlElement(required = true, nillable = true) + protected String payloadThreshold; + @XmlElement(required = true, nillable = true) + protected String payloadOffsetMin; + @XmlElement(required = true, nillable = true) + protected String payloadOffsetMax; + + /** + * ȡ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; + } + + /** + * ȡpayloadcontentenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadcontentenable() { + return payloadcontentenable; + } + + /** + * payloadcontentenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadcontentenable(String value) { + this.payloadcontentenable = value; + } + + /** + * ȡpayloadThresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadThreshold() { + return payloadThreshold; + } + + /** + * payloadThresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadThreshold(String value) { + this.payloadThreshold = value; + } + + /** + * ȡpayloadOffsetMinԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadOffsetMin() { + return payloadOffsetMin; + } + + /** + * payloadOffsetMinԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadOffsetMin(String value) { + this.payloadOffsetMin = value; + } + + /** + * ȡpayloadOffsetMaxԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadOffsetMax() { + return payloadOffsetMax; + } + + /** + * payloadOffsetMaxԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadOffsetMax(String value) { + this.payloadOffsetMax = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMCResponse.java new file mode 100644 index 00000000..55aaefa1 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalIcmpPayloadForUMCResponse") +public class SetDdosGlobalIcmpPayloadForUMCResponse { + + @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/umc/SetDdosGlobalOtherFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMC.java new file mode 100644 index 00000000..fe4ebef2 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMC.java @@ -0,0 +1,120 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="otherenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="otherthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "otherenable", + "otherthreshold" +}) +@XmlRootElement(name = "setDdosGlobalOtherFragForUMC") +public class SetDdosGlobalOtherFragForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String otherenable; + @XmlElement(required = true, nillable = true) + protected String otherthreshold; + + /** + * ȡ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; + } + + /** + * ȡotherenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getOtherenable() { + return otherenable; + } + + /** + * otherenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOtherenable(String value) { + this.otherenable = value; + } + + /** + * ȡotherthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getOtherthreshold() { + return otherthreshold; + } + + /** + * otherthresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOtherthreshold(String value) { + this.otherthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMCResponse.java new file mode 100644 index 00000000..5b84a4a3 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalOtherFragForUMCResponse") +public class SetDdosGlobalOtherFragForUMCResponse { + + @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/umc/SetDdosGlobalSynFloodForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMC.java new file mode 100644 index 00000000..66a261bb --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMC.java @@ -0,0 +1,148 @@ + +package com.dptech.umc; + +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="enable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "enable", + "objName", + "threshold", + "type" +}) +@XmlRootElement(name = "setDdosGlobalSynFloodForUMC") +public class SetDdosGlobalSynFloodForUMC { + + @XmlElement(required = true, nillable = true) + protected String enable; + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String threshold; + @XmlElement(required = true, nillable = true) + protected String type; + + /** + * ȡenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnable() { + return enable; + } + + /** + * enableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnable(String value) { + this.enable = 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; + } + + /** + * ȡthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getThreshold() { + return threshold; + } + + /** + * thresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setThreshold(String value) { + this.threshold = value; + } + + /** + * ȡtypeԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * typeԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMCResponse.java new file mode 100644 index 00000000..113635f3 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalSynFloodForUMCResponse") +public class SetDdosGlobalSynFloodForUMCResponse { + + @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/umc/SetDdosGlobalTcpFlagForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMC.java new file mode 100644 index 00000000..96a857ab --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tcpFlagenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "tcpFlagenable" +}) +@XmlRootElement(name = "setDdosGlobalTcpFlagForUMC") +public class SetDdosGlobalTcpFlagForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String tcpFlagenable; + + /** + * ȡ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; + } + + /** + * ȡtcpFlagenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getTcpFlagenable() { + return tcpFlagenable; + } + + /** + * tcpFlagenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTcpFlagenable(String value) { + this.tcpFlagenable = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMCResponse.java new file mode 100644 index 00000000..3ec2d894 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalTcpFlagForUMCResponse") +public class SetDdosGlobalTcpFlagForUMCResponse { + + @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/umc/SetDdosGlobalTcpFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMC.java new file mode 100644 index 00000000..6184b004 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMC.java @@ -0,0 +1,120 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tcpenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tcpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "tcpenable", + "tcpthreshold" +}) +@XmlRootElement(name = "setDdosGlobalTcpFragForUMC") +public class SetDdosGlobalTcpFragForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String tcpenable; + @XmlElement(required = true, nillable = true) + protected String tcpthreshold; + + /** + * ȡ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; + } + + /** + * ȡtcpenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getTcpenable() { + return tcpenable; + } + + /** + * tcpenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTcpenable(String value) { + this.tcpenable = value; + } + + /** + * ȡtcpthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getTcpthreshold() { + return tcpthreshold; + } + + /** + * tcpthresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTcpthreshold(String value) { + this.tcpthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMCResponse.java new file mode 100644 index 00000000..fd663eca --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalTcpFragForUMCResponse") +public class SetDdosGlobalTcpFragForUMCResponse { + + @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/umc/SetDdosGlobalTcpLengthForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMC.java new file mode 100644 index 00000000..86815cb4 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMC.java @@ -0,0 +1,400 @@ + +package com.dptech.umc; + +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="synenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="synMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="synMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="synackenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="synackMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="synackMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="finenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="finMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="finMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="rstenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="rstMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="rstMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "synenable", + "objName", + "synMin", + "synMax", + "synackenable", + "synackMin", + "synackMax", + "finenable", + "finMin", + "finMax", + "rstenable", + "rstMin", + "rstMax" +}) +@XmlRootElement(name = "setDdosGlobalTcpLengthForUMC") +public class SetDdosGlobalTcpLengthForUMC { + + @XmlElement(required = true, nillable = true) + protected String synenable; + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String synMin; + @XmlElement(required = true, nillable = true) + protected String synMax; + @XmlElement(required = true, nillable = true) + protected String synackenable; + @XmlElement(required = true, nillable = true) + protected String synackMin; + @XmlElement(required = true, nillable = true) + protected String synackMax; + @XmlElement(required = true, nillable = true) + protected String finenable; + @XmlElement(required = true, nillable = true) + protected String finMin; + @XmlElement(required = true, nillable = true) + protected String finMax; + @XmlElement(required = true, nillable = true) + protected String rstenable; + @XmlElement(required = true, nillable = true) + protected String rstMin; + @XmlElement(required = true, nillable = true) + protected String rstMax; + + /** + * ȡsynenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSynenable() { + return synenable; + } + + /** + * synenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSynenable(String value) { + this.synenable = 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; + } + + /** + * ȡsynMinԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSynMin() { + return synMin; + } + + /** + * synMinԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSynMin(String value) { + this.synMin = value; + } + + /** + * ȡsynMaxԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSynMax() { + return synMax; + } + + /** + * synMaxԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSynMax(String value) { + this.synMax = value; + } + + /** + * ȡsynackenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSynackenable() { + return synackenable; + } + + /** + * synackenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSynackenable(String value) { + this.synackenable = value; + } + + /** + * ȡsynackMinԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSynackMin() { + return synackMin; + } + + /** + * synackMinԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSynackMin(String value) { + this.synackMin = value; + } + + /** + * ȡsynackMaxԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getSynackMax() { + return synackMax; + } + + /** + * synackMaxԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSynackMax(String value) { + this.synackMax = value; + } + + /** + * ȡfinenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinenable() { + return finenable; + } + + /** + * finenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinenable(String value) { + this.finenable = value; + } + + /** + * ȡfinMinԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinMin() { + return finMin; + } + + /** + * finMinԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinMin(String value) { + this.finMin = value; + } + + /** + * ȡfinMaxԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinMax() { + return finMax; + } + + /** + * finMaxԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinMax(String value) { + this.finMax = value; + } + + /** + * ȡrstenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getRstenable() { + return rstenable; + } + + /** + * rstenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRstenable(String value) { + this.rstenable = value; + } + + /** + * ȡrstMinԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getRstMin() { + return rstMin; + } + + /** + * rstMinԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRstMin(String value) { + this.rstMin = value; + } + + /** + * ȡrstMaxԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getRstMax() { + return rstMax; + } + + /** + * rstMaxԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRstMax(String value) { + this.rstMax = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMCResponse.java new file mode 100644 index 00000000..98741d28 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalTcpLengthForUMCResponse") +public class SetDdosGlobalTcpLengthForUMCResponse { + + @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/umc/SetDdosGlobalTcpStateForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMC.java new file mode 100644 index 00000000..7ffb3971 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMC.java @@ -0,0 +1,120 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="statenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="chosen" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "statenable", + "chosen" +}) +@XmlRootElement(name = "setDdosGlobalTcpStateForUMC") +public class SetDdosGlobalTcpStateForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String statenable; + @XmlElement(required = true, nillable = true) + protected String chosen; + + /** + * ȡ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; + } + + /** + * ȡstatenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatenable() { + return statenable; + } + + /** + * statenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatenable(String value) { + this.statenable = value; + } + + /** + * ȡchosenԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getChosen() { + return chosen; + } + + /** + * chosenԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChosen(String value) { + this.chosen = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMCResponse.java new file mode 100644 index 00000000..c760dc44 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalTcpStateForUMCResponse") +public class SetDdosGlobalTcpStateForUMCResponse { + + @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/umc/SetDdosGlobalUdpFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMC.java new file mode 100644 index 00000000..06639937 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMC.java @@ -0,0 +1,120 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="udpenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="udpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "udpenable", + "udpthreshold" +}) +@XmlRootElement(name = "setDdosGlobalUdpFragForUMC") +public class SetDdosGlobalUdpFragForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String udpenable; + @XmlElement(required = true, nillable = true) + protected String udpthreshold; + + /** + * ȡ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; + } + + /** + * ȡudpenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getUdpenable() { + return udpenable; + } + + /** + * udpenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUdpenable(String value) { + this.udpenable = value; + } + + /** + * ȡudpthresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getUdpthreshold() { + return udpthreshold; + } + + /** + * udpthresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUdpthreshold(String value) { + this.udpthreshold = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMCResponse.java new file mode 100644 index 00000000..0fe98287 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalUdpFragForUMCResponse") +public class SetDdosGlobalUdpFragForUMCResponse { + + @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/umc/SetDdosGlobalUdpLengthForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMC.java new file mode 100644 index 00000000..a4924256 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMC.java @@ -0,0 +1,148 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lengthenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="minlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="maxlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "lengthenable", + "minlength", + "maxlength" +}) +@XmlRootElement(name = "setDdosGlobalUdpLengthForUMC") +public class SetDdosGlobalUdpLengthForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String lengthenable; + @XmlElement(required = true, nillable = true) + protected String minlength; + @XmlElement(required = true, nillable = true) + protected String maxlength; + + /** + * ȡ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; + } + + /** + * ȡlengthenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getLengthenable() { + return lengthenable; + } + + /** + * lengthenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLengthenable(String value) { + this.lengthenable = value; + } + + /** + * ȡminlengthԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMinlength() { + return minlength; + } + + /** + * minlengthԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMinlength(String value) { + this.minlength = value; + } + + /** + * ȡmaxlengthԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxlength() { + return maxlength; + } + + /** + * maxlengthԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxlength(String value) { + this.maxlength = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMCResponse.java new file mode 100644 index 00000000..e337ccf5 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalUdpLengthForUMCResponse") +public class SetDdosGlobalUdpLengthForUMCResponse { + + @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/umc/SetDdosGlobalUdpPayloadForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMC.java new file mode 100644 index 00000000..054388eb --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMC.java @@ -0,0 +1,204 @@ + +package com.dptech.umc; + +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="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloademptyenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "objName", + "payloademptyenable", + "payloadcontentenable", + "payloadThreshold", + "payloadOffsetMin", + "payloadOffsetMax" +}) +@XmlRootElement(name = "setDdosGlobalUdpPayloadForUMC") +public class SetDdosGlobalUdpPayloadForUMC { + + @XmlElement(required = true, nillable = true) + protected String objName; + @XmlElement(required = true, nillable = true) + protected String payloademptyenable; + @XmlElement(required = true, nillable = true) + protected String payloadcontentenable; + @XmlElement(required = true, nillable = true) + protected String payloadThreshold; + @XmlElement(required = true, nillable = true) + protected String payloadOffsetMin; + @XmlElement(required = true, nillable = true) + protected String payloadOffsetMax; + + /** + * ȡ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; + } + + /** + * ȡpayloademptyenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloademptyenable() { + return payloademptyenable; + } + + /** + * payloademptyenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloademptyenable(String value) { + this.payloademptyenable = value; + } + + /** + * ȡpayloadcontentenableԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadcontentenable() { + return payloadcontentenable; + } + + /** + * payloadcontentenableԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadcontentenable(String value) { + this.payloadcontentenable = value; + } + + /** + * ȡpayloadThresholdԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadThreshold() { + return payloadThreshold; + } + + /** + * payloadThresholdԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadThreshold(String value) { + this.payloadThreshold = value; + } + + /** + * ȡpayloadOffsetMinԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadOffsetMin() { + return payloadOffsetMin; + } + + /** + * payloadOffsetMinԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadOffsetMin(String value) { + this.payloadOffsetMin = value; + } + + /** + * ȡpayloadOffsetMaxԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getPayloadOffsetMax() { + return payloadOffsetMax; + } + + /** + * payloadOffsetMaxԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPayloadOffsetMax(String value) { + this.payloadOffsetMax = value; + } + +} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMCResponse.java new file mode 100644 index 00000000..e956bd82 --- /dev/null +++ b/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "setDdosGlobalUdpPayloadForUMCResponse") +public class SetDdosGlobalUdpPayloadForUMCResponse { + + @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/umc/StartAbnormalTaskForUMC.java b/src/main/java/com/dptech/umc/StartAbnormalTaskForUMC.java new file mode 100644 index 00000000..ec76bd29 --- /dev/null +++ b/src/main/java/com/dptech/umc/StartAbnormalTaskForUMC.java @@ -0,0 +1,102 @@ + +package com.dptech.umc; + +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="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "abnormalIp", + "attackType", + "direction" +}) +@XmlRootElement(name = "startAbnormalTaskForUMC") +public class StartAbnormalTaskForUMC { + + @XmlElement(required = true, nillable = true) + protected String abnormalIp; + protected int attackType; + protected int direction; + + /** + * ȡabnormalIpԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAbnormalIp() { + return abnormalIp; + } + + /** + * abnormalIpԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAbnormalIp(String value) { + this.abnormalIp = value; + } + + /** + * ȡattackTypeԵֵ + * + */ + public int getAttackType() { + return attackType; + } + + /** + * attackTypeԵֵ + * + */ + public void setAttackType(int value) { + this.attackType = value; + } + + /** + * ȡdirectionԵֵ + * + */ + public int getDirection() { + return direction; + } + + /** + * directionԵֵ + * + */ + public void setDirection(int value) { + this.direction = value; + } + +} diff --git a/src/main/java/com/dptech/umc/StartAbnormalTaskForUMCResponse.java b/src/main/java/com/dptech/umc/StartAbnormalTaskForUMCResponse.java new file mode 100644 index 00000000..dce849b1 --- /dev/null +++ b/src/main/java/com/dptech/umc/StartAbnormalTaskForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "startAbnormalTaskForUMCResponse") +public class StartAbnormalTaskForUMCResponse { + + @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/umc/StartAbnormalTaskWithSpecificDeviceForUMC.java b/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMC.java new file mode 100644 index 00000000..0943b02f --- /dev/null +++ b/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMC.java @@ -0,0 +1,130 @@ + +package com.dptech.umc; + +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="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cleanDeviceIps" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "abnormalIp", + "attackType", + "direction", + "cleanDeviceIps" +}) +@XmlRootElement(name = "startAbnormalTaskWithSpecificDeviceForUMC") +public class StartAbnormalTaskWithSpecificDeviceForUMC { + + @XmlElement(required = true, nillable = true) + protected String abnormalIp; + protected int attackType; + protected int direction; + @XmlElement(required = true, nillable = true) + protected String cleanDeviceIps; + + /** + * ȡabnormalIpԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAbnormalIp() { + return abnormalIp; + } + + /** + * abnormalIpԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAbnormalIp(String value) { + this.abnormalIp = value; + } + + /** + * ȡattackTypeԵֵ + * + */ + public int getAttackType() { + return attackType; + } + + /** + * attackTypeԵֵ + * + */ + public void setAttackType(int value) { + this.attackType = value; + } + + /** + * ȡdirectionԵֵ + * + */ + public int getDirection() { + return direction; + } + + /** + * directionԵֵ + * + */ + public void setDirection(int value) { + this.direction = value; + } + + /** + * ȡcleanDeviceIpsԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCleanDeviceIps() { + return cleanDeviceIps; + } + + /** + * cleanDeviceIpsԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCleanDeviceIps(String value) { + this.cleanDeviceIps = value; + } + +} diff --git a/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMCResponse.java b/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMCResponse.java new file mode 100644 index 00000000..80f1a01e --- /dev/null +++ b/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "startAbnormalTaskWithSpecificDeviceForUMCResponse") +public class StartAbnormalTaskWithSpecificDeviceForUMCResponse { + + @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/umc/StartBlackHoleStrategyForUMC.java b/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMC.java new file mode 100644 index 00000000..b0d0bbf3 --- /dev/null +++ b/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMC.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "startBlackHoleStrategyForUMC") +public class StartBlackHoleStrategyForUMC { + + @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/umc/StartBlackHoleStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMCResponse.java new file mode 100644 index 00000000..4967dae2 --- /dev/null +++ b/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "startBlackHoleStrategyForUMCResponse") +public class StartBlackHoleStrategyForUMCResponse { + + @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/umc/StartBypassManualTractionStrategyForUMC.java b/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMC.java new file mode 100644 index 00000000..9b4c71d9 --- /dev/null +++ b/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.umc; + +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"/>
+ *         <element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "policyName", + "cleaningDevices" +}) +@XmlRootElement(name = "startBypassManualTractionStrategyForUMC") +public class StartBypassManualTractionStrategyForUMC { + + @XmlElement(required = true, nillable = true) + protected String policyName; + @XmlElement(required = true, nillable = true) + protected String cleaningDevices; + + /** + * ȡ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; + } + + /** + * ȡcleaningDevicesԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCleaningDevices() { + return cleaningDevices; + } + + /** + * cleaningDevicesԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCleaningDevices(String value) { + this.cleaningDevices = value; + } + +} diff --git a/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMCResponse.java new file mode 100644 index 00000000..c4405fe2 --- /dev/null +++ b/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "startBypassManualTractionStrategyForUMCResponse") +public class StartBypassManualTractionStrategyForUMCResponse { + + @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/umc/StopAbnormalTaskForUMC.java b/src/main/java/com/dptech/umc/StopAbnormalTaskForUMC.java new file mode 100644 index 00000000..c6c786a2 --- /dev/null +++ b/src/main/java/com/dptech/umc/StopAbnormalTaskForUMC.java @@ -0,0 +1,102 @@ + +package com.dptech.umc; + +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="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "abnormalIp", + "attackType", + "direction" +}) +@XmlRootElement(name = "stopAbnormalTaskForUMC") +public class StopAbnormalTaskForUMC { + + @XmlElement(required = true, nillable = true) + protected String abnormalIp; + protected int attackType; + protected int direction; + + /** + * ȡabnormalIpԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAbnormalIp() { + return abnormalIp; + } + + /** + * abnormalIpԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAbnormalIp(String value) { + this.abnormalIp = value; + } + + /** + * ȡattackTypeԵֵ + * + */ + public int getAttackType() { + return attackType; + } + + /** + * attackTypeԵֵ + * + */ + public void setAttackType(int value) { + this.attackType = value; + } + + /** + * ȡdirectionԵֵ + * + */ + public int getDirection() { + return direction; + } + + /** + * directionԵֵ + * + */ + public void setDirection(int value) { + this.direction = value; + } + +} diff --git a/src/main/java/com/dptech/umc/StopAbnormalTaskForUMCResponse.java b/src/main/java/com/dptech/umc/StopAbnormalTaskForUMCResponse.java new file mode 100644 index 00000000..5122b24c --- /dev/null +++ b/src/main/java/com/dptech/umc/StopAbnormalTaskForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "stopAbnormalTaskForUMCResponse") +public class StopAbnormalTaskForUMCResponse { + + @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/umc/StopAbnormalTaskWithSpecificDeviceForUMC.java b/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMC.java new file mode 100644 index 00000000..4fca8bb7 --- /dev/null +++ b/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMC.java @@ -0,0 +1,130 @@ + +package com.dptech.umc; + +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="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cleanDeviceIps" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "abnormalIp", + "attackType", + "direction", + "cleanDeviceIps" +}) +@XmlRootElement(name = "stopAbnormalTaskWithSpecificDeviceForUMC") +public class StopAbnormalTaskWithSpecificDeviceForUMC { + + @XmlElement(required = true, nillable = true) + protected String abnormalIp; + protected int attackType; + protected int direction; + @XmlElement(required = true, nillable = true) + protected String cleanDeviceIps; + + /** + * ȡabnormalIpԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getAbnormalIp() { + return abnormalIp; + } + + /** + * abnormalIpԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAbnormalIp(String value) { + this.abnormalIp = value; + } + + /** + * ȡattackTypeԵֵ + * + */ + public int getAttackType() { + return attackType; + } + + /** + * attackTypeԵֵ + * + */ + public void setAttackType(int value) { + this.attackType = value; + } + + /** + * ȡdirectionԵֵ + * + */ + public int getDirection() { + return direction; + } + + /** + * directionԵֵ + * + */ + public void setDirection(int value) { + this.direction = value; + } + + /** + * ȡcleanDeviceIpsԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCleanDeviceIps() { + return cleanDeviceIps; + } + + /** + * cleanDeviceIpsԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCleanDeviceIps(String value) { + this.cleanDeviceIps = value; + } + +} diff --git a/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMCResponse.java b/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMCResponse.java new file mode 100644 index 00000000..15978229 --- /dev/null +++ b/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "stopAbnormalTaskWithSpecificDeviceForUMCResponse") +public class StopAbnormalTaskWithSpecificDeviceForUMCResponse { + + @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/umc/StopBlackHoleStrategyForUMC.java b/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMC.java new file mode 100644 index 00000000..89f01579 --- /dev/null +++ b/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMC.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "stopBlackHoleStrategyForUMC") +public class StopBlackHoleStrategyForUMC { + + @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/umc/StopBlackHoleStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMCResponse.java new file mode 100644 index 00000000..46d5278c --- /dev/null +++ b/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "stopBlackHoleStrategyForUMCResponse") +public class StopBlackHoleStrategyForUMCResponse { + + @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/umc/StopBypassManualTractionStrategyForUMC.java b/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMC.java new file mode 100644 index 00000000..0659c081 --- /dev/null +++ b/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMC.java @@ -0,0 +1,92 @@ + +package com.dptech.umc; + +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"/>
+ *         <element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "policyName", + "cleaningDevices" +}) +@XmlRootElement(name = "stopBypassManualTractionStrategyForUMC") +public class StopBypassManualTractionStrategyForUMC { + + @XmlElement(required = true, nillable = true) + protected String policyName; + @XmlElement(required = true, nillable = true) + protected String cleaningDevices; + + /** + * ȡ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; + } + + /** + * ȡcleaningDevicesԵֵ + * + * @return + * possible object is + * {@link String } + * + */ + public String getCleaningDevices() { + return cleaningDevices; + } + + /** + * cleaningDevicesԵֵ + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCleaningDevices(String value) { + this.cleaningDevices = value; + } + +} diff --git a/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMCResponse.java new file mode 100644 index 00000000..c68f9a6c --- /dev/null +++ b/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMCResponse.java @@ -0,0 +1,64 @@ + +package com.dptech.umc; + +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 = "stopBypassManualTractionStrategyForUMCResponse") +public class StopBypassManualTractionStrategyForUMCResponse { + + @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/umc/package-info.java b/src/main/java/com/dptech/umc/package-info.java new file mode 100644 index 00000000..badb40e4 --- /dev/null +++ b/src/main/java/com/dptech/umc/package-info.java @@ -0,0 +1,2 @@ +@javax.xml.bind.annotation.XmlSchema(namespace = "http://service.ntc.dp.com", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package com.dptech.umc; diff --git a/src/main/resources/git.properties b/src/main/resources/git.properties index 4952c797..8eb2c559 100644 --- a/src/main/resources/git.properties +++ b/src/main/resources/git.properties @@ -1,20 +1,20 @@ #Generated by Git-Commit-Id-Plugin -#Tue Mar 24 09:32:25 CST 2020 +#Wed Apr 08 18:54:08 CST 2020 git.branch=master -git.build.host=DESKTOP-8IG72HQ -git.build.time=2020-03-24T09\:32\:25+0800 -git.build.user.email=chenlinghy@cmhi.chinamobile.com -git.build.user.name=chenlinghy +git.build.host=DESKTOP-GJUT8MA +git.build.time=2020-04-08T18\:54\:08+0800 +git.build.user.email=huangxin@\u0096cmhi.chinamobile.com +git.build.user.name=HuangXin git.build.version=1.0.0 git.closest.tag.commit.count= git.closest.tag.name= -git.commit.id=96d686d975035f8b9628ff0b9a8fb09eb34632e1 -git.commit.id.abbrev=96d686d -git.commit.id.describe=96d686d-dirty -git.commit.id.describe-short=96d686d-dirty -git.commit.message.full=OCT\nREM\:\n1. \u6DFB\u52A0.gitignore\u914D\u7F6E\u6587\u4EF6\n2. \u589E\u52A0\u751F\u6210git version\u7248\u672C\u6587\u4EF6\u811A\u672C\n3. \u534F\u8BAE\u7C7B\u589E\u52A0\u65E0\u53C2\u6570\u9ED8\u8BA4\u6784\u9020\u51FD\u6570\n4. \u6DFB\u52A0\u534F\u8BAE\u8FD4\u56DEid\u57FA\u6570\u503C10000\n5. \u589E\u52A0IDEA\u5DE5\u7A0B\u914D\u7F6E\u6587\u4EF6 -git.commit.message.short=OCT REM\: 1. \u6DFB\u52A0.gitignore\u914D\u7F6E\u6587\u4EF6 2. \u589E\u52A0\u751F\u6210git version\u7248\u672C\u6587\u4EF6\u811A\u672C 3. \u534F\u8BAE\u7C7B\u589E\u52A0\u65E0\u53C2\u6570\u9ED8\u8BA4\u6784\u9020\u51FD\u6570 4. \u6DFB\u52A0\u534F\u8BAE\u8FD4\u56DEid\u57FA\u6570\u503C10000 5. \u589E\u52A0IDEA\u5DE5\u7A0B\u914D\u7F6E\u6587\u4EF6 -git.commit.time=2020-03-19T17\:40\:42+0800 +git.commit.id=95581bbd15ce2581203c7e085d3ca36f98549e91 +git.commit.id.abbrev=95581bb +git.commit.id.describe=95581bb-dirty +git.commit.id.describe-short=95581bb-dirty +git.commit.message.full=OCT\nREM\:\n1. \u79FB\u9664pom\u6587\u4EF6\u7F16\u8BD1\u6307\u5B9A\u7684java\u7248\u672C +git.commit.message.short=OCT REM\: 1. \u79FB\u9664pom\u6587\u4EF6\u7F16\u8BD1\u6307\u5B9A\u7684java\u7248\u672C +git.commit.time=2020-04-08T18\:25\:56+0800 git.commit.user.email=huangxin@cmhi.chinamobile.com git.commit.user.name=huangxin git.dirty=true @@ -22,4 +22,4 @@ git.local.branch.ahead=0 git.local.branch.behind=0 git.remote.origin.url=git@git.komect.net\:DDOSAQ/phoenix_ddos_handle.git git.tags= -git.total.commit.count=5 +git.total.commit.count=25 diff --git a/src/main/resources/mappers/DisposeDeviceManager.xml b/src/main/resources/mappers/DisposeDeviceManager.xml new file mode 100644 index 00000000..62e87043 --- /dev/null +++ b/src/main/resources/mappers/DisposeDeviceManager.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/wsdl/AbnormalFlowCleaningService.wsdl b/src/main/resources/wsdl/AbnormalFlowCleaningService.wsdl new file mode 100644 index 00000000..abd96f2e --- /dev/null +++ b/src/main/resources/wsdl/AbnormalFlowCleaningService.wsdl @@ -0,0 +1,6353 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapperTest.java b/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapperTest.java new file mode 100644 index 00000000..f37b8b23 --- /dev/null +++ b/src/test/java/com/cmcc/hy/phoenix/mapper/DisposeDeviceMapperTest.java @@ -0,0 +1,48 @@ +package com.cmcc.hy.phoenix.mapper; + +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 javax.annotation.Resource; +import java.util.List; + +@RunWith(SpringRunner.class) +@SpringBootTest +@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.assertEquals(dp.size(), 1); + } + + @Test + public void getAllDisposeDeviceV2() throws JsonProcessingException { + List dp = disposeDeviceMapper.selectAll(); + + log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dp)); + + Assert.assertEquals(dp.size(), 1); + } + + +} diff --git a/src/test/java/com/cmcc/hy/phoenix/mapper/UserAccountMapperTest.java b/src/test/java/com/cmcc/hy/phoenix/mapper/UserAccountMapperTest.java new file mode 100644 index 00000000..bade627a --- /dev/null +++ b/src/test/java/com/cmcc/hy/phoenix/mapper/UserAccountMapperTest.java @@ -0,0 +1,41 @@ +package com.cmcc.hy.phoenix.mapper; + +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 getUserByName() 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); + } +}