REM:
1. 添加SOAP 接口库
This commit is contained in:
huangxin 2020-04-08 18:56:40 +08:00
parent 95581bbd15
commit abf95684d4
83 changed files with 22333 additions and 72 deletions

View File

@ -2,7 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>3.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.cmcc.hy</groupId> <groupId>com.cmcc.hy</groupId>
<artifactId>phoenix-boot</artifactId> <artifactId>phoenix-boot</artifactId>

View File

@ -12,6 +12,6 @@ public class SoapPasswordCallbackHandler implements CallbackHandler {
@Override @Override
public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
WSPasswordCallback pc = (WSPasswordCallback) callbacks[0]; WSPasswordCallback pc = (WSPasswordCallback) callbacks[0];
pc.setPassword(ConstValue.SOAPWarpperConst.PASSWORD); pc.setPassword(ConstValue.SOAPWrapperConst.PASSWORD);
} }
} }

View File

@ -1,13 +1,21 @@
package com.cmcc.hy.phoenix.common; package com.cmcc.hy.phoenix.common;
public class ConstValue { 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 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 SERVICE_ADDRESS = "http://10.88.77.15/UMC/service/AbnormalFlowCleaningService?wsdl";
public static final String USER_NAME = "admin"; public static final String USER_NAME = "admin";
public static final String PASSWORD = "UMCAdministrator"; 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 { public enum DisposeDevice {
DPTECH_UMC, HAOHAN_PLATFORM; DPTECH_UMC, HAOHAN_PLATFORM;
} }
@ -27,6 +35,8 @@ public class ConstValue {
ERR_INPUTFORMAT (8, "输入信息格式有误"), ERR_INPUTFORMAT (8, "输入信息格式有误"),
ERR_INPUTMISS (9, "缺少必要输入信息"), ERR_INPUTMISS (9, "缺少必要输入信息"),
ERR_PERMISSION (10, "操作员权限不足"), ERR_PERMISSION (10, "操作员权限不足"),
ERR_REQTIMEOUT (11, "请求超时"),
ERR_PARAMS (12, "参数错误"),
; ;
private int errno; private int errno;

View File

@ -2,6 +2,7 @@ package com.cmcc.hy.phoenix.controller;
import javax.annotation.Resource; import javax.annotation.Resource;
import com.cmcc.hy.phoenix.common.ConstValue;
import com.cmcc.hy.phoenix.help.GitInformation; import com.cmcc.hy.phoenix.help.GitInformation;
import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO; import com.cmcc.hy.phoenix.pojo.dto.ProtocolDTO;
import com.cmcc.hy.phoenix.pojo.vo.Resp; import com.cmcc.hy.phoenix.pojo.vo.Resp;
@ -37,8 +38,6 @@ public class ProtocolController {
@Resource @Resource
private GitInformation gitInfo; private GitInformation gitInfo;
private final int RESP_CMD_BASE = 10000;
/** /**
* *
* @return * @return
@ -53,7 +52,7 @@ public class ProtocolController {
log.info("请求参数 {}", mr); log.info("请求参数 {}", mr);
if(mr == null) { if(mr == null) {
return ProtocolResp.result(Resp.PARAM_ERROR); return ProtocolResp.result(ConstValue.ErrorCode.ERR_PARAMS);
} }
try { try {
@ -69,11 +68,6 @@ public class ProtocolController {
return ProtocolResp.result(Resp.SYSTEM_ERROR); return ProtocolResp.result(Resp.SYSTEM_ERROR);
} }
return ProtocolResp.builder().cmdId(mr.getCmdId() + RESP_CMD_BASE) return ProtocolResp.result(ConstValue.ErrorCode.ERR_OK, mr.getCmdId(), msgCtx);
.ver(mr.getVer())
.cryptoType(mr.getCryptoType())
.timeStamp(System.currentTimeMillis())
.code(Resp.SUCCESS.getCode())
.msgContent(msgCtx).build();
} }
} }

View File

@ -4,7 +4,6 @@ import com.cmcc.hy.phoenix.Interceptor.SoapPasswordCallbackHandler;
import com.cmcc.hy.phoenix.common.ConstValue; import com.cmcc.hy.phoenix.common.ConstValue;
import com.dptech.umc.AbnormalFlowCleaningServicePortType; import com.dptech.umc.AbnormalFlowCleaningServicePortType;
import com.dptech.umc.ArrayOfDetectionObjectDataForService; import com.dptech.umc.ArrayOfDetectionObjectDataForService;
import com.dptech.umc.DetectionObjectDataForService;
import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean; import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
@ -49,7 +48,7 @@ public class DptechUMC implements DisposeProcess {
public DptechUMC() { public DptechUMC() {
JaxWsProxyFactoryBean jaxWsProxyFactoryBean = new JaxWsProxyFactoryBean(); JaxWsProxyFactoryBean jaxWsProxyFactoryBean = new JaxWsProxyFactoryBean();
jaxWsProxyFactoryBean.setServiceClass(AbnormalFlowCleaningServicePortType.class); jaxWsProxyFactoryBean.setServiceClass(AbnormalFlowCleaningServicePortType.class);
jaxWsProxyFactoryBean.setAddress(ConstValue.SOAPWarpperConst.NAMESPACE_URI); jaxWsProxyFactoryBean.setAddress(ConstValue.SOAPWrapperConst.NAMESPACE_URI);
//WS-Security Head //WS-Security Head
Map<String, Object> outProps = new HashMap<String, Object>(); Map<String, Object> outProps = new HashMap<String, Object>();

View File

@ -19,5 +19,9 @@ public interface DisposeDeviceMapper extends Mapper<DisposeDevice>,
* *
* @return the all * @return the all
*/ */
List<DisposeDevice> getAll(); List<DisposeDevice> getAllDisposeDevice();
int addNewDisposeDevice(DisposeDevice dev);
int updateDisposeDeviceById();
} }

View File

@ -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<UserAccount>,
IdsMapper<UserAccount>, MySqlMapper<UserAccount> {
List<UserAccount> getUserByName(String name);
}

View File

@ -45,5 +45,15 @@ public class ProtocolDTO {
@ApiModelProperty(value="服务器返回状态码", required = false, @ApiModelProperty(value="服务器返回状态码", required = false,
example = "200") example = "200")
private int code; private int code;
public Boolean IsRequestTimeout() {
Long timeDiff = System.currentTimeMillis() - this.timeStamp;
if (timeDiff > 0 && timeDiff <= 3000) {
return true;
}
return true;
}
} }

