REM:
1. 增加异步服务支持
2. 增加获取信息接口
3. 重新安装SOAP源码
4. 处置设备IPv6支持
This commit is contained in:
huangxin 2020-04-16 15:23:46 +08:00
parent b1726476b0
commit 9d6bc45bb6
200 changed files with 248 additions and 27124 deletions

View File

@ -91,4 +91,8 @@ public class ConstValue {
public String getReadme() {return this.readme;}
}
public enum IPAddrType{
IPV4_TYPE, IPV6_TYPE,
}
}

View File

@ -47,7 +47,7 @@ public class AuthController {
return ProtocolRespDTO.result(err);
}
LoginReq reqInfo = mr.getRequestObjects(LoginReq.class);
LoginReq reqInfo = mr.getRequestObject(LoginReq.class);
@ -81,7 +81,7 @@ public class AuthController {
return ProtocolRespDTO.result(err);
}
LoginReq reqInfo = mr.getRequestObjects(LoginReq.class);
LoginReq reqInfo = mr.getRequestObject(LoginReq.class);
err = userAccountService.logoutService(reqInfo.getUserName(),
mr.getAuthToken(headers));

View File

@ -0,0 +1,94 @@
package com.dispose.controller;
import com.dispose.common.ErrorCode;
import com.dispose.pojo.dto.ProtocolReqDTO;
import com.dispose.pojo.dto.ProtocolRespDTO;
import com.dispose.pojo.vo.common.IDArrayReq;
import com.dispose.pojo.vo.information.LinkStatusRsp;
import com.dispose.service.AsyncService;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.Builder;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.List;
@Controller
@RequestMapping(value = "/information")
@Slf4j
@Api(value = "抗DDoS处置平台能力节点信息接口", tags = "抗DDoS处置平台能力节点信息接口")
@Component
public class DisposeNodeController {
@Resource
private AsyncService asyncService;
@Resource
private ObjectMapper objectMapper;
@PostMapping("/linkstatus")
@ResponseBody
@ApiOperation("链接状态")
@Builder
public ProtocolRespDTO userLogin(@RequestBody ProtocolReqDTO mr)
throws JsonProcessingException {
ErrorCode err = mr.verifyRequest();
if(err != ErrorCode.ERR_OK) {
return ProtocolRespDTO.result(err);
}
IDArrayReq reqInfo = mr.getRequestObject(IDArrayReq.class);
List<LinkStatusRsp> rspInfo = new ArrayList<>();
if(reqInfo.getId().length == 0) {
} else {
for (String v : reqInfo.getId()) {
LinkStatusRsp linkStat = LinkStatusRsp.builder()
.id(v)
.online(1)
.build();
rspInfo.add(linkStat);
}
}
// if(reqInfo == null || reqInfo.length == 0) {
// //return ProtocolRespDTO.result(ErrorCode.ERR_PARAMS);
// } else {
// for(String v:reqInfo) {
//
// }
// }
// MReturnType<ErrorCode, String> ret = userAccountService.loginService(reqInfo.getUserName(), reqInfo.getPassword());
//
// if(ret.getFirstParam() != ErrorCode.ERR_OK) {
// return ProtocolRespDTO.result(ret.getFirstParam());
// }
//
// LoginRsp rspInfo = LoginRsp.builder()
// .userName(reqInfo.getUserName())
// .token(ret.getSecondParam())
// .logTime(System.currentTimeMillis())
// .expireTime(System.currentTimeMillis() + ConstValue.GlobalConfigure.TOKEN_EXPIRED_TIME_MS)
// .build();
return ProtocolRespDTO.result(ErrorCode.ERR_OK, rspInfo);
}
}

View File