View File

@ -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;
}

View File

@ -2,10 +2,14 @@ package com.cmcc.hy.phoenix.pojo.entity;
import lombok.*; import lombok.*;
import tk.mybatis.mapper.annotation.KeySql; 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.Id;
import javax.persistence.Table; import javax.persistence.Table;
import javax.persistence.Transient;
import java.io.Serializable; import java.io.Serializable;
import java.util.List;
/** /**
* The type Dispose device. * The type Dispose device.
@ -17,7 +21,14 @@ import java.io.Serializable;
@AllArgsConstructor @AllArgsConstructor
@Builder @Builder
@Table(name = "dispose_device") @Table(name = "dispose_device")
@NameStyle(Style.normal)
public class DisposeDevice implements Serializable { 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; private String readme;
/**
* 能力设备支持的能力列表
*/
@Transient
private List<DeviceCapacity> devCaps;
/**
* 处置设备支持的处置IP从处置设备获取
*/
@Transient
private List<String> disposeIp;
} }

View File

@ -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;
}

View File

@ -25,7 +25,7 @@ import lombok.extern.slf4j.Slf4j;
/** /**
* 轻量级定时任务 * 轻量级定时任务
* *
* @author phoenix * @author phoenix
* @date 2020年2月4日 * @date 2020年2月4日
*/ */
@ -84,47 +84,47 @@ public class MyTask {
* 定时请求是否有新文件更新 * 定时请求是否有新文件更新
* 威胁情报文件下载更新示例 * 威胁情报文件下载更新示例
*/ */
@Async("bizExecutor") // @Async("bizExecutor")
@Scheduled(cron = "0/5 * * * * ?") // @Scheduled(cron = "0/5 * * * * ?")
public void threatInfoHttpReq() { // public void threatInfoHttpReq() {
log.info("定时请求威胁情报,检测是否有文件更新"); // log.info("定时请求威胁情报,检测是否有文件更新");
Map<String, String> header = Maps.newHashMap(); // Map<String, String> header = Maps.newHashMap();
header.put("HY-AUTH-KEY", myConfig.getThreatInfoKey()); // header.put("HY-AUTH-KEY", myConfig.getThreatInfoKey());
String str = Http.get(myConfig.getThreatInfoVersionUrl(), header); // String str = Http.get(myConfig.getThreatInfoVersionUrl(), header);
log.info("接口响应数据 {}", str); // log.info("接口响应数据 {}", str);
JSONObject json = JSON.parseObject(str); // JSONObject json = JSON.parseObject(str);
String status = json.getString("status"); // String status = json.getString("status");
int maxVersion = -1; // int maxVersion = -1;
if ("0".equals(status)) { // if ("0".equals(status)) {
JSONArray ja = JSON.parseArray(json.getString("result")); // JSONArray ja = JSON.parseArray(json.getString("result"));
log.info("result列表数据 {}", ja); // log.info("result列表数据 {}", ja);
for (int i = 0; i < ja.size(); i++) { // for (int i = 0; i < ja.size(); i++) {
JSONObject eachJson = ja.getJSONObject(i); // JSONObject eachJson = ja.getJSONObject(i);
String type = eachJson.getString("type"); // String type = eachJson.getString("type");
if ("1".equals(type)) { // if ("1".equals(type)) {
int version = Integer.parseInt(eachJson.getString("version")); // int version = Integer.parseInt(eachJson.getString("version"));
if (version > maxVersion) { // if (version > maxVersion) {
maxVersion = version; // maxVersion = version;
} // }
} // }
} // }
// 判断接口获得最大version是否和当前内存一致决定是否更新文件 // // 判断接口获得最大version是否和当前内存一致决定是否更新文件
if (maxVersion > GlobalVar.MAX_THREAT_INFO_VERSION) { // if (maxVersion > GlobalVar.MAX_THREAT_INFO_VERSION) {
GlobalVar.MAX_THREAT_INFO_VERSION = maxVersion; // GlobalVar.MAX_THREAT_INFO_VERSION = maxVersion;
// 下载文件更新 // // 下载文件更新
log.info("下载文件更新"); // log.info("下载文件更新");
Map<String, Object> body = Maps.newHashMap(); // Map<String, Object> body = Maps.newHashMap();
body.put("version", GlobalVar.MAX_THREAT_INFO_VERSION); // body.put("version", GlobalVar.MAX_THREAT_INFO_VERSION);
body.put("type", GlobalVar.THREAT_INFO_TYPE); // body.put("type", GlobalVar.THREAT_INFO_TYPE);
String downFileRes = Http.postForm(myConfig.getThreatInfoDownload(), header, body); // String downFileRes = Http.postForm(myConfig.getThreatInfoDownload(), header, body);
List<String> threatInfo = Utils.splitStr2List(downFileRes, "\n"); // List<String> threatInfo = Utils.splitStr2List(downFileRes, "\n");
log.info("威胁情报数据量 {}",threatInfo.size()); // log.info("威胁情报数据量 {}",threatInfo.size());
log.info("下载的文件内容 {}", StringUtils.abbreviate(downFileRes, 1000)); // log.info("下载的文件内容 {}", StringUtils.abbreviate(downFileRes, 1000));
//将自身系统内的威胁情报变量替换成上述读取的数据达到威胁情报数据更新的效果 // //将自身系统内的威胁情报变量替换成上述读取的数据达到威胁情报数据更新的效果
} // }
//
// }
} // }
}
} }