@ -4,6 +4,7 @@ import com.dispose.Interceptor.SoapPasswordCallbackHandler;
import com.dispose.common.ConstValue;
import com.dptech.dispose.AbnormalFlowCleaningServicePortType;
import com.dptech.dispose.ArrayOfDetectionObjectDataForService;
import com.dptech.dispose.ArrayOfProtectionObjectDataForService;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
@ -12,9 +13,17 @@ import org.apache.wss4j.dom.WSConstants;
import org.apache.wss4j.dom.handler.WSHandlerConstants;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class DptechUMC implements DisposeProcess {
public class DPTechImpl implements DisposeEntryManager {
@Override
public boolean getDeviceLinkStatus() {
List<ArrayOfProtectionObjectDataForService> objs = getAllProtectionObject();
return objs != null;
}
@Override
public int runDispose(String ip) {
@ -22,13 +31,15 @@ public class DptechUMC implements DisposeProcess {
}
@Override
public <T> T getAllDetectionObject() {
return (T) (cleanTypePort.getAllDetectionObjectFromUMC().getDetectionObjectDataForService());
@SuppressWarnings("unchecked")
public <T> List<T> getAllDetectionObject() {
return (List<T>) cleanTypePort.getAllDetectionObjectFromUMC().getDetectionObjectDataForService();
}
@Override
public <T> T getAllProtectionObject() {
return (T) (cleanTypePort.getAllProtectionObjectFromUMC().getProtectionObjectDataForService());
@SuppressWarnings("unchecked")
public <T> List<T> getAllProtectionObject() {
return (List<T>) cleanTypePort.getAllProtectionObjectFromUMC().getProtectionObjectDataForService();
}
public String GetDetectionObjectDeviceJson() throws JsonProcessingException {
@ -50,13 +61,31 @@ public class DptechUMC implements DisposeProcess {
AbnormalFlowCleaningServicePortType cleanTypePort;
public DptechUMC(String ipAddr) {
public DPTechImpl(String ipAddr) {
JaxWsProxyFactoryBean jaxWsProxyFactoryBean = new JaxWsProxyFactoryBean();
jaxWsProxyFactoryBean.setServiceClass(AbnormalFlowCleaningServicePortType.class);
jaxWsProxyFactoryBean.setAddress(String.format(ConstValue.SOAPWrapperConst.NAMESPACE_URI, ipAddr));
//WS-Security Head
Map<String, Object> outProps = new HashMap<String, Object>();
Map<String, Object> outProps = new HashMap<>();
outProps.put(WSHandlerConstants.ACTION, WSHandlerConstants.USERNAME_TOKEN);
outProps.put(WSHandlerConstants.USER, "admin");
outProps.put(WSHandlerConstants.PASSWORD_TYPE, WSConstants.PW_TEXT);
outProps.put(WSHandlerConstants.PW_CALLBACK_CLASS, SoapPasswordCallbackHandler.class.getName());
jaxWsProxyFactoryBean.getOutInterceptors().add(new WSS4JOutInterceptor(outProps));
this.cleanTypePort = (AbnormalFlowCleaningServicePortType)jaxWsProxyFactoryBean.create();
}
public DPTechImpl(String ipAddr, ConstValue.IPAddrType type) {
JaxWsProxyFactoryBean jaxWsProxyFactoryBean = new JaxWsProxyFactoryBean();
jaxWsProxyFactoryBean.setServiceClass(AbnormalFlowCleaningServicePortType.class);
jaxWsProxyFactoryBean.setAddress(String.format(ConstValue.SOAPWrapperConst.NAMESPACE_URI, ipAddr));
//WS-Security Head
Map<String, Object> outProps = new HashMap<>();
outProps.put(WSHandlerConstants.ACTION, WSHandlerConstants.USERNAME_TOKEN);
outProps.put(WSHandlerConstants.USER, "admin");

View File

@ -4,11 +4,15 @@ import com.dispose.common.ConstValue;
public class DeviceRouter {
public static DisposeProcess deviceRouterFactory(int devType, String ipAddr) {
public static DisposeEntryManager deviceRouterFactory(int devType, String ipAddr, ConstValue.IPAddrType ipType) {
if(devType == ConstValue.DisposeDeviceType.DPTECH_UMC.getCode()){
return new DptechUMC(ipAddr);
return new DPTechImpl(ipAddr);
}
return null;
}
public static DisposeEntryManager deviceRouterFactory(int devType, String ipAddr) {
return deviceRouterFactory(devType, ipAddr, ConstValue.IPAddrType.IPV4_TYPE);
}
}

View File

@ -2,16 +2,20 @@ package com.dispose.dispose;
//import com.dptech.NtcRequestResultInfo;
public interface DisposeProcess {
public int runDispose(String ip);
import java.util.List;
public <T> T getAllDetectionObject();
public interface DisposeEntryManager {
int runDispose(String ip);
public <T> T getAllProtectionObject();
<T> List<T> getAllDetectionObject();
public String getDetectionDevices();
<T> List<T> getAllProtectionObject();
public String getProtectDevices();
String getDetectionDevices();
String getProtectDevices();
boolean getDeviceLinkStatus();
//public NtcRequestResultInfo stopAbnormalTask(String abnormalIp, int attackType, int direction);

View File

@ -10,6 +10,7 @@ import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import org.springframework.http.HttpHeaders;
import java.util.List;
import java.util.Objects;
import com.dispose.common.ErrorCode;
@ -20,7 +21,7 @@ import com.dispose.common.ErrorCode;
public class ProtocolReqDTO extends ProtocolDTO {
private static final ObjectMapper objMapper = new ObjectMapper();
public <T> T getRequestObjects(Class<T> objType) throws JsonProcessingException {
public <T> T getRequestObject(Class<T> objType) throws JsonProcessingException {
return objMapper.readValue(this.getMsgContent(), objType);
}

View File

@ -0,0 +1,14 @@
package com.dispose.pojo.vo.common;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class IDArrayReq {
private String[] id;
}

View File

@ -0,0 +1,16 @@
package com.dispose.pojo.vo.information;
import com.dispose.pojo.po.ReturnStatus;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.*;
@EqualsAndHashCode(callSuper = true)
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonPropertyOrder({"id", "online", "status", "message"})
public class LinkStatusRsp extends ReturnStatus {
private String id;
private int online;
}

View File

@ -0,0 +1,10 @@
package com.dispose.service;
import com.dispose.common.ConstValue;
import java.util.concurrent.CompletableFuture;
public interface AsyncService {
CompletableFuture<Boolean> getDisposeDeviceLinkStatus(ConstValue.DisposeDeviceType deviceType, String ip, ConstValue.IPAddrType ipType);
CompletableFuture<Boolean> getDisposeDeviceLinkStatus(ConstValue.DisposeDeviceType deviceType, String ip);
}

View File

@ -0,0 +1,35 @@
package com.dispose.service.impl;
import com.dispose.common.ConstValue;
import com.dispose.dispose.DeviceRouter;
import com.dispose.dispose.DisposeEntryManager;
import com.dispose.service.AsyncService;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import java.util.concurrent.CompletableFuture;
@Service
public class AsyncServiceImpl implements AsyncService {
@Async("bizExecutor")
@Override
public CompletableFuture<Boolean> getDisposeDeviceLinkStatus(
ConstValue.DisposeDeviceType deviceType,
String ip,
ConstValue.IPAddrType ipType) {
DisposeEntryManager dp = DeviceRouter.deviceRouterFactory(deviceType.getCode(), ip, ipType);
return CompletableFuture.completedFuture(false);
}
@Async("bizExecutor")
@Override
public CompletableFuture<Boolean> getDisposeDeviceLinkStatus(
ConstValue.DisposeDeviceType deviceType,
String ip) {
return getDisposeDeviceLinkStatus(deviceType, ip, ConstValue.IPAddrType.IPV4_TYPE);
}
}

View File

@ -15,7 +15,7 @@ import javax.xml.ws.Service;
*
*/
@WebServiceClient(name = "AbnormalFlowCleaningService",
wsdlLocation = "./wsdl/AbnormalFlowCleaningService.wsdl",
wsdlLocation = "file:/C:/Users/xajhu/AppData/Local/Temp/tempdir5796574219958168688.tmp/view-source_10.88.77.15_UMC_service_AbnormalFlowCleaningService_wsdl_1.wsdl",
targetNamespace = "http://service.ntc.dp.com")
public class AbnormalFlowCleaningService extends Service {
@ -26,11 +26,11 @@ public class AbnormalFlowCleaningService extends Service {
static {
URL url = null;
try {
url = new URL("./wsdl/AbnormalFlowCleaningService.wsdl");
url = new URL("file:/C:/Users/xajhu/AppData/Local/Temp/tempdir5796574219958168688.tmp/view-source_10.88.77.15_UMC_service_AbnormalFlowCleaningService_wsdl_1.wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(AbnormalFlowCleaningService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "./wsdl/AbnormalFlowCleaningService.wsdl");
"Can not initialize the default wsdl from {0}", "file:/C:/Users/xajhu/AppData/Local/Temp/tempdir5796574219958168688.tmp/view-source_10.88.77.15_UMC_service_AbnormalFlowCleaningService_wsdl_1.wsdl");
}
WSDL_LOCATION = url;
}

View File

@ -1,735 +0,0 @@
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>FingerprintOtherForService complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType name="FingerprintOtherForService"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask3" 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;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="threshold" 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 = "FingerprintOtherForService", namespace = "http://data.ntc.dp.com", propOrder = {
"action",
"custom1",
"custom2",
"custom3",
"enable1",
"enable2",
"enable3",
"ip1",
"ip2",
"ip3",
"keylength1",
"keylength2",
"keylength3",
"keyoffset1",
"keyoffset2",
"keyoffset3",
"keytype1",
"keytype2",
"keytype3",
"mask1",
"mask2",
"mask3",
"name",
"objName",
"threshold"
})
public class FingerprintOtherForService {
@XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> action;
@XmlElementRef(name = "custom1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom1;
@XmlElementRef(name = "custom2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom2;
@XmlElementRef(name = "custom3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom3;
@XmlElementRef(name = "enable1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable1;
@XmlElementRef(name = "enable2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable2;
@XmlElementRef(name = "enable3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable3;
@XmlElementRef(name = "ip1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip1;
@XmlElementRef(name = "ip2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip2;
@XmlElementRef(name = "ip3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip3;
@XmlElementRef(name = "keylength1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength1;
@XmlElementRef(name = "keylength2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength2;
@XmlElementRef(name = "keylength3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength3;
@XmlElementRef(name = "keyoffset1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset1;
@XmlElementRef(name = "keyoffset2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset2;
@XmlElementRef(name = "keyoffset3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset3;
@XmlElementRef(name = "keytype1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype1;
@XmlElementRef(name = "keytype2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype2;
@XmlElementRef(name = "keytype3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype3;
@XmlElementRef(name = "mask1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask1;
@XmlElementRef(name = "mask2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask2;
@XmlElementRef(name = "mask3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask3;
@XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> name;
@XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> objName;
@XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> threshold;
/**
* 获取action属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getAction() {
return action;
}
/**
* 设置action属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setAction(JAXBElement<String> value) {
this.action = value;
}
/**
* 获取custom1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom1() {
return custom1;
}
/**
* 设置custom1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom1(JAXBElement<String> value) {
this.custom1 = value;
}
/**
* 获取custom2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom2() {
return custom2;
}
/**
* 设置custom2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom2(JAXBElement<String> value) {
this.custom2 = value;
}
/**
* 获取custom3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom3() {
return custom3;
}
/**
* 设置custom3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom3(JAXBElement<String> value) {
this.custom3 = value;
}
/**
* 获取enable1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable1() {
return enable1;
}
/**
* 设置enable1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable1(JAXBElement<String> value) {
this.enable1 = value;
}
/**
* 获取enable2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable2() {
return enable2;
}
/**
* 设置enable2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable2(JAXBElement<String> value) {
this.enable2 = value;
}
/**
* 获取enable3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable3() {
return enable3;
}
/**
* 设置enable3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable3(JAXBElement<String> value) {
this.enable3 = value;
}
/**
* 获取ip1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp1() {
return ip1;
}
/**
* 设置ip1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp1(JAXBElement<String> value) {
this.ip1 = value;
}
/**
* 获取ip2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp2() {
return ip2;
}
/**
* 设置ip2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp2(JAXBElement<String> value) {
this.ip2 = value;
}
/**
* 获取ip3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp3() {
return ip3;
}
/**
* 设置ip3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp3(JAXBElement<String> value) {
this.ip3 = value;
}
/**
* 获取keylength1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength1() {
return keylength1;
}
/**
* 设置keylength1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength1(JAXBElement<String> value) {
this.keylength1 = value;
}
/**
* 获取keylength2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength2() {
return keylength2;
}
/**
* 设置keylength2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength2(JAXBElement<String> value) {
this.keylength2 = value;
}
/**
* 获取keylength3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength3() {
return keylength3;
}
/**
* 设置keylength3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength3(JAXBElement<String> value) {
this.keylength3 = value;
}
/**
* 获取keyoffset1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset1() {
return keyoffset1;
}
/**
* 设置keyoffset1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset1(JAXBElement<String> value) {
this.keyoffset1 = value;
}
/**
* 获取keyoffset2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset2() {
return keyoffset2;
}
/**
* 设置keyoffset2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset2(JAXBElement<String> value) {
this.keyoffset2 = value;
}
/**
* 获取keyoffset3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset3() {
return keyoffset3;
}
/**
* 设置keyoffset3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset3(JAXBElement<String> value) {
this.keyoffset3 = value;
}
/**
* 获取keytype1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype1() {
return keytype1;
}
/**
* 设置keytype1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype1(JAXBElement<String> value) {
this.keytype1 = value;
}
/**
* 获取keytype2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype2() {
return keytype2;
}
/**
* 设置keytype2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype2(JAXBElement<String> value) {
this.keytype2 = value;
}
/**
* 获取keytype3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype3() {
return keytype3;
}
/**
* 设置keytype3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype3(JAXBElement<String> value) {
this.keytype3 = value;
}
/**
* 获取mask1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask1() {
return mask1;
}
/**
* 设置mask1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask1(JAXBElement<String> value) {
this.mask1 = value;
}
/**
* 获取mask2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask2() {
return mask2;
}
/**
* 设置mask2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask2(JAXBElement<String> value) {
this.mask2 = value;
}
/**
* 获取mask3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask3() {
return mask3;
}
/**
* 设置mask3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask3(JAXBElement<String> value) {
this.mask3 = 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;
}
/**
* 获取objName属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getObjName() {
return objName;
}
/**
* 设置objName属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setObjName(JAXBElement<String> value) {
this.objName = value;
}
/**
* 获取threshold属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getThreshold() {
return threshold;
}
/**
* 设置threshold属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setThreshold(JAXBElement<String> value) {
this.threshold = value;
}
}

View File

@ -1,903 +0,0 @@
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>FingerprintTcpForService complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType name="FingerprintTcpForService"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="flag1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="flag2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="flag3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask3" 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;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="port1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="port2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="port3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="threshold" 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 = "FingerprintTcpForService", namespace = "http://data.ntc.dp.com", propOrder = {
"action",
"custom1",
"custom2",
"custom3",
"enable1",
"enable2",
"enable3",
"flag1",
"flag2",
"flag3",
"ip1",
"ip2",
"ip3",
"keylength1",
"keylength2",
"keylength3",
"keyoffset1",
"keyoffset2",
"keyoffset3",
"keytype1",
"keytype2",
"keytype3",
"mask1",
"mask2",
"mask3",
"name",
"objName",
"port1",
"port2",
"port3",
"threshold"
})
public class FingerprintTcpForService {
@XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> action;
@XmlElementRef(name = "custom1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom1;
@XmlElementRef(name = "custom2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom2;
@XmlElementRef(name = "custom3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom3;
@XmlElementRef(name = "enable1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable1;
@XmlElementRef(name = "enable2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable2;
@XmlElementRef(name = "enable3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable3;
@XmlElementRef(name = "flag1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> flag1;
@XmlElementRef(name = "flag2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> flag2;
@XmlElementRef(name = "flag3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> flag3;
@XmlElementRef(name = "ip1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip1;
@XmlElementRef(name = "ip2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip2;
@XmlElementRef(name = "ip3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip3;
@XmlElementRef(name = "keylength1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength1;
@XmlElementRef(name = "keylength2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength2;
@XmlElementRef(name = "keylength3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength3;
@XmlElementRef(name = "keyoffset1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset1;
@XmlElementRef(name = "keyoffset2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset2;
@XmlElementRef(name = "keyoffset3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset3;
@XmlElementRef(name = "keytype1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype1;
@XmlElementRef(name = "keytype2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype2;
@XmlElementRef(name = "keytype3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype3;
@XmlElementRef(name = "mask1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask1;
@XmlElementRef(name = "mask2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask2;
@XmlElementRef(name = "mask3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask3;
@XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> name;
@XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> objName;
@XmlElementRef(name = "port1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> port1;
@XmlElementRef(name = "port2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> port2;
@XmlElementRef(name = "port3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> port3;
@XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> threshold;
/**
* 获取action属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getAction() {
return action;
}
/**
* 设置action属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setAction(JAXBElement<String> value) {
this.action = value;
}
/**
* 获取custom1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom1() {
return custom1;
}
/**
* 设置custom1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom1(JAXBElement<String> value) {
this.custom1 = value;
}
/**
* 获取custom2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom2() {
return custom2;
}
/**
* 设置custom2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom2(JAXBElement<String> value) {
this.custom2 = value;
}
/**
* 获取custom3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom3() {
return custom3;
}
/**
* 设置custom3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom3(JAXBElement<String> value) {
this.custom3 = value;
}
/**
* 获取enable1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable1() {
return enable1;
}
/**
* 设置enable1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable1(JAXBElement<String> value) {
this.enable1 = value;
}
/**
* 获取enable2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable2() {
return enable2;
}
/**
* 设置enable2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable2(JAXBElement<String> value) {
this.enable2 = value;
}
/**
* 获取enable3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable3() {
return enable3;
}
/**
* 设置enable3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable3(JAXBElement<String> value) {
this.enable3 = value;
}
/**
* 获取flag1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getFlag1() {
return flag1;
}
/**
* 设置flag1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFlag1(JAXBElement<String> value) {
this.flag1 = value;
}
/**
* 获取flag2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getFlag2() {
return flag2;
}
/**
* 设置flag2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFlag2(JAXBElement<String> value) {
this.flag2 = value;
}
/**
* 获取flag3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getFlag3() {
return flag3;
}
/**
* 设置flag3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFlag3(JAXBElement<String> value) {
this.flag3 = value;
}
/**
* 获取ip1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp1() {
return ip1;
}
/**
* 设置ip1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp1(JAXBElement<String> value) {
this.ip1 = value;
}
/**
* 获取ip2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp2() {
return ip2;
}
/**
* 设置ip2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp2(JAXBElement<String> value) {
this.ip2 = value;
}
/**
* 获取ip3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp3() {
return ip3;
}
/**
* 设置ip3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp3(JAXBElement<String> value) {
this.ip3 = value;
}
/**
* 获取keylength1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength1() {
return keylength1;
}
/**
* 设置keylength1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength1(JAXBElement<String> value) {
this.keylength1 = value;
}
/**
* 获取keylength2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength2() {
return keylength2;
}
/**
* 设置keylength2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength2(JAXBElement<String> value) {
this.keylength2 = value;
}
/**
* 获取keylength3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength3() {
return keylength3;
}
/**
* 设置keylength3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength3(JAXBElement<String> value) {
this.keylength3 = value;
}
/**
* 获取keyoffset1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset1() {
return keyoffset1;
}
/**
* 设置keyoffset1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset1(JAXBElement<String> value) {
this.keyoffset1 = value;
}
/**
* 获取keyoffset2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset2() {
return keyoffset2;
}
/**
* 设置keyoffset2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset2(JAXBElement<String> value) {
this.keyoffset2 = value;
}
/**
* 获取keyoffset3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset3() {
return keyoffset3;
}
/**
* 设置keyoffset3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset3(JAXBElement<String> value) {
this.keyoffset3 = value;
}
/**
* 获取keytype1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype1() {
return keytype1;
}
/**
* 设置keytype1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype1(JAXBElement<String> value) {
this.keytype1 = value;
}
/**
* 获取keytype2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype2() {
return keytype2;
}
/**
* 设置keytype2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype2(JAXBElement<String> value) {
this.keytype2 = value;
}
/**
* 获取keytype3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype3() {
return keytype3;
}
/**
* 设置keytype3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype3(JAXBElement<String> value) {
this.keytype3 = value;
}
/**
* 获取mask1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask1() {
return mask1;
}
/**
* 设置mask1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask1(JAXBElement<String> value) {
this.mask1 = value;
}
/**
* 获取mask2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask2() {
return mask2;
}
/**
* 设置mask2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask2(JAXBElement<String> value) {
this.mask2 = value;
}
/**
* 获取mask3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask3() {
return mask3;
}
/**
* 设置mask3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask3(JAXBElement<String> value) {
this.mask3 = 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;
}
/**
* 获取objName属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getObjName() {
return objName;
}
/**
* 设置objName属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setObjName(JAXBElement<String> value) {
this.objName = value;
}
/**
* 获取port1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getPort1() {
return port1;
}
/**
* 设置port1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setPort1(JAXBElement<String> value) {
this.port1 = value;
}
/**
* 获取port2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getPort2() {
return port2;
}
/**
* 设置port2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setPort2(JAXBElement<String> value) {
this.port2 = value;
}
/**
* 获取port3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getPort3() {
return port3;
}
/**
* 设置port3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setPort3(JAXBElement<String> value) {
this.port3 = value;
}
/**
* 获取threshold属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getThreshold() {
return threshold;
}
/**
* 设置threshold属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setThreshold(JAXBElement<String> value) {
this.threshold = value;
}
}

View File

@ -1,819 +0,0 @@
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>FingerprintUdpForService complex type的 Java
*
* <p>以下模式片段指定包含在此类中的预期内容
*
* <pre>
* &lt;complexType name="FingerprintUdpForService"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="mask3" 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;element name="objName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="port1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="port2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="port3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="threshold" 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 = "FingerprintUdpForService", namespace = "http://data.ntc.dp.com", propOrder = {
"action",
"custom1",
"custom2",
"custom3",
"enable1",
"enable2",
"enable3",
"ip1",
"ip2",
"ip3",
"keylength1",
"keylength2",
"keylength3",
"keyoffset1",
"keyoffset2",
"keyoffset3",
"keytype1",
"keytype2",
"keytype3",
"mask1",
"mask2",
"mask3",
"name",
"objName",
"port1",
"port2",
"port3",
"threshold"
})
public class FingerprintUdpForService {
@XmlElementRef(name = "action", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> action;
@XmlElementRef(name = "custom1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom1;
@XmlElementRef(name = "custom2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom2;
@XmlElementRef(name = "custom3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> custom3;
@XmlElementRef(name = "enable1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable1;
@XmlElementRef(name = "enable2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable2;
@XmlElementRef(name = "enable3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> enable3;
@XmlElementRef(name = "ip1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip1;
@XmlElementRef(name = "ip2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip2;
@XmlElementRef(name = "ip3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> ip3;
@XmlElementRef(name = "keylength1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength1;
@XmlElementRef(name = "keylength2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength2;
@XmlElementRef(name = "keylength3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keylength3;
@XmlElementRef(name = "keyoffset1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset1;
@XmlElementRef(name = "keyoffset2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset2;
@XmlElementRef(name = "keyoffset3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keyoffset3;
@XmlElementRef(name = "keytype1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype1;
@XmlElementRef(name = "keytype2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype2;
@XmlElementRef(name = "keytype3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> keytype3;
@XmlElementRef(name = "mask1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask1;
@XmlElementRef(name = "mask2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask2;
@XmlElementRef(name = "mask3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> mask3;
@XmlElementRef(name = "name", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> name;
@XmlElementRef(name = "objName", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> objName;
@XmlElementRef(name = "port1", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> port1;
@XmlElementRef(name = "port2", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> port2;
@XmlElementRef(name = "port3", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> port3;
@XmlElementRef(name = "threshold", namespace = "http://data.ntc.dp.com", type = JAXBElement.class, required = false)
protected JAXBElement<String> threshold;
/**
* 获取action属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getAction() {
return action;
}
/**
* 设置action属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setAction(JAXBElement<String> value) {
this.action = value;
}
/**
* 获取custom1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom1() {
return custom1;
}
/**
* 设置custom1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom1(JAXBElement<String> value) {
this.custom1 = value;
}
/**
* 获取custom2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom2() {
return custom2;
}
/**
* 设置custom2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom2(JAXBElement<String> value) {
this.custom2 = value;
}
/**
* 获取custom3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getCustom3() {
return custom3;
}
/**
* 设置custom3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setCustom3(JAXBElement<String> value) {
this.custom3 = value;
}
/**
* 获取enable1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable1() {
return enable1;
}
/**
* 设置enable1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable1(JAXBElement<String> value) {
this.enable1 = value;
}
/**
* 获取enable2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable2() {
return enable2;
}
/**
* 设置enable2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable2(JAXBElement<String> value) {
this.enable2 = value;
}
/**
* 获取enable3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getEnable3() {
return enable3;
}
/**
* 设置enable3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEnable3(JAXBElement<String> value) {
this.enable3 = value;
}
/**
* 获取ip1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp1() {
return ip1;
}
/**
* 设置ip1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp1(JAXBElement<String> value) {
this.ip1 = value;
}
/**
* 获取ip2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp2() {
return ip2;
}
/**
* 设置ip2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp2(JAXBElement<String> value) {
this.ip2 = value;
}
/**
* 获取ip3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getIp3() {
return ip3;
}
/**
* 设置ip3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setIp3(JAXBElement<String> value) {
this.ip3 = value;
}
/**
* 获取keylength1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength1() {
return keylength1;
}
/**
* 设置keylength1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength1(JAXBElement<String> value) {
this.keylength1 = value;
}
/**
* 获取keylength2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength2() {
return keylength2;
}
/**
* 设置keylength2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength2(JAXBElement<String> value) {
this.keylength2 = value;
}
/**
* 获取keylength3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeylength3() {
return keylength3;
}
/**
* 设置keylength3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeylength3(JAXBElement<String> value) {
this.keylength3 = value;
}
/**
* 获取keyoffset1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset1() {
return keyoffset1;
}
/**
* 设置keyoffset1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset1(JAXBElement<String> value) {
this.keyoffset1 = value;
}
/**
* 获取keyoffset2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset2() {
return keyoffset2;
}
/**
* 设置keyoffset2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset2(JAXBElement<String> value) {
this.keyoffset2 = value;
}
/**
* 获取keyoffset3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeyoffset3() {
return keyoffset3;
}
/**
* 设置keyoffset3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeyoffset3(JAXBElement<String> value) {
this.keyoffset3 = value;
}
/**
* 获取keytype1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype1() {
return keytype1;
}
/**
* 设置keytype1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype1(JAXBElement<String> value) {
this.keytype1 = value;
}
/**
* 获取keytype2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype2() {
return keytype2;
}
/**
* 设置keytype2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype2(JAXBElement<String> value) {
this.keytype2 = value;
}
/**
* 获取keytype3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getKeytype3() {
return keytype3;
}
/**
* 设置keytype3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setKeytype3(JAXBElement<String> value) {
this.keytype3 = value;
}
/**
* 获取mask1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask1() {
return mask1;
}
/**
* 设置mask1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask1(JAXBElement<String> value) {
this.mask1 = value;
}
/**
* 获取mask2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask2() {
return mask2;
}
/**
* 设置mask2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask2(JAXBElement<String> value) {
this.mask2 = value;
}
/**
* 获取mask3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMask3() {
return mask3;
}
/**
* 设置mask3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMask3(JAXBElement<String> value) {
this.mask3 = 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;
}
/**
* 获取objName属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getObjName() {
return objName;
}
/**
* 设置objName属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setObjName(JAXBElement<String> value) {
this.objName = value;
}
/**
* 获取port1属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getPort1() {
return port1;
}
/**
* 设置port1属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setPort1(JAXBElement<String> value) {
this.port1 = value;
}
/**
* 获取port2属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getPort2() {
return port2;
}
/**
* 设置port2属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setPort2(JAXBElement<String> value) {
this.port2 = value;
}
/**
* 获取port3属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getPort3() {
return port3;
}
/**
* 设置port3属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setPort3(JAXBElement<String> value) {
this.port3 = value;
}
/**
* 获取threshold属性的值
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getThreshold() {
return threshold;
}
/**
* 设置threshold属性的值
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setThreshold(JAXBElement<String> value) {
this.threshold = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "geDnsDomainCustomV4tFromUMC")
public class GeDnsDomainCustomV4TFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDnsDomainCustomV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "geDnsDomainCustomV4tFromUMCResponse")
public class GeDnsDomainCustomV4TFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDnsDomainCustomV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDnsDomainCustomV4ForService }
*
*/
public ArrayOfDnsDomainCustomV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDnsDomainCustomV4ForService }
*
*/
public void setOut(ArrayOfDnsDomainCustomV4ForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllAnomalyDetectionStrategyFromUMC")
public class GetAllAnomalyDetectionStrategyFromUMC {
}

View File

@ -1,64 +0,0 @@
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}ArrayOfAnomalyDetectionStrategy"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllAnomalyDetectionStrategyFromUMCResponse")
public class GetAllAnomalyDetectionStrategyFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfAnomalyDetectionStrategy out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfAnomalyDetectionStrategy }
*
*/
public ArrayOfAnomalyDetectionStrategy getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfAnomalyDetectionStrategy }
*
*/
public void setOut(ArrayOfAnomalyDetectionStrategy value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllBlackAndWhiteListFromUMC")
public class GetAllBlackAndWhiteListFromUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfBlackAndWhiteListDataForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllBlackAndWhiteListFromUMCResponse")
public class GetAllBlackAndWhiteListFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfBlackAndWhiteListDataForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfBlackAndWhiteListDataForService }
*
*/
public ArrayOfBlackAndWhiteListDataForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfBlackAndWhiteListDataForService }
*
*/
public void setOut(ArrayOfBlackAndWhiteListDataForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllBlackHoleAutoStrategyFromUMC")
public class GetAllBlackHoleAutoStrategyFromUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfBlackHoleAutoStrategyForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllBlackHoleAutoStrategyFromUMCResponse")
public class GetAllBlackHoleAutoStrategyFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfBlackHoleAutoStrategyForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfBlackHoleAutoStrategyForService }
*
*/
public ArrayOfBlackHoleAutoStrategyForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfBlackHoleAutoStrategyForService }
*
*/
public void setOut(ArrayOfBlackHoleAutoStrategyForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllBlackHoleManualStrategyFromUMC")
public class GetAllBlackHoleManualStrategyFromUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfBlackHoleManualStrategyForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllBlackHoleManualStrategyFromUMCResponse")
public class GetAllBlackHoleManualStrategyFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfBlackHoleManualStrategyForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfBlackHoleManualStrategyForService }
*
*/
public ArrayOfBlackHoleManualStrategyForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfBlackHoleManualStrategyForService }
*
*/
public void setOut(ArrayOfBlackHoleManualStrategyForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllBypassManualTractionStrategyFromUMC")
public class GetAllBypassManualTractionStrategyFromUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfBypassManualTractionStrategyForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllBypassManualTractionStrategyFromUMCResponse")
public class GetAllBypassManualTractionStrategyFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfBypassManualTractionStrategyForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfBypassManualTractionStrategyForService }
*
*/
public ArrayOfBypassManualTractionStrategyForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfBypassManualTractionStrategyForService }
*
*/
public void setOut(ArrayOfBypassManualTractionStrategyForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllCompleteAnomalyDetectionStrategyFromUMC")
public class GetAllCompleteAnomalyDetectionStrategyFromUMC {
}

View File

@ -1,64 +0,0 @@
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}ArrayOfAnomalyDetectionStrategy"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllCompleteAnomalyDetectionStrategyFromUMCResponse")
public class GetAllCompleteAnomalyDetectionStrategyFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfAnomalyDetectionStrategy out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfAnomalyDetectionStrategy }
*
*/
public ArrayOfAnomalyDetectionStrategy getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfAnomalyDetectionStrategy }
*
*/
public void setOut(ArrayOfAnomalyDetectionStrategy value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllDetectDevices")
public class GetAllDetectDevices {
}

View File

@ -1,64 +0,0 @@
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://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 = {
"out"
})
@XmlRootElement(name = "getAllDetectDevicesResponse")
public class GetAllDetectDevicesResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllDetectionObjectFromUMC")
public class GetAllDetectionObjectFromUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDetectionObjectDataForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllDetectionObjectFromUMCResponse")
public class GetAllDetectionObjectFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDetectionObjectDataForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDetectionObjectDataForService }
*
*/
public ArrayOfDetectionObjectDataForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDetectionObjectDataForService }
*
*/
public void setOut(ArrayOfDetectionObjectDataForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllProtectDevices")
public class GetAllProtectDevices {
}

View File

@ -1,64 +0,0 @@
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://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 = {
"out"
})
@XmlRootElement(name = "getAllProtectDevicesResponse")
public class GetAllProtectDevicesResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllProtectionObjectFromUMC")
public class GetAllProtectionObjectFromUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfProtectionObjectDataForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllProtectionObjectFromUMCResponse")
public class GetAllProtectionObjectFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfProtectionObjectDataForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfProtectionObjectDataForService }
*
*/
public ArrayOfProtectionObjectDataForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfProtectionObjectDataForService }
*
*/
public void setOut(ArrayOfProtectionObjectDataForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllProtectionStrategyTemplateFromUMC")
public class GetAllProtectionStrategyTemplateFromUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfProtectionStrategyTemplateForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllProtectionStrategyTemplateFromUMCResponse")
public class GetAllProtectionStrategyTemplateFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfProtectionStrategyTemplateForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfProtectionStrategyTemplateForService }
*
*/
public ArrayOfProtectionStrategyTemplateForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfProtectionStrategyTemplateForService }
*
*/
public void setOut(ArrayOfProtectionStrategyTemplateForService value) {
this.out = value;
}
}

View File

@ -1,32 +0,0 @@
package com.dptech.umc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "getAllProtectionTargetWithStrategyAssociationRelationshipForUMC")
public class GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC {
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfProtectionTargetWithStrategyForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse")
public class GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfProtectionTargetWithStrategyForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfProtectionTargetWithStrategyForService }
*
*/
public ArrayOfProtectionTargetWithStrategyForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfProtectionTargetWithStrategyForService }
*
*/
public void setOut(ArrayOfProtectionTargetWithStrategyForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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="strategyName" 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 = {
"strategyName"
})
@XmlRootElement(name = "getAnomalyDetectionStrategyFromUMC")
public class GetAnomalyDetectionStrategyFromUMC {
@XmlElement(required = true, nillable = true)
protected String strategyName;
/**
* 获取strategyName属性的值
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrategyName() {
return strategyName;
}
/**
* 设置strategyName属性的值
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrategyName(String value) {
this.strategyName = value;
}
}

View File

@ -1,64 +0,0 @@
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}AnomalyDetectionStrategy"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAnomalyDetectionStrategyFromUMCResponse")
public class GetAnomalyDetectionStrategyFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected AnomalyDetectionStrategy out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link AnomalyDetectionStrategy }
*
*/
public AnomalyDetectionStrategy getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link AnomalyDetectionStrategy }
*
*/
public void setOut(AnomalyDetectionStrategy value) {
this.out = value;
}
}

View File

@ -1,83 +0,0 @@
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="strategyName" type="{http://www.w3.org/2001/XMLSchema}string"/&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 = {
"strategyName",
"direction"
})
@XmlRootElement(name = "getCompleteAnomalyDetectionStrategyFromUMC")
public class GetCompleteAnomalyDetectionStrategyFromUMC {
@XmlElement(required = true, nillable = true)
protected String strategyName;
protected int direction;
/**
* 获取strategyName属性的值
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrategyName() {
return strategyName;
}
/**
* 设置strategyName属性的值
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrategyName(String value) {
this.strategyName = value;
}
/**
* 获取direction属性的值
*
*/
public int getDirection() {
return direction;
}
/**
* 设置direction属性的值
*
*/
public void setDirection(int value) {
this.direction = value;
}
}

View File

@ -1,64 +0,0 @@
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}AnomalyDetectionStrategy"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCompleteAnomalyDetectionStrategyFromUMCResponse")
public class GetCompleteAnomalyDetectionStrategyFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected AnomalyDetectionStrategy out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link AnomalyDetectionStrategy }
*
*/
public AnomalyDetectionStrategy getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link AnomalyDetectionStrategy }
*
*/
public void setOut(AnomalyDetectionStrategy value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosACProtectionFromUMC")
public class GetDdosACProtectionFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDdosACProtectionForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosACProtectionFromUMCResponse")
public class GetDdosACProtectionFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDdosACProtectionForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDdosACProtectionForService }
*
*/
public ArrayOfDdosACProtectionForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDdosACProtectionForService }
*
*/
public void setOut(ArrayOfDdosACProtectionForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosCCuserGroupV4FromUMC")
public class GetDdosCCuserGroupV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDdosCCuserGroupV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosCCuserGroupV4FromUMCResponse")
public class GetDdosCCuserGroupV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDdosCCuserGroupV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDdosCCuserGroupV4ForService }
*
*/
public ArrayOfDdosCCuserGroupV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDdosCCuserGroupV4ForService }
*
*/
public void setOut(ArrayOfDdosCCuserGroupV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosDnsRetryProtectFromUMC")
public class GetDdosDnsRetryProtectFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDdosDnsRetryProtectForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosDnsRetryProtectFromUMCResponse")
public class GetDdosDnsRetryProtectFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDdosDnsRetryProtectForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDdosDnsRetryProtectForService }
*
*/
public ArrayOfDdosDnsRetryProtectForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDdosDnsRetryProtectForService }
*
*/
public void setOut(ArrayOfDdosDnsRetryProtectForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalAckPayloadFromUMC")
public class GetDdosGlobalAckPayloadFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalAckPayloadForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalAckPayloadFromUMCResponse")
public class GetDdosGlobalAckPayloadFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalAckPayloadForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalAckPayloadForService }
*
*/
public DdosGlobalAckPayloadForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalAckPayloadForService }
*
*/
public void setOut(DdosGlobalAckPayloadForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalIcmpFragFromUMC")
public class GetDdosGlobalIcmpFragFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalIcmpFragForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalIcmpFragFromUMCResponse")
public class GetDdosGlobalIcmpFragFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalIcmpFragForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalIcmpFragForService }
*
*/
public DdosGlobalIcmpFragForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalIcmpFragForService }
*
*/
public void setOut(DdosGlobalIcmpFragForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalIcmpLengthFromUMC")
public class GetDdosGlobalIcmpLengthFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalIcmpLengthForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalIcmpLengthFromUMCResponse")
public class GetDdosGlobalIcmpLengthFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalIcmpLengthForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalIcmpLengthForService }
*
*/
public DdosGlobalIcmpLengthForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalIcmpLengthForService }
*
*/
public void setOut(DdosGlobalIcmpLengthForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalIcmpPayloadFromUMC")
public class GetDdosGlobalIcmpPayloadFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalIcmpPayloadForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalIcmpPayloadFromUMCResponse")
public class GetDdosGlobalIcmpPayloadFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalIcmpPayloadForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalIcmpPayloadForService }
*
*/
public DdosGlobalIcmpPayloadForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalIcmpPayloadForService }
*
*/
public void setOut(DdosGlobalIcmpPayloadForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalOtherFragFromUMC")
public class GetDdosGlobalOtherFragFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalOtherFragForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalOtherFragFromUMCResponse")
public class GetDdosGlobalOtherFragFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalOtherFragForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalOtherFragForService }
*
*/
public DdosGlobalOtherFragForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalOtherFragForService }
*
*/
public void setOut(DdosGlobalOtherFragForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalSynFloodFromUMC")
public class GetDdosGlobalSynFloodFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalSynFloodForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalSynFloodFromUMCResponse")
public class GetDdosGlobalSynFloodFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalSynFloodForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalSynFloodForService }
*
*/
public DdosGlobalSynFloodForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalSynFloodForService }
*
*/
public void setOut(DdosGlobalSynFloodForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalTcpFlagFromUMC")
public class GetDdosGlobalTcpFlagFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalTcpFlagForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalTcpFlagFromUMCResponse")
public class GetDdosGlobalTcpFlagFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalTcpFlagForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalTcpFlagForService }
*
*/
public DdosGlobalTcpFlagForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalTcpFlagForService }
*
*/
public void setOut(DdosGlobalTcpFlagForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalTcpFragFromUMC")
public class GetDdosGlobalTcpFragFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalTcpFragForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalTcpFragFromUMCResponse")
public class GetDdosGlobalTcpFragFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalTcpFragForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalTcpFragForService }
*
*/
public DdosGlobalTcpFragForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalTcpFragForService }
*
*/
public void setOut(DdosGlobalTcpFragForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalTcpLengthFromUMC")
public class GetDdosGlobalTcpLengthFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalTcpLengthForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalTcpLengthFromUMCResponse")
public class GetDdosGlobalTcpLengthFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalTcpLengthForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalTcpLengthForService }
*
*/
public DdosGlobalTcpLengthForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalTcpLengthForService }
*
*/
public void setOut(DdosGlobalTcpLengthForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalTcpStateFromUMC")
public class GetDdosGlobalTcpStateFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalTcpStateForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalTcpStateFromUMCResponse")
public class GetDdosGlobalTcpStateFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalTcpStateForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalTcpStateForService }
*
*/
public DdosGlobalTcpStateForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalTcpStateForService }
*
*/
public void setOut(DdosGlobalTcpStateForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalUdpFragFromUMC")
public class GetDdosGlobalUdpFragFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalUdpFragForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalUdpFragFromUMCResponse")
public class GetDdosGlobalUdpFragFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalUdpFragForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalUdpFragForService }
*
*/
public DdosGlobalUdpFragForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalUdpFragForService }
*
*/
public void setOut(DdosGlobalUdpFragForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalUdpLengthFromUMC")
public class GetDdosGlobalUdpLengthFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalUdpLengthForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalUdpLengthFromUMCResponse")
public class GetDdosGlobalUdpLengthFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalUdpLengthForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalUdpLengthForService }
*
*/
public DdosGlobalUdpLengthForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalUdpLengthForService }
*
*/
public void setOut(DdosGlobalUdpLengthForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosGlobalUdpPayloadFromUMC")
public class GetDdosGlobalUdpPayloadFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}DdosGlobalUdpPayloadForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosGlobalUdpPayloadFromUMCResponse")
public class GetDdosGlobalUdpPayloadFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected DdosGlobalUdpPayloadForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link DdosGlobalUdpPayloadForService }
*
*/
public DdosGlobalUdpPayloadForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link DdosGlobalUdpPayloadForService }
*
*/
public void setOut(DdosGlobalUdpPayloadForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosHttpGetSipCusProV4FromUMC")
public class GetDdosHttpGetSipCusProV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDdosHttpGetSipCusProV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosHttpGetSipCusProV4FromUMCResponse")
public class GetDdosHttpGetSipCusProV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDdosHttpGetSipCusProV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDdosHttpGetSipCusProV4ForService }
*
*/
public ArrayOfDdosHttpGetSipCusProV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDdosHttpGetSipCusProV4ForService }
*
*/
public void setOut(ArrayOfDdosHttpGetSipCusProV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosHttpGetSipGloProV4FromUMC")
public class GetDdosHttpGetSipGloProV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDdosHttpGetSipGloProV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosHttpGetSipGloProV4FromUMCResponse")
public class GetDdosHttpGetSipGloProV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDdosHttpGetSipGloProV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDdosHttpGetSipGloProV4ForService }
*
*/
public ArrayOfDdosHttpGetSipGloProV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDdosHttpGetSipGloProV4ForService }
*
*/
public void setOut(ArrayOfDdosHttpGetSipGloProV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosHttpGetUriCusProV4FromUMC")
public class GetDdosHttpGetUriCusProV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDdosHttpGetUriCusProV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosHttpGetUriCusProV4FromUMCResponse")
public class GetDdosHttpGetUriCusProV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDdosHttpGetUriCusProV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDdosHttpGetUriCusProV4ForService }
*
*/
public ArrayOfDdosHttpGetUriCusProV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDdosHttpGetUriCusProV4ForService }
*
*/
public void setOut(ArrayOfDdosHttpGetUriCusProV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDdosHttpGetUriGloProV4FromUMC")
public class GetDdosHttpGetUriGloProV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDdosHttpGetUriGloProV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDdosHttpGetUriGloProV4FromUMCResponse")
public class GetDdosHttpGetUriGloProV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDdosHttpGetUriGloProV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDdosHttpGetUriGloProV4ForService }
*
*/
public ArrayOfDdosHttpGetUriGloProV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDdosHttpGetUriGloProV4ForService }
*
*/
public void setOut(ArrayOfDdosHttpGetUriGloProV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDnsDomainGlobalV4FromUMC")
public class GetDnsDomainGlobalV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDnsDomainGlobalV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDnsDomainGlobalV4FromUMCResponse")
public class GetDnsDomainGlobalV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDnsDomainGlobalV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDnsDomainGlobalV4ForService }
*
*/
public ArrayOfDnsDomainGlobalV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDnsDomainGlobalV4ForService }
*
*/
public void setOut(ArrayOfDnsDomainGlobalV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDnsSecDomainCustomV4FromUMC")
public class GetDnsSecDomainCustomV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDnsSecDomainCustomV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDnsSecDomainCustomV4FromUMCResponse")
public class GetDnsSecDomainCustomV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDnsSecDomainCustomV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDnsSecDomainCustomV4ForService }
*
*/
public ArrayOfDnsSecDomainCustomV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDnsSecDomainCustomV4ForService }
*
*/
public void setOut(ArrayOfDnsSecDomainCustomV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDnsSecDomainGlobalV4FromUMC")
public class GetDnsSecDomainGlobalV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDnsSecDomainGlobalV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDnsSecDomainGlobalV4FromUMCResponse")
public class GetDnsSecDomainGlobalV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDnsSecDomainGlobalV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDnsSecDomainGlobalV4ForService }
*
*/
public ArrayOfDnsSecDomainGlobalV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDnsSecDomainGlobalV4ForService }
*
*/
public void setOut(ArrayOfDnsSecDomainGlobalV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDnsSipCustomV4FromUMC")
public class GetDnsSipCustomV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDnsSipCustomV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDnsSipCustomV4FromUMCResponse")
public class GetDnsSipCustomV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDnsSipCustomV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDnsSipCustomV4ForService }
*
*/
public ArrayOfDnsSipCustomV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDnsSipCustomV4ForService }
*
*/
public void setOut(ArrayOfDnsSipCustomV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getDnsSipGlobalV4FromUMC")
public class GetDnsSipGlobalV4FromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfDnsSipGlobalV4ForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDnsSipGlobalV4FromUMCResponse")
public class GetDnsSipGlobalV4FromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfDnsSipGlobalV4ForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfDnsSipGlobalV4ForService }
*
*/
public ArrayOfDnsSipGlobalV4ForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfDnsSipGlobalV4ForService }
*
*/
public void setOut(ArrayOfDnsSipGlobalV4ForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getFingerprintIcmpFromUMC")
public class GetFingerprintIcmpFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfFingerprintIcmpForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getFingerprintIcmpFromUMCResponse")
public class GetFingerprintIcmpFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfFingerprintIcmpForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfFingerprintIcmpForService }
*
*/
public ArrayOfFingerprintIcmpForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfFingerprintIcmpForService }
*
*/
public void setOut(ArrayOfFingerprintIcmpForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getFingerprintOtherFromUMC")
public class GetFingerprintOtherFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

View File

@ -1,64 +0,0 @@
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://data.ntc.dp.com}ArrayOfFingerprintOtherForService"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getFingerprintOtherFromUMCResponse")
public class GetFingerprintOtherFromUMCResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfFingerprintOtherForService out;
/**
* 获取out属性的值
*
* @return
* possible object is
* {@link ArrayOfFingerprintOtherForService }
*
*/
public ArrayOfFingerprintOtherForService getOut() {
return out;
}
/**
* 设置out属性的值
*
* @param value
* allowed object is
* {@link ArrayOfFingerprintOtherForService }
*
*/
public void setOut(ArrayOfFingerprintOtherForService value) {
this.out = value;
}
}

View File

@ -1,64 +0,0 @@
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;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objName"
})
@XmlRootElement(name = "getFingerprintTcpFromUMC")
public class GetFingerprintTcpFromUMC {
@XmlElement(required = true, nillable = true)
protected String objName;
/**
* 获取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;
}
}

Some files were not shown because too many files have changed in this diff Show More