View File

@ -1,5 +1,6 @@
package com.cmcc.hy.phoenix.vo; package com.cmcc.hy.phoenix.vo;
import com.cmcc.hy.phoenix.common.ConstValue;
import com.cmcc.hy.phoenix.pojo.vo.Resp; import com.cmcc.hy.phoenix.pojo.vo.Resp;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Builder; import lombok.Builder;
@ -51,7 +52,42 @@ public class ProtocolResp {
return ProtocolResp.builder().code(resp.getCode()).msgContent(resp.getMsg()).build(); return ProtocolResp.builder().code(resp.getCode()).msgContent(resp.getMsg()).build();
} }
public static ProtocolResp result(Resp resp, ProtocolResp obj) { public static ProtocolResp result(ConstValue.ErrorCode err) {
return ProtocolResp.builder().cmdId(obj.cmdId).code(Resp.SUCCESS.getCode()).msgContent(obj.msgContent).build(); 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();
} }
} }

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="sipstart" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="sipend" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="port1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="flag1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="port2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="flag2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="port3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="flag3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="port1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="port2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="port3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="detectionName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="protectionName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>NtcRequestResultInfo complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType name="NtcRequestResultInfo"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="resultInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="resultRetVal" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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<String> resultInfo;
protected Integer resultRetVal;
/**
* 获取resultInfo属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getResultInfo() {
return resultInfo;
}
/**
* 设置resultInfo属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setResultInfo(JAXBElement<String> 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;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -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;
/**
* <p>ProtectionObjectDataForService complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType name="ProtectionObjectDataForService"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="detectionDevices" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="protectionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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<String> cleaningDevices;
protected Integer cleaningType;
@XmlElementRef(name = "detectionDevices", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> detectionDevices;
@XmlElementRef(name = "ipSegment", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ipSegment;
protected Integer ipType;
@XmlElementRef(name = "protectionName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> protectionName;
/**
* 获取cleaningDevices属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCleaningDevices() {
return cleaningDevices;
}
/**
* 设置cleaningDevices属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCleaningDevices(JAXBElement<String> 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<String> getDetectionDevices() {
return detectionDevices;
}
/**
* 设置detectionDevices属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setDetectionDevices(JAXBElement<String> value) {
this.detectionDevices = value;
}
/**
* 获取ipSegment属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIpSegment() {
return ipSegment;
}
/**
* 设置ipSegment属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIpSegment(JAXBElement<String> 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<String> getProtectionName() {
return protectionName;
}
/**
* 设置protectionName属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setProtectionName(JAXBElement<String> value) {
this.protectionName = value;
}
}

View File

@ -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;
/**
* <p>ProtectionStrategyTemplateForService complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType name="ProtectionStrategyTemplateForService"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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<String> description;
@XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> name;
/**
* 获取description属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getDescription() {
return description;
}
/**
* 设置description属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setDescription(JAXBElement<String> value) {
this.description = value;
}
/**
* 获取name属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getName() {
return name;
}
/**
* 设置name属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setName(JAXBElement<String> value) {
this.name = value;
}
}

View File

@ -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;
/**
* <p>ProtectionTargetWithStrategyForService complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType name="ProtectionTargetWithStrategyForService"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="protectionStrategyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="protectionTargetName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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<String> protectionStrategyName;
@XmlElementRef(name = "protectionTargetName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> protectionTargetName;
/**
* 获取protectionStrategyName属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getProtectionStrategyName() {
return protectionStrategyName;
}
/**
* 设置protectionStrategyName属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setProtectionStrategyName(JAXBElement<String> value) {
this.protectionStrategyName = value;
}
/**
* 获取protectionTargetName属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getProtectionTargetName() {
return protectionTargetName;
}
/**
* 设置protectionTargetName属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setProtectionTargetName(JAXBElement<String> value) {
this.protectionTargetName = value;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="icmpenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="icmpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="lengthenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="minlength" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="maxlength" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="otherenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="otherthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="enable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="tcpFlagenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="tcpenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="tcpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="synenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="synMin" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="synMax" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="synackenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="synackMin" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="synackMax" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="finenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="finMin" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="finMax" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="rstenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="rstMin" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="rstMax" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="statenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="chosen" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="udpenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="udpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="lengthenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="minlength" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="maxlength" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloademptyenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="cleanDeviceIps" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="cleanDeviceIps" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;
/**
* <p>anonymous complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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;
}
}

View File

@ -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;

View File

@ -1,20 +1,20 @@
#Generated by Git-Commit-Id-Plugin #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.branch=master
git.build.host=DESKTOP-8IG72HQ git.build.host=DESKTOP-GJUT8MA
git.build.time=2020-03-24T09\:32\:25+0800 git.build.time=2020-04-08T18\:54\:08+0800
git.build.user.email=chenlinghy@cmhi.chinamobile.com git.build.user.email=huangxin@\u0096cmhi.chinamobile.com
git.build.user.name=chenlinghy git.build.user.name=HuangXin
git.build.version=1.0.0 git.build.version=1.0.0
git.closest.tag.commit.count= git.closest.tag.commit.count=
git.closest.tag.name= git.closest.tag.name=
git.commit.id=96d686d975035f8b9628ff0b9a8fb09eb34632e1 git.commit.id=95581bbd15ce2581203c7e085d3ca36f98549e91
git.commit.id.abbrev=96d686d git.commit.id.abbrev=95581bb
git.commit.id.describe=96d686d-dirty git.commit.id.describe=95581bb-dirty
git.commit.id.describe-short=96d686d-dirty git.commit.id.describe-short=95581bb-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.full=OCT\nREM\:\n1. \u79FB\u9664pom\u6587\u4EF6\u7F16\u8BD1\u6307\u5B9A\u7684java\u7248\u672C
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.message.short=OCT REM\: 1. \u79FB\u9664pom\u6587\u4EF6\u7F16\u8BD1\u6307\u5B9A\u7684java\u7248\u672C
git.commit.time=2020-03-19T17\:40\:42+0800 git.commit.time=2020-04-08T18\:25\:56+0800
git.commit.user.email=huangxin@cmhi.chinamobile.com git.commit.user.email=huangxin@cmhi.chinamobile.com
git.commit.user.name=huangxin git.commit.user.name=huangxin
git.dirty=true git.dirty=true
@ -22,4 +22,4 @@ git.local.branch.ahead=0
git.local.branch.behind=0 git.local.branch.behind=0
git.remote.origin.url=git@git.komect.net\:DDOSAQ/phoenix_ddos_handle.git git.remote.origin.url=git@git.komect.net\:DDOSAQ/phoenix_ddos_handle.git
git.tags= git.tags=
git.total.commit.count=5 git.total.commit.count=25

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.cmcc.hy.phoenix.mapper.DisposeDeviceMapper">
<resultMap id="getAllDisposeDevicesMap" type="com.cmcc.hy.phoenix.pojo.entity.DisposeDevice">
<id column="id" property="id" jdbcType="INTEGER"/>
<result column="ipv4" property="ipv4" jdbcType="VARCHAR"/>
<result column="ipv6" property="ipv6" jdbcType="VARCHAR"/>
<result column="type" property="type" jdbcType="INTEGER"/>
<result column="areaCode" property="areaCode" jdbcType="INTEGER"/>
<result column="name" property="name" jdbcType="VARCHAR"/>
<result column="manufacturer" property="manufacturer" jdbcType="VARCHAR"/>
<result column="model" property="model" jdbcType="VARCHAR"/>
<result column="version" property="version" jdbcType="VARCHAR"/>
<result column="readme" property="readme" jdbcType="VARCHAR"/>
<collection property="devCaps" javaType="java.util.List" ofType="com.cmcc.hy.phoenix.pojo.entity.DeviceCapacity">
<id column="c_id" property="id" jdbcType="INTEGER" />
<result column="c_deviceId" property="deviceId" jdbcType="INTEGER" />
<result column="c_capacity" property="capacity" jdbcType="INTEGER" />
<result column="c_tolFlowCapacity" property="tolFlowCapacity" jdbcType="INTEGER" />
</collection>
</resultMap>
<!-- mapper xml文件中只编写复杂逻辑的SQL SQL单独拿出来写与代码解耦SQL的熟练编写是每个研发必备的技能 -->
<select id="getAllDisposeDevice" resultMap="getAllDisposeDevicesMap">
SELECT
d.id,
d.ipv4,
d.ipv6,
d.type,
d.areaCode,
d.name,
d.manufacturer,
d.model,
d.version,
d.readme,
c.id AS c_id,
c.deviceId AS c_deviceId,
c.capacity AS c_capacity,
c.tolFlowCapacity AS c_tolFlowCapacity
FROM
dispose_device d
LEFT JOIN
device_capacity c
ON
d.id = c.deviceId
</select>
</mapper>

File diff suppressed because it is too large Load Diff

View File

@ -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<DisposeDevice> dp = disposeDeviceMapper.getAllDisposeDevice();
log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dp));
Assert.assertEquals(dp.size(), 1);
}
@Test
public void getAllDisposeDeviceV2() throws JsonProcessingException {
List<DisposeDevice> dp = disposeDeviceMapper.selectAll();
log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(dp));
Assert.assertEquals(dp.size(), 1);
}
}

View File

@ -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<UserAccount> users = userAccountMapper.selectByExample(exp);
log.info(objMapper.writerWithDefaultPrettyPrinter().writeValueAsString(users));
Assert.assertEquals(users.size(), 1);
}
}