diff --git a/src/main/java/com/dispose/common/ConstValue.java b/src/main/java/com/dispose/common/ConstValue.java index 2e72fa9c..2578f54b 100644 --- a/src/main/java/com/dispose/common/ConstValue.java +++ b/src/main/java/com/dispose/common/ConstValue.java @@ -91,4 +91,8 @@ public class ConstValue { public String getReadme() {return this.readme;} } + + public enum IPAddrType{ + IPV4_TYPE, IPV6_TYPE, + } } diff --git a/src/main/java/com/dispose/controller/AuthController.java b/src/main/java/com/dispose/controller/AuthController.java index 83efca5a..2f7fbb07 100644 --- a/src/main/java/com/dispose/controller/AuthController.java +++ b/src/main/java/com/dispose/controller/AuthController.java @@ -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)); diff --git a/src/main/java/com/dispose/controller/DisposeNodeController.java b/src/main/java/com/dispose/controller/DisposeNodeController.java new file mode 100644 index 00000000..d94a85ec --- /dev/null +++ b/src/main/java/com/dispose/controller/DisposeNodeController.java @@ -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 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 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); + } + +} diff --git a/src/main/java/com/dispose/dispose/DptechUMC.java b/src/main/java/com/dispose/dispose/DPTechImpl.java similarity index 55% rename from src/main/java/com/dispose/dispose/DptechUMC.java rename to src/main/java/com/dispose/dispose/DPTechImpl.java index 1defce39..70ff447e 100644 --- a/src/main/java/com/dispose/dispose/DptechUMC.java +++ b/src/main/java/com/dispose/dispose/DPTechImpl.java @@ -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 objs = getAllProtectionObject(); + + return objs != null; + } @Override public int runDispose(String ip) { @@ -22,13 +31,15 @@ public class DptechUMC implements DisposeProcess { } @Override - public T getAllDetectionObject() { - return (T) (cleanTypePort.getAllDetectionObjectFromUMC().getDetectionObjectDataForService()); + @SuppressWarnings("unchecked") + public List getAllDetectionObject() { + return (List) cleanTypePort.getAllDetectionObjectFromUMC().getDetectionObjectDataForService(); } @Override - public T getAllProtectionObject() { - return (T) (cleanTypePort.getAllProtectionObjectFromUMC().getProtectionObjectDataForService()); + @SuppressWarnings("unchecked") + public List getAllProtectionObject() { + return (List) 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 outProps = new HashMap(); + Map 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 outProps = new HashMap<>(); outProps.put(WSHandlerConstants.ACTION, WSHandlerConstants.USERNAME_TOKEN); outProps.put(WSHandlerConstants.USER, "admin"); diff --git a/src/main/java/com/dispose/dispose/DeviceRouter.java b/src/main/java/com/dispose/dispose/DeviceRouter.java index 0a91ad66..c368eff4 100644 --- a/src/main/java/com/dispose/dispose/DeviceRouter.java +++ b/src/main/java/com/dispose/dispose/DeviceRouter.java @@ -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); + } } diff --git a/src/main/java/com/dispose/dispose/DisposeProcess.java b/src/main/java/com/dispose/dispose/DisposeEntryManager.java similarity index 50% rename from src/main/java/com/dispose/dispose/DisposeProcess.java rename to src/main/java/com/dispose/dispose/DisposeEntryManager.java index 8be2c7f0..931da291 100644 --- a/src/main/java/com/dispose/dispose/DisposeProcess.java +++ b/src/main/java/com/dispose/dispose/DisposeEntryManager.java @@ -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 getAllDetectionObject(); +public interface DisposeEntryManager { + int runDispose(String ip); - public T getAllProtectionObject(); + List getAllDetectionObject(); - public String getDetectionDevices(); + List getAllProtectionObject(); - public String getProtectDevices(); + String getDetectionDevices(); + + String getProtectDevices(); + + boolean getDeviceLinkStatus(); //public NtcRequestResultInfo stopAbnormalTask(String abnormalIp, int attackType, int direction); diff --git a/src/main/java/com/dispose/pojo/dto/ProtocolReqDTO.java b/src/main/java/com/dispose/pojo/dto/ProtocolReqDTO.java index 7dfe37d1..d90776e6 100644 --- a/src/main/java/com/dispose/pojo/dto/ProtocolReqDTO.java +++ b/src/main/java/com/dispose/pojo/dto/ProtocolReqDTO.java @@ -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 getRequestObjects(Class objType) throws JsonProcessingException { + public T getRequestObject(Class objType) throws JsonProcessingException { return objMapper.readValue(this.getMsgContent(), objType); } diff --git a/src/main/java/com/dispose/pojo/vo/common/IDArrayReq.java b/src/main/java/com/dispose/pojo/vo/common/IDArrayReq.java new file mode 100644 index 00000000..ef2126d4 --- /dev/null +++ b/src/main/java/com/dispose/pojo/vo/common/IDArrayReq.java @@ -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; +} diff --git a/src/main/java/com/dispose/pojo/vo/information/LinkStatusRsp.java b/src/main/java/com/dispose/pojo/vo/information/LinkStatusRsp.java new file mode 100644 index 00000000..c54a2cbb --- /dev/null +++ b/src/main/java/com/dispose/pojo/vo/information/LinkStatusRsp.java @@ -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; +} diff --git a/src/main/java/com/dispose/service/AsyncService.java b/src/main/java/com/dispose/service/AsyncService.java new file mode 100644 index 00000000..949b65e6 --- /dev/null +++ b/src/main/java/com/dispose/service/AsyncService.java @@ -0,0 +1,10 @@ +package com.dispose.service; + +import com.dispose.common.ConstValue; + +import java.util.concurrent.CompletableFuture; + +public interface AsyncService { + CompletableFuture getDisposeDeviceLinkStatus(ConstValue.DisposeDeviceType deviceType, String ip, ConstValue.IPAddrType ipType); + CompletableFuture getDisposeDeviceLinkStatus(ConstValue.DisposeDeviceType deviceType, String ip); +} diff --git a/src/main/java/com/dispose/service/impl/AsyncServiceImpl.java b/src/main/java/com/dispose/service/impl/AsyncServiceImpl.java new file mode 100644 index 00000000..f83f70cc --- /dev/null +++ b/src/main/java/com/dispose/service/impl/AsyncServiceImpl.java @@ -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 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 getDisposeDeviceLinkStatus( + ConstValue.DisposeDeviceType deviceType, + String ip) { + + return getDisposeDeviceLinkStatus(deviceType, ip, ConstValue.IPAddrType.IPV4_TYPE); + } +} diff --git a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java index eb0ebd38..1452149d 100644 --- a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java +++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java @@ -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; } diff --git a/src/main/java/com/dptech/umc/FingerprintOtherForService.java b/src/main/java/com/dptech/umc/FingerprintOtherForService.java deleted file mode 100644 index b7dcf72f..00000000 --- a/src/main/java/com/dptech/umc/FingerprintOtherForService.java +++ /dev/null @@ -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; - - -/** - *

FingerprintOtherForService complex type Java ࡣ - * - *

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

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

FingerprintTcpForService complex type Java ࡣ - * - *

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

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

FingerprintUdpForService complex type Java ࡣ - * - *

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

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

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GeDnsDomainCustomV4TFromUMCResponse.java b/src/main/java/com/dptech/umc/GeDnsDomainCustomV4TFromUMCResponse.java deleted file mode 100644 index 48946776..00000000 --- a/src/main/java/com/dptech/umc/GeDnsDomainCustomV4TFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDnsDomainCustomV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllAnomalyDetectionStrategyFromUMC.java b/src/main/java/com/dptech/umc/GetAllAnomalyDetectionStrategyFromUMC.java deleted file mode 100644 index baa32dd0..00000000 --- a/src/main/java/com/dptech/umc/GetAllAnomalyDetectionStrategyFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllAnomalyDetectionStrategyFromUMC") -public class GetAllAnomalyDetectionStrategyFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllAnomalyDetectionStrategyFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllAnomalyDetectionStrategyFromUMCResponse.java deleted file mode 100644 index a272e3c7..00000000 --- a/src/main/java/com/dptech/umc/GetAllAnomalyDetectionStrategyFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}ArrayOfAnomalyDetectionStrategy"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllBlackAndWhiteListFromUMC.java b/src/main/java/com/dptech/umc/GetAllBlackAndWhiteListFromUMC.java deleted file mode 100644 index ab760fe0..00000000 --- a/src/main/java/com/dptech/umc/GetAllBlackAndWhiteListFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllBlackAndWhiteListFromUMC") -public class GetAllBlackAndWhiteListFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllBlackAndWhiteListFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllBlackAndWhiteListFromUMCResponse.java deleted file mode 100644 index 0c574705..00000000 --- a/src/main/java/com/dptech/umc/GetAllBlackAndWhiteListFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfBlackAndWhiteListDataForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllBlackHoleAutoStrategyFromUMC.java b/src/main/java/com/dptech/umc/GetAllBlackHoleAutoStrategyFromUMC.java deleted file mode 100644 index b9e7c91e..00000000 --- a/src/main/java/com/dptech/umc/GetAllBlackHoleAutoStrategyFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllBlackHoleAutoStrategyFromUMC") -public class GetAllBlackHoleAutoStrategyFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllBlackHoleAutoStrategyFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllBlackHoleAutoStrategyFromUMCResponse.java deleted file mode 100644 index bbb98f36..00000000 --- a/src/main/java/com/dptech/umc/GetAllBlackHoleAutoStrategyFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfBlackHoleAutoStrategyForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllBlackHoleManualStrategyFromUMC.java b/src/main/java/com/dptech/umc/GetAllBlackHoleManualStrategyFromUMC.java deleted file mode 100644 index 8da70957..00000000 --- a/src/main/java/com/dptech/umc/GetAllBlackHoleManualStrategyFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllBlackHoleManualStrategyFromUMC") -public class GetAllBlackHoleManualStrategyFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllBlackHoleManualStrategyFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllBlackHoleManualStrategyFromUMCResponse.java deleted file mode 100644 index 52e96976..00000000 --- a/src/main/java/com/dptech/umc/GetAllBlackHoleManualStrategyFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfBlackHoleManualStrategyForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllBypassManualTractionStrategyFromUMC.java b/src/main/java/com/dptech/umc/GetAllBypassManualTractionStrategyFromUMC.java deleted file mode 100644 index 334a7adf..00000000 --- a/src/main/java/com/dptech/umc/GetAllBypassManualTractionStrategyFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllBypassManualTractionStrategyFromUMC") -public class GetAllBypassManualTractionStrategyFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllBypassManualTractionStrategyFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllBypassManualTractionStrategyFromUMCResponse.java deleted file mode 100644 index 9f832a18..00000000 --- a/src/main/java/com/dptech/umc/GetAllBypassManualTractionStrategyFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfBypassManualTractionStrategyForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllCompleteAnomalyDetectionStrategyFromUMC.java b/src/main/java/com/dptech/umc/GetAllCompleteAnomalyDetectionStrategyFromUMC.java deleted file mode 100644 index 6fa6a867..00000000 --- a/src/main/java/com/dptech/umc/GetAllCompleteAnomalyDetectionStrategyFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllCompleteAnomalyDetectionStrategyFromUMC") -public class GetAllCompleteAnomalyDetectionStrategyFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllCompleteAnomalyDetectionStrategyFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllCompleteAnomalyDetectionStrategyFromUMCResponse.java deleted file mode 100644 index f864af23..00000000 --- a/src/main/java/com/dptech/umc/GetAllCompleteAnomalyDetectionStrategyFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}ArrayOfAnomalyDetectionStrategy"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllDetectDevices.java b/src/main/java/com/dptech/umc/GetAllDetectDevices.java deleted file mode 100644 index db642d4e..00000000 --- a/src/main/java/com/dptech/umc/GetAllDetectDevices.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllDetectDevices") -public class GetAllDetectDevices { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllDetectDevicesResponse.java b/src/main/java/com/dptech/umc/GetAllDetectDevicesResponse.java deleted file mode 100644 index 5e844ccd..00000000 --- a/src/main/java/com/dptech/umc/GetAllDetectDevicesResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllDetectionObjectFromUMC.java b/src/main/java/com/dptech/umc/GetAllDetectionObjectFromUMC.java deleted file mode 100644 index 2c01495b..00000000 --- a/src/main/java/com/dptech/umc/GetAllDetectionObjectFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllDetectionObjectFromUMC") -public class GetAllDetectionObjectFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllDetectionObjectFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllDetectionObjectFromUMCResponse.java deleted file mode 100644 index df72eb60..00000000 --- a/src/main/java/com/dptech/umc/GetAllDetectionObjectFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDetectionObjectDataForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectDevices.java b/src/main/java/com/dptech/umc/GetAllProtectDevices.java deleted file mode 100644 index c46d9992..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectDevices.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllProtectDevices") -public class GetAllProtectDevices { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectDevicesResponse.java b/src/main/java/com/dptech/umc/GetAllProtectDevicesResponse.java deleted file mode 100644 index ed44fcee..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectDevicesResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectionObjectFromUMC.java b/src/main/java/com/dptech/umc/GetAllProtectionObjectFromUMC.java deleted file mode 100644 index c167e1be..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectionObjectFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllProtectionObjectFromUMC") -public class GetAllProtectionObjectFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectionObjectFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllProtectionObjectFromUMCResponse.java deleted file mode 100644 index 665c315f..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectionObjectFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfProtectionObjectDataForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectionStrategyTemplateFromUMC.java b/src/main/java/com/dptech/umc/GetAllProtectionStrategyTemplateFromUMC.java deleted file mode 100644 index 2c82ee92..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectionStrategyTemplateFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllProtectionStrategyTemplateFromUMC") -public class GetAllProtectionStrategyTemplateFromUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectionStrategyTemplateFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAllProtectionStrategyTemplateFromUMCResponse.java deleted file mode 100644 index 59c20ad5..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectionStrategyTemplateFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfProtectionStrategyTemplateForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC.java b/src/main/java/com/dptech/umc/GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC.java deleted file mode 100644 index f8b6fafe..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "getAllProtectionTargetWithStrategyAssociationRelationshipForUMC") -public class GetAllProtectionTargetWithStrategyAssociationRelationshipForUMC { - - -} diff --git a/src/main/java/com/dptech/umc/GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse.java b/src/main/java/com/dptech/umc/GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse.java deleted file mode 100644 index 3d8de507..00000000 --- a/src/main/java/com/dptech/umc/GetAllProtectionTargetWithStrategyAssociationRelationshipForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfProtectionTargetWithStrategyForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAnomalyDetectionStrategyFromUMC.java b/src/main/java/com/dptech/umc/GetAnomalyDetectionStrategyFromUMC.java deleted file mode 100644 index 26660e08..00000000 --- a/src/main/java/com/dptech/umc/GetAnomalyDetectionStrategyFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="strategyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "strategyName" -}) -@XmlRootElement(name = "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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetAnomalyDetectionStrategyFromUMCResponse.java b/src/main/java/com/dptech/umc/GetAnomalyDetectionStrategyFromUMCResponse.java deleted file mode 100644 index 24e352b7..00000000 --- a/src/main/java/com/dptech/umc/GetAnomalyDetectionStrategyFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}AnomalyDetectionStrategy"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetCompleteAnomalyDetectionStrategyFromUMC.java b/src/main/java/com/dptech/umc/GetCompleteAnomalyDetectionStrategyFromUMC.java deleted file mode 100644 index 8a6de2a5..00000000 --- a/src/main/java/com/dptech/umc/GetCompleteAnomalyDetectionStrategyFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="strategyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "strategyName", - "direction" -}) -@XmlRootElement(name = "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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetCompleteAnomalyDetectionStrategyFromUMCResponse.java b/src/main/java/com/dptech/umc/GetCompleteAnomalyDetectionStrategyFromUMCResponse.java deleted file mode 100644 index cdc08162..00000000 --- a/src/main/java/com/dptech/umc/GetCompleteAnomalyDetectionStrategyFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}AnomalyDetectionStrategy"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosACProtectionFromUMC.java b/src/main/java/com/dptech/umc/GetDdosACProtectionFromUMC.java deleted file mode 100644 index 742d38ad..00000000 --- a/src/main/java/com/dptech/umc/GetDdosACProtectionFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosACProtectionFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosACProtectionFromUMCResponse.java deleted file mode 100644 index 23397356..00000000 --- a/src/main/java/com/dptech/umc/GetDdosACProtectionFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDdosACProtectionForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosCCuserGroupV4FromUMC.java b/src/main/java/com/dptech/umc/GetDdosCCuserGroupV4FromUMC.java deleted file mode 100644 index 23c16071..00000000 --- a/src/main/java/com/dptech/umc/GetDdosCCuserGroupV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosCCuserGroupV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosCCuserGroupV4FromUMCResponse.java deleted file mode 100644 index be405091..00000000 --- a/src/main/java/com/dptech/umc/GetDdosCCuserGroupV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDdosCCuserGroupV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosDnsRetryProtectFromUMC.java b/src/main/java/com/dptech/umc/GetDdosDnsRetryProtectFromUMC.java deleted file mode 100644 index 80f170d0..00000000 --- a/src/main/java/com/dptech/umc/GetDdosDnsRetryProtectFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosDnsRetryProtectFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosDnsRetryProtectFromUMCResponse.java deleted file mode 100644 index 007b2f48..00000000 --- a/src/main/java/com/dptech/umc/GetDdosDnsRetryProtectFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDdosDnsRetryProtectForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalAckPayloadFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalAckPayloadFromUMC.java deleted file mode 100644 index b8aeacf1..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalAckPayloadFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalAckPayloadFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalAckPayloadFromUMCResponse.java deleted file mode 100644 index e1e832d8..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalAckPayloadFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalAckPayloadForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpFragFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalIcmpFragFromUMC.java deleted file mode 100644 index 6d3a695a..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpFragFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpFragFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalIcmpFragFromUMCResponse.java deleted file mode 100644 index 30c3b6f5..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpFragFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalIcmpFragForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpLengthFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalIcmpLengthFromUMC.java deleted file mode 100644 index 0b41b422..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpLengthFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpLengthFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalIcmpLengthFromUMCResponse.java deleted file mode 100644 index eb37da62..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpLengthFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalIcmpLengthForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpPayloadFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalIcmpPayloadFromUMC.java deleted file mode 100644 index 64ddfd37..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpPayloadFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpPayloadFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalIcmpPayloadFromUMCResponse.java deleted file mode 100644 index ed8f57a8..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalIcmpPayloadFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalIcmpPayloadForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalOtherFragFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalOtherFragFromUMC.java deleted file mode 100644 index 0f35f8cd..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalOtherFragFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalOtherFragFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalOtherFragFromUMCResponse.java deleted file mode 100644 index b1b6469b..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalOtherFragFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalOtherFragForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalSynFloodFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalSynFloodFromUMC.java deleted file mode 100644 index b96172c8..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalSynFloodFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalSynFloodFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalSynFloodFromUMCResponse.java deleted file mode 100644 index 4dbb1bcd..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalSynFloodFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalSynFloodForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFlagFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpFlagFromUMC.java deleted file mode 100644 index 12e1b467..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFlagFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFlagFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpFlagFromUMCResponse.java deleted file mode 100644 index 29b90f97..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFlagFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalTcpFlagForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFragFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpFragFromUMC.java deleted file mode 100644 index ed660775..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFragFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFragFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpFragFromUMCResponse.java deleted file mode 100644 index 298ed6e2..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpFragFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalTcpFragForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpLengthFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpLengthFromUMC.java deleted file mode 100644 index c537fb43..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpLengthFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpLengthFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpLengthFromUMCResponse.java deleted file mode 100644 index e2b9791c..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpLengthFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalTcpLengthForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpStateFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpStateFromUMC.java deleted file mode 100644 index 9d60edd9..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpStateFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalTcpStateFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalTcpStateFromUMCResponse.java deleted file mode 100644 index 557462f4..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalTcpStateFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalTcpStateForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalUdpFragFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalUdpFragFromUMC.java deleted file mode 100644 index e00b00fd..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalUdpFragFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalUdpFragFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalUdpFragFromUMCResponse.java deleted file mode 100644 index f6495fdf..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalUdpFragFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalUdpFragForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalUdpLengthFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalUdpLengthFromUMC.java deleted file mode 100644 index ffb72f73..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalUdpLengthFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalUdpLengthFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalUdpLengthFromUMCResponse.java deleted file mode 100644 index 2dc364ac..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalUdpLengthFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalUdpLengthForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalUdpPayloadFromUMC.java b/src/main/java/com/dptech/umc/GetDdosGlobalUdpPayloadFromUMC.java deleted file mode 100644 index e90cae92..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalUdpPayloadFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosGlobalUdpPayloadFromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosGlobalUdpPayloadFromUMCResponse.java deleted file mode 100644 index 5fc179d1..00000000 --- a/src/main/java/com/dptech/umc/GetDdosGlobalUdpPayloadFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}DdosGlobalUdpPayloadForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetSipCusProV4FromUMC.java b/src/main/java/com/dptech/umc/GetDdosHttpGetSipCusProV4FromUMC.java deleted file mode 100644 index d79393e9..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetSipCusProV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetSipCusProV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosHttpGetSipCusProV4FromUMCResponse.java deleted file mode 100644 index c862439b..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetSipCusProV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDdosHttpGetSipCusProV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetSipGloProV4FromUMC.java b/src/main/java/com/dptech/umc/GetDdosHttpGetSipGloProV4FromUMC.java deleted file mode 100644 index bd242fc2..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetSipGloProV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetSipGloProV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosHttpGetSipGloProV4FromUMCResponse.java deleted file mode 100644 index 464f80e3..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetSipGloProV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDdosHttpGetSipGloProV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetUriCusProV4FromUMC.java b/src/main/java/com/dptech/umc/GetDdosHttpGetUriCusProV4FromUMC.java deleted file mode 100644 index 6514a79d..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetUriCusProV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetUriCusProV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosHttpGetUriCusProV4FromUMCResponse.java deleted file mode 100644 index 57eb9fb4..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetUriCusProV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDdosHttpGetUriCusProV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetUriGloProV4FromUMC.java b/src/main/java/com/dptech/umc/GetDdosHttpGetUriGloProV4FromUMC.java deleted file mode 100644 index 527e68fd..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetUriGloProV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDdosHttpGetUriGloProV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDdosHttpGetUriGloProV4FromUMCResponse.java deleted file mode 100644 index ef1952c0..00000000 --- a/src/main/java/com/dptech/umc/GetDdosHttpGetUriGloProV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDdosHttpGetUriGloProV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsDomainGlobalV4FromUMC.java b/src/main/java/com/dptech/umc/GetDnsDomainGlobalV4FromUMC.java deleted file mode 100644 index 0a144e17..00000000 --- a/src/main/java/com/dptech/umc/GetDnsDomainGlobalV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsDomainGlobalV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDnsDomainGlobalV4FromUMCResponse.java deleted file mode 100644 index 81caca69..00000000 --- a/src/main/java/com/dptech/umc/GetDnsDomainGlobalV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDnsDomainGlobalV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSecDomainCustomV4FromUMC.java b/src/main/java/com/dptech/umc/GetDnsSecDomainCustomV4FromUMC.java deleted file mode 100644 index 29ef3512..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSecDomainCustomV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSecDomainCustomV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDnsSecDomainCustomV4FromUMCResponse.java deleted file mode 100644 index e74bb4ba..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSecDomainCustomV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDnsSecDomainCustomV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSecDomainGlobalV4FromUMC.java b/src/main/java/com/dptech/umc/GetDnsSecDomainGlobalV4FromUMC.java deleted file mode 100644 index 377cce20..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSecDomainGlobalV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSecDomainGlobalV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDnsSecDomainGlobalV4FromUMCResponse.java deleted file mode 100644 index 03b5e252..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSecDomainGlobalV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDnsSecDomainGlobalV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSipCustomV4FromUMC.java b/src/main/java/com/dptech/umc/GetDnsSipCustomV4FromUMC.java deleted file mode 100644 index 0f7d7e2a..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSipCustomV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSipCustomV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDnsSipCustomV4FromUMCResponse.java deleted file mode 100644 index c6b5da29..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSipCustomV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDnsSipCustomV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSipGlobalV4FromUMC.java b/src/main/java/com/dptech/umc/GetDnsSipGlobalV4FromUMC.java deleted file mode 100644 index 99d93e9e..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSipGlobalV4FromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetDnsSipGlobalV4FromUMCResponse.java b/src/main/java/com/dptech/umc/GetDnsSipGlobalV4FromUMCResponse.java deleted file mode 100644 index 22c77dc3..00000000 --- a/src/main/java/com/dptech/umc/GetDnsSipGlobalV4FromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfDnsSipGlobalV4ForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintIcmpFromUMC.java b/src/main/java/com/dptech/umc/GetFingerprintIcmpFromUMC.java deleted file mode 100644 index 676fe01c..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintIcmpFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintIcmpFromUMCResponse.java b/src/main/java/com/dptech/umc/GetFingerprintIcmpFromUMCResponse.java deleted file mode 100644 index d35c576b..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintIcmpFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfFingerprintIcmpForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintOtherFromUMC.java b/src/main/java/com/dptech/umc/GetFingerprintOtherFromUMC.java deleted file mode 100644 index 5df0bbc1..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintOtherFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintOtherFromUMCResponse.java b/src/main/java/com/dptech/umc/GetFingerprintOtherFromUMCResponse.java deleted file mode 100644 index 017e7e78..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintOtherFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfFingerprintOtherForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintTcpFromUMC.java b/src/main/java/com/dptech/umc/GetFingerprintTcpFromUMC.java deleted file mode 100644 index f98b1d9b..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintTcpFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintTcpFromUMCResponse.java b/src/main/java/com/dptech/umc/GetFingerprintTcpFromUMCResponse.java deleted file mode 100644 index bf89520b..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintTcpFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfFingerprintTcpForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "getFingerprintTcpFromUMCResponse") -public class GetFingerprintTcpFromUMCResponse { - - @XmlElement(required = true, nillable = true) - protected ArrayOfFingerprintTcpForService out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link ArrayOfFingerprintTcpForService } - * - */ - public ArrayOfFingerprintTcpForService getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link ArrayOfFingerprintTcpForService } - * - */ - public void setOut(ArrayOfFingerprintTcpForService value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintUdpFromUMC.java b/src/main/java/com/dptech/umc/GetFingerprintUdpFromUMC.java deleted file mode 100644 index 78f9b974..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintUdpFromUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName" -}) -@XmlRootElement(name = "getFingerprintUdpFromUMC") -public class GetFingerprintUdpFromUMC { - - @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; - } - -} diff --git a/src/main/java/com/dptech/umc/GetFingerprintUdpFromUMCResponse.java b/src/main/java/com/dptech/umc/GetFingerprintUdpFromUMCResponse.java deleted file mode 100644 index aca1be00..00000000 --- a/src/main/java/com/dptech/umc/GetFingerprintUdpFromUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://data.ntc.dp.com}ArrayOfFingerprintUdpForService"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "getFingerprintUdpFromUMCResponse") -public class GetFingerprintUdpFromUMCResponse { - - @XmlElement(required = true, nillable = true) - protected ArrayOfFingerprintUdpForService out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link ArrayOfFingerprintUdpForService } - * - */ - public ArrayOfFingerprintUdpForService getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link ArrayOfFingerprintUdpForService } - * - */ - public void setOut(ArrayOfFingerprintUdpForService value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/LinkProtectionStrategyTemplateForUMC.java b/src/main/java/com/dptech/umc/LinkProtectionStrategyTemplateForUMC.java deleted file mode 100644 index ed3b202b..00000000 --- a/src/main/java/com/dptech/umc/LinkProtectionStrategyTemplateForUMC.java +++ /dev/null @@ -1,92 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="protectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="templateName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "protectName", - "templateName" -}) -@XmlRootElement(name = "linkProtectionStrategyTemplateForUMC") -public class LinkProtectionStrategyTemplateForUMC { - - @XmlElement(required = true, nillable = true) - protected String protectName; - @XmlElement(required = true, nillable = true) - protected String templateName; - - /** - * ȡprotectNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectName() { - return protectName; - } - - /** - * protectNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectName(String value) { - this.protectName = value; - } - - /** - * ȡtemplateNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getTemplateName() { - return templateName; - } - - /** - * templateNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTemplateName(String value) { - this.templateName = value; - } - -} diff --git a/src/main/java/com/dptech/umc/LinkProtectionStrategyTemplateForUMCResponse.java b/src/main/java/com/dptech/umc/LinkProtectionStrategyTemplateForUMCResponse.java deleted file mode 100644 index 171935fd..00000000 --- a/src/main/java/com/dptech/umc/LinkProtectionStrategyTemplateForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "linkProtectionStrategyTemplateForUMCResponse") -public class LinkProtectionStrategyTemplateForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModACProtectionForUMC.java b/src/main/java/com/dptech/umc/ModACProtectionForUMC.java deleted file mode 100644 index 037380d0..00000000 --- a/src/main/java/com/dptech/umc/ModACProtectionForUMC.java +++ /dev/null @@ -1,484 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fixString" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="startLocation" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="endLocation" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="regularExpression" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="acSip" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="acSmask" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="acDip" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="acDmask" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protocol" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="srcPortMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="srcPortMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dstPortMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dstPortMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "fixString", - "startLocation", - "endLocation", - "regularExpression", - "acSip", - "acSmask", - "acDip", - "acDmask", - "protocol", - "srcPortMin", - "srcPortMax", - "dstPortMin", - "dstPortMax", - "threshold" -}) -@XmlRootElement(name = "modACProtectionForUMC") -public class ModACProtectionForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String fixString; - @XmlElement(required = true, nillable = true) - protected String startLocation; - @XmlElement(required = true, nillable = true) - protected String endLocation; - @XmlElement(required = true, nillable = true) - protected String regularExpression; - @XmlElement(required = true, nillable = true) - protected String acSip; - @XmlElement(required = true, nillable = true) - protected String acSmask; - @XmlElement(required = true, nillable = true) - protected String acDip; - @XmlElement(required = true, nillable = true) - protected String acDmask; - @XmlElement(required = true, nillable = true) - protected String protocol; - @XmlElement(required = true, nillable = true) - protected String srcPortMin; - @XmlElement(required = true, nillable = true) - protected String srcPortMax; - @XmlElement(required = true, nillable = true) - protected String dstPortMin; - @XmlElement(required = true, nillable = true) - protected String dstPortMax; - @XmlElement(required = true, nillable = true) - protected String threshold; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡfixStringԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getFixString() { - return fixString; - } - - /** - * fixStringԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFixString(String value) { - this.fixString = value; - } - - /** - * ȡstartLocationԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartLocation() { - return startLocation; - } - - /** - * startLocationԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartLocation(String value) { - this.startLocation = value; - } - - /** - * ȡendLocationԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEndLocation() { - return endLocation; - } - - /** - * endLocationԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEndLocation(String value) { - this.endLocation = value; - } - - /** - * ȡregularExpressionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegularExpression() { - return regularExpression; - } - - /** - * regularExpressionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegularExpression(String value) { - this.regularExpression = value; - } - - /** - * ȡacSipԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAcSip() { - return acSip; - } - - /** - * acSipԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAcSip(String value) { - this.acSip = value; - } - - /** - * ȡacSmaskԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAcSmask() { - return acSmask; - } - - /** - * acSmaskԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAcSmask(String value) { - this.acSmask = value; - } - - /** - * ȡacDipԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAcDip() { - return acDip; - } - - /** - * acDipԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAcDip(String value) { - this.acDip = value; - } - - /** - * ȡacDmaskԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAcDmask() { - return acDmask; - } - - /** - * acDmaskԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAcDmask(String value) { - this.acDmask = value; - } - - /** - * ȡprotocolԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtocol() { - return protocol; - } - - /** - * protocolԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtocol(String value) { - this.protocol = value; - } - - /** - * ȡsrcPortMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSrcPortMin() { - return srcPortMin; - } - - /** - * srcPortMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSrcPortMin(String value) { - this.srcPortMin = value; - } - - /** - * ȡsrcPortMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSrcPortMax() { - return srcPortMax; - } - - /** - * srcPortMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSrcPortMax(String value) { - this.srcPortMax = value; - } - - /** - * ȡdstPortMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDstPortMin() { - return dstPortMin; - } - - /** - * dstPortMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDstPortMin(String value) { - this.dstPortMin = value; - } - - /** - * ȡdstPortMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDstPortMax() { - return dstPortMax; - } - - /** - * dstPortMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDstPortMax(String value) { - this.dstPortMax = value; - } - - /** - * ȡthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * thresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModACProtectionForUMCResponse.java b/src/main/java/com/dptech/umc/ModACProtectionForUMCResponse.java deleted file mode 100644 index e2215c0c..00000000 --- a/src/main/java/com/dptech/umc/ModACProtectionForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modACProtectionForUMCResponse") -public class ModACProtectionForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBlackAndWhiteListProtection.java b/src/main/java/com/dptech/umc/ModBlackAndWhiteListProtection.java deleted file mode 100644 index 2265719e..00000000 --- a/src/main/java/com/dptech/umc/ModBlackAndWhiteListProtection.java +++ /dev/null @@ -1,372 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sipType" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sipStartIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sipEndIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dipType" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dipStartIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dipEndIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="timeType" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hour" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="minute" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="second" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectionType" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "name", - "sipType", - "sipStartIp", - "sipEndIp", - "dipType", - "dipStartIp", - "dipEndIp", - "timeType", - "hour", - "minute", - "second", - "protectionType" -}) -@XmlRootElement(name = "modBlackAndWhiteListProtection") -public class ModBlackAndWhiteListProtection { - - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String sipType; - @XmlElement(required = true, nillable = true) - protected String sipStartIp; - @XmlElement(required = true, nillable = true) - protected String sipEndIp; - @XmlElement(required = true, nillable = true) - protected String dipType; - @XmlElement(required = true, nillable = true) - protected String dipStartIp; - @XmlElement(required = true, nillable = true) - protected String dipEndIp; - @XmlElement(required = true, nillable = true) - protected String timeType; - @XmlElement(required = true, nillable = true) - protected String hour; - @XmlElement(required = true, nillable = true) - protected String minute; - @XmlElement(required = true, nillable = true) - protected String second; - @XmlElement(required = true, nillable = true) - protected String protectionType; - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡsipTypeԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSipType() { - return sipType; - } - - /** - * sipTypeԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSipType(String value) { - this.sipType = value; - } - - /** - * ȡsipStartIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSipStartIp() { - return sipStartIp; - } - - /** - * sipStartIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSipStartIp(String value) { - this.sipStartIp = value; - } - - /** - * ȡsipEndIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSipEndIp() { - return sipEndIp; - } - - /** - * sipEndIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSipEndIp(String value) { - this.sipEndIp = value; - } - - /** - * ȡdipTypeԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDipType() { - return dipType; - } - - /** - * dipTypeԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDipType(String value) { - this.dipType = value; - } - - /** - * ȡdipStartIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDipStartIp() { - return dipStartIp; - } - - /** - * dipStartIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDipStartIp(String value) { - this.dipStartIp = value; - } - - /** - * ȡdipEndIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDipEndIp() { - return dipEndIp; - } - - /** - * dipEndIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDipEndIp(String value) { - this.dipEndIp = value; - } - - /** - * ȡtimeTypeԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getTimeType() { - return timeType; - } - - /** - * timeTypeԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTimeType(String value) { - this.timeType = value; - } - - /** - * ȡhourԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getHour() { - return hour; - } - - /** - * hourԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHour(String value) { - this.hour = value; - } - - /** - * ȡminuteԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMinute() { - return minute; - } - - /** - * minuteԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMinute(String value) { - this.minute = value; - } - - /** - * ȡsecondԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecond() { - return second; - } - - /** - * secondԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecond(String value) { - this.second = value; - } - - /** - * ȡprotectionTypeԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectionType() { - return protectionType; - } - - /** - * protectionTypeԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectionType(String value) { - this.protectionType = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBlackAndWhiteListProtectionResponse.java b/src/main/java/com/dptech/umc/ModBlackAndWhiteListProtectionResponse.java deleted file mode 100644 index 44907b74..00000000 --- a/src/main/java/com/dptech/umc/ModBlackAndWhiteListProtectionResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modBlackAndWhiteListProtectionResponse") -public class ModBlackAndWhiteListProtectionResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBlackHoleAutoStrategyForUMC.java b/src/main/java/com/dptech/umc/ModBlackHoleAutoStrategyForUMC.java deleted file mode 100644 index 009ced3e..00000000 --- a/src/main/java/com/dptech/umc/ModBlackHoleAutoStrategyForUMC.java +++ /dev/null @@ -1,121 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="detectMode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="blackHoleThreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="blackHoleTime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "policyName", - "detectMode", - "blackHoleThreshold", - "blackHoleTime" -}) -@XmlRootElement(name = "modBlackHoleAutoStrategyForUMC") -public class ModBlackHoleAutoStrategyForUMC { - - @XmlElement(required = true, nillable = true) - protected String policyName; - protected int detectMode; - protected int blackHoleThreshold; - protected int blackHoleTime; - - /** - * ȡpolicyNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyName() { - return policyName; - } - - /** - * policyNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyName(String value) { - this.policyName = value; - } - - /** - * ȡdetectModeԵֵ - * - */ - public int getDetectMode() { - return detectMode; - } - - /** - * detectModeԵֵ - * - */ - public void setDetectMode(int value) { - this.detectMode = value; - } - - /** - * ȡblackHoleThresholdԵֵ - * - */ - public int getBlackHoleThreshold() { - return blackHoleThreshold; - } - - /** - * blackHoleThresholdԵֵ - * - */ - public void setBlackHoleThreshold(int value) { - this.blackHoleThreshold = value; - } - - /** - * ȡblackHoleTimeԵֵ - * - */ - public int getBlackHoleTime() { - return blackHoleTime; - } - - /** - * blackHoleTimeԵֵ - * - */ - public void setBlackHoleTime(int value) { - this.blackHoleTime = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBlackHoleAutoStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/ModBlackHoleAutoStrategyForUMCResponse.java deleted file mode 100644 index e8f0868d..00000000 --- a/src/main/java/com/dptech/umc/ModBlackHoleAutoStrategyForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modBlackHoleAutoStrategyForUMCResponse") -public class ModBlackHoleAutoStrategyForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBlackHoleManualStrategyForUMC.java b/src/main/java/com/dptech/umc/ModBlackHoleManualStrategyForUMC.java deleted file mode 100644 index 07a50338..00000000 --- a/src/main/java/com/dptech/umc/ModBlackHoleManualStrategyForUMC.java +++ /dev/null @@ -1,92 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ipAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "policyName", - "ipAddress" -}) -@XmlRootElement(name = "modBlackHoleManualStrategyForUMC") -public class ModBlackHoleManualStrategyForUMC { - - @XmlElement(required = true, nillable = true) - protected String policyName; - @XmlElement(required = true, nillable = true) - protected String ipAddress; - - /** - * ȡpolicyNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyName() { - return policyName; - } - - /** - * policyNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyName(String value) { - this.policyName = value; - } - - /** - * ȡipAddressԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIpAddress() { - return ipAddress; - } - - /** - * ipAddressԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIpAddress(String value) { - this.ipAddress = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBlackHoleManualStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/ModBlackHoleManualStrategyForUMCResponse.java deleted file mode 100644 index 6ceb78ad..00000000 --- a/src/main/java/com/dptech/umc/ModBlackHoleManualStrategyForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modBlackHoleManualStrategyForUMCResponse") -public class ModBlackHoleManualStrategyForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBypassManualTractionStrategyForUMC.java b/src/main/java/com/dptech/umc/ModBypassManualTractionStrategyForUMC.java deleted file mode 100644 index 85a255ce..00000000 --- a/src/main/java/com/dptech/umc/ModBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,120 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ipRange" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "policyName", - "protectName", - "ipRange" -}) -@XmlRootElement(name = "modBypassManualTractionStrategyForUMC") -public class ModBypassManualTractionStrategyForUMC { - - @XmlElement(required = true, nillable = true) - protected String policyName; - @XmlElement(required = true, nillable = true) - protected String protectName; - @XmlElement(required = true, nillable = true) - protected String ipRange; - - /** - * ȡpolicyNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyName() { - return policyName; - } - - /** - * policyNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyName(String value) { - this.policyName = value; - } - - /** - * ȡprotectNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectName() { - return protectName; - } - - /** - * protectNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectName(String value) { - this.protectName = value; - } - - /** - * ȡipRangeԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIpRange() { - return ipRange; - } - - /** - * ipRangeԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIpRange(String value) { - this.ipRange = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModBypassManualTractionStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/ModBypassManualTractionStrategyForUMCResponse.java deleted file mode 100644 index 4e8445ac..00000000 --- a/src/main/java/com/dptech/umc/ModBypassManualTractionStrategyForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modBypassManualTractionStrategyForUMCResponse") -public class ModBypassManualTractionStrategyForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosCCuserGroupV4ForUMC.java b/src/main/java/com/dptech/umc/ModDdosCCuserGroupV4ForUMC.java deleted file mode 100644 index aa31b426..00000000 --- a/src/main/java/com/dptech/umc/ModDdosCCuserGroupV4ForUMC.java +++ /dev/null @@ -1,92 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name" -}) -@XmlRootElement(name = "modDdosCCuserGroupV4ForUMC") -public class ModDdosCCuserGroupV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosCCuserGroupV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDdosCCuserGroupV4ForUMCResponse.java deleted file mode 100644 index b8d53128..00000000 --- a/src/main/java/com/dptech/umc/ModDdosCCuserGroupV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDdosCCuserGroupV4ForUMCResponse") -public class ModDdosCCuserGroupV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosDnsRetryProtectForUMC.java b/src/main/java/com/dptech/umc/ModDdosDnsRetryProtectForUMC.java deleted file mode 100644 index e931a3d6..00000000 --- a/src/main/java/com/dptech/umc/ModDdosDnsRetryProtectForUMC.java +++ /dev/null @@ -1,176 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="alertthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "action", - "alertthreshold", - "protectthreshold" -}) -@XmlRootElement(name = "modDdosDnsRetryProtectForUMC") -public class ModDdosDnsRetryProtectForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String action; - @XmlElement(required = true, nillable = true) - protected String alertthreshold; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - - /** - * ȡalertthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlertthreshold() { - return alertthreshold; - } - - /** - * alertthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlertthreshold(String value) { - this.alertthreshold = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosDnsRetryProtectForUMCResponse.java b/src/main/java/com/dptech/umc/ModDdosDnsRetryProtectForUMCResponse.java deleted file mode 100644 index 00f45fa6..00000000 --- a/src/main/java/com/dptech/umc/ModDdosDnsRetryProtectForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDdosDnsRetryProtectForUMCResponse") -public class ModDdosDnsRetryProtectForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetSipCusProV4ForUMC.java b/src/main/java/com/dptech/umc/ModDdosHttpGetSipCusProV4ForUMC.java deleted file mode 100644 index 85df0195..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetSipCusProV4ForUMC.java +++ /dev/null @@ -1,176 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sip" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "sip", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDdosHttpGetSipCusProV4ForUMC") -public class ModDdosHttpGetSipCusProV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String sip; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡsipԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSip() { - return sip; - } - - /** - * sipԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSip(String value) { - this.sip = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetSipCusProV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDdosHttpGetSipCusProV4ForUMCResponse.java deleted file mode 100644 index 6892420d..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetSipCusProV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDdosHttpGetSipCusProV4ForUMCResponse") -public class ModDdosHttpGetSipCusProV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetSipGloProV4ForUMC.java b/src/main/java/com/dptech/umc/ModDdosHttpGetSipGloProV4ForUMC.java deleted file mode 100644 index bf3958a3..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetSipGloProV4ForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDdosHttpGetSipGloProV4ForUMC") -public class ModDdosHttpGetSipGloProV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetSipGloProV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDdosHttpGetSipGloProV4ForUMCResponse.java deleted file mode 100644 index eca11e87..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetSipGloProV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDdosHttpGetSipGloProV4ForUMCResponse") -public class ModDdosHttpGetSipGloProV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetUriCusProV4ForUMC.java b/src/main/java/com/dptech/umc/ModDdosHttpGetUriCusProV4ForUMC.java deleted file mode 100644 index db1b64fc..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetUriCusProV4ForUMC.java +++ /dev/null @@ -1,176 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="URI" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "uri", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDdosHttpGetUriCusProV4ForUMC") -public class ModDdosHttpGetUriCusProV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(name = "URI", required = true, nillable = true) - protected String uri; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡuriԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getURI() { - return uri; - } - - /** - * uriԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setURI(String value) { - this.uri = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetUriCusProV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDdosHttpGetUriCusProV4ForUMCResponse.java deleted file mode 100644 index cc5486ff..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetUriCusProV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDdosHttpGetUriCusProV4ForUMCResponse") -public class ModDdosHttpGetUriCusProV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetUriGloProV4ForUMC.java b/src/main/java/com/dptech/umc/ModDdosHttpGetUriGloProV4ForUMC.java deleted file mode 100644 index bcb4ebaa..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetUriGloProV4ForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDdosHttpGetUriGloProV4ForUMC") -public class ModDdosHttpGetUriGloProV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDdosHttpGetUriGloProV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDdosHttpGetUriGloProV4ForUMCResponse.java deleted file mode 100644 index 29f933a3..00000000 --- a/src/main/java/com/dptech/umc/ModDdosHttpGetUriGloProV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDdosHttpGetUriGloProV4ForUMCResponse") -public class ModDdosHttpGetUriGloProV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsDomainCustomV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsDomainCustomV4ForUMC.java deleted file mode 100644 index 6b1ea9b9..00000000 --- a/src/main/java/com/dptech/umc/ModDnsDomainCustomV4ForUMC.java +++ /dev/null @@ -1,176 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "domain", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDnsDomainCustomV4ForUMC") -public class ModDnsDomainCustomV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String domain; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡdomainԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomain() { - return domain; - } - - /** - * domainԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomain(String value) { - this.domain = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsDomainCustomV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsDomainCustomV4ForUMCResponse.java deleted file mode 100644 index dd96feed..00000000 --- a/src/main/java/com/dptech/umc/ModDnsDomainCustomV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDnsDomainCustomV4ForUMCResponse") -public class ModDnsDomainCustomV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsDomainGlobalV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsDomainGlobalV4ForUMC.java deleted file mode 100644 index e27ceea4..00000000 --- a/src/main/java/com/dptech/umc/ModDnsDomainGlobalV4ForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDnsDomainGlobalV4ForUMC") -public class ModDnsDomainGlobalV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsDomainGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsDomainGlobalV4ForUMCResponse.java deleted file mode 100644 index eefd03b8..00000000 --- a/src/main/java/com/dptech/umc/ModDnsDomainGlobalV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDnsDomainGlobalV4ForUMCResponse") -public class ModDnsDomainGlobalV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSecDomainCustomV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsSecDomainCustomV4ForUMC.java deleted file mode 100644 index 36638632..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSecDomainCustomV4ForUMC.java +++ /dev/null @@ -1,176 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "domain", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDnsSecDomainCustomV4ForUMC") -public class ModDnsSecDomainCustomV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String domain; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡdomainԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomain() { - return domain; - } - - /** - * domainԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomain(String value) { - this.domain = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSecDomainCustomV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsSecDomainCustomV4ForUMCResponse.java deleted file mode 100644 index f3fa2737..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSecDomainCustomV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDnsSecDomainCustomV4ForUMCResponse") -public class ModDnsSecDomainCustomV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMC.java deleted file mode 100644 index 4a54a626..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDnsSecDomainGlobalV4ForUMC") -public class ModDnsSecDomainGlobalV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMCResponse.java deleted file mode 100644 index cc893cb3..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSecDomainGlobalV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDnsSecDomainGlobalV4ForUMCResponse") -public class ModDnsSecDomainGlobalV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMC.java deleted file mode 100644 index 5a0797f6..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMC.java +++ /dev/null @@ -1,204 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sipstart" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sipend" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "sipstart", - "sipend", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDnsSipCustomV4ForUMC") -public class ModDnsSipCustomV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String sipstart; - @XmlElement(required = true, nillable = true) - protected String sipend; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡsipstartԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSipstart() { - return sipstart; - } - - /** - * sipstartԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSipstart(String value) { - this.sipstart = value; - } - - /** - * ȡsipendԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSipend() { - return sipend; - } - - /** - * sipendԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSipend(String value) { - this.sipend = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMCResponse.java deleted file mode 100644 index 054d029f..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSipCustomV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDnsSipCustomV4ForUMCResponse") -public class ModDnsSipCustomV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMC.java b/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMC.java deleted file mode 100644 index e3b776e7..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="protectthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "protectthreshold", - "action" -}) -@XmlRootElement(name = "modDnsSipGlobalV4ForUMC") -public class ModDnsSipGlobalV4ForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String protectthreshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡprotectthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectthreshold() { - return protectthreshold; - } - - /** - * protectthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectthreshold(String value) { - this.protectthreshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMCResponse.java b/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMCResponse.java deleted file mode 100644 index 69fcb421..00000000 --- a/src/main/java/com/dptech/umc/ModDnsSipGlobalV4ForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modDnsSipGlobalV4ForUMCResponse") -public class ModDnsSipGlobalV4ForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMC.java deleted file mode 100644 index d9c9a937..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMC.java +++ /dev/null @@ -1,736 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "keytype1", - "keyoffset1", - "keylength1", - "ip1", - "mask1", - "enable1", - "custom1", - "keytype2", - "keyoffset2", - "keylength2", - "ip2", - "mask2", - "enable2", - "custom2", - "keytype3", - "keyoffset3", - "keylength3", - "ip3", - "mask3", - "enable3", - "custom3", - "threshold", - "action" -}) -@XmlRootElement(name = "modFingerprintIcmpForUMC") -public class ModFingerprintIcmpForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String keytype1; - @XmlElement(required = true, nillable = true) - protected String keyoffset1; - @XmlElement(required = true, nillable = true) - protected String keylength1; - @XmlElement(required = true, nillable = true) - protected String ip1; - @XmlElement(required = true, nillable = true) - protected String mask1; - @XmlElement(required = true, nillable = true) - protected String enable1; - @XmlElement(required = true, nillable = true) - protected String custom1; - @XmlElement(required = true, nillable = true) - protected String keytype2; - @XmlElement(required = true, nillable = true) - protected String keyoffset2; - @XmlElement(required = true, nillable = true) - protected String keylength2; - @XmlElement(required = true, nillable = true) - protected String ip2; - @XmlElement(required = true, nillable = true) - protected String mask2; - @XmlElement(required = true, nillable = true) - protected String enable2; - @XmlElement(required = true, nillable = true) - protected String custom2; - @XmlElement(required = true, nillable = true) - protected String keytype3; - @XmlElement(required = true, nillable = true) - protected String keyoffset3; - @XmlElement(required = true, nillable = true) - protected String keylength3; - @XmlElement(required = true, nillable = true) - protected String ip3; - @XmlElement(required = true, nillable = true) - protected String mask3; - @XmlElement(required = true, nillable = true) - protected String enable3; - @XmlElement(required = true, nillable = true) - protected String custom3; - @XmlElement(required = true, nillable = true) - protected String threshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡkeytype1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype1() { - return keytype1; - } - - /** - * keytype1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype1(String value) { - this.keytype1 = value; - } - - /** - * ȡkeyoffset1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset1() { - return keyoffset1; - } - - /** - * keyoffset1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset1(String value) { - this.keyoffset1 = value; - } - - /** - * ȡkeylength1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength1() { - return keylength1; - } - - /** - * keylength1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength1(String value) { - this.keylength1 = value; - } - - /** - * ȡip1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp1() { - return ip1; - } - - /** - * ip1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp1(String value) { - this.ip1 = value; - } - - /** - * ȡmask1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask1() { - return mask1; - } - - /** - * mask1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask1(String value) { - this.mask1 = value; - } - - /** - * ȡenable1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable1() { - return enable1; - } - - /** - * enable1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable1(String value) { - this.enable1 = value; - } - - /** - * ȡcustom1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom1() { - return custom1; - } - - /** - * custom1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom1(String value) { - this.custom1 = value; - } - - /** - * ȡkeytype2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype2() { - return keytype2; - } - - /** - * keytype2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype2(String value) { - this.keytype2 = value; - } - - /** - * ȡkeyoffset2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset2() { - return keyoffset2; - } - - /** - * keyoffset2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset2(String value) { - this.keyoffset2 = value; - } - - /** - * ȡkeylength2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength2() { - return keylength2; - } - - /** - * keylength2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength2(String value) { - this.keylength2 = value; - } - - /** - * ȡip2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp2() { - return ip2; - } - - /** - * ip2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp2(String value) { - this.ip2 = value; - } - - /** - * ȡmask2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask2() { - return mask2; - } - - /** - * mask2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask2(String value) { - this.mask2 = value; - } - - /** - * ȡenable2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable2() { - return enable2; - } - - /** - * enable2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable2(String value) { - this.enable2 = value; - } - - /** - * ȡcustom2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom2() { - return custom2; - } - - /** - * custom2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom2(String value) { - this.custom2 = value; - } - - /** - * ȡkeytype3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype3() { - return keytype3; - } - - /** - * keytype3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype3(String value) { - this.keytype3 = value; - } - - /** - * ȡkeyoffset3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset3() { - return keyoffset3; - } - - /** - * keyoffset3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset3(String value) { - this.keyoffset3 = value; - } - - /** - * ȡkeylength3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength3() { - return keylength3; - } - - /** - * keylength3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength3(String value) { - this.keylength3 = value; - } - - /** - * ȡip3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp3() { - return ip3; - } - - /** - * ip3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp3(String value) { - this.ip3 = value; - } - - /** - * ȡmask3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask3() { - return mask3; - } - - /** - * mask3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask3(String value) { - this.mask3 = value; - } - - /** - * ȡenable3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable3() { - return enable3; - } - - /** - * enable3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable3(String value) { - this.enable3 = value; - } - - /** - * ȡcustom3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom3() { - return custom3; - } - - /** - * custom3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom3(String value) { - this.custom3 = value; - } - - /** - * ȡthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * thresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMCResponse.java deleted file mode 100644 index 451ea619..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintIcmpForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modFingerprintIcmpForUMCResponse") -public class ModFingerprintIcmpForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintOtherForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintOtherForUMC.java deleted file mode 100644 index 7ab9d11b..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintOtherForUMC.java +++ /dev/null @@ -1,736 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "keytype1", - "keyoffset1", - "keylength1", - "ip1", - "mask1", - "enable1", - "custom1", - "keytype2", - "keyoffset2", - "keylength2", - "ip2", - "mask2", - "enable2", - "custom2", - "keytype3", - "keyoffset3", - "keylength3", - "ip3", - "mask3", - "enable3", - "custom3", - "threshold", - "action" -}) -@XmlRootElement(name = "modFingerprintOtherForUMC") -public class ModFingerprintOtherForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String keytype1; - @XmlElement(required = true, nillable = true) - protected String keyoffset1; - @XmlElement(required = true, nillable = true) - protected String keylength1; - @XmlElement(required = true, nillable = true) - protected String ip1; - @XmlElement(required = true, nillable = true) - protected String mask1; - @XmlElement(required = true, nillable = true) - protected String enable1; - @XmlElement(required = true, nillable = true) - protected String custom1; - @XmlElement(required = true, nillable = true) - protected String keytype2; - @XmlElement(required = true, nillable = true) - protected String keyoffset2; - @XmlElement(required = true, nillable = true) - protected String keylength2; - @XmlElement(required = true, nillable = true) - protected String ip2; - @XmlElement(required = true, nillable = true) - protected String mask2; - @XmlElement(required = true, nillable = true) - protected String enable2; - @XmlElement(required = true, nillable = true) - protected String custom2; - @XmlElement(required = true, nillable = true) - protected String keytype3; - @XmlElement(required = true, nillable = true) - protected String keyoffset3; - @XmlElement(required = true, nillable = true) - protected String keylength3; - @XmlElement(required = true, nillable = true) - protected String ip3; - @XmlElement(required = true, nillable = true) - protected String mask3; - @XmlElement(required = true, nillable = true) - protected String enable3; - @XmlElement(required = true, nillable = true) - protected String custom3; - @XmlElement(required = true, nillable = true) - protected String threshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡkeytype1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype1() { - return keytype1; - } - - /** - * keytype1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype1(String value) { - this.keytype1 = value; - } - - /** - * ȡkeyoffset1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset1() { - return keyoffset1; - } - - /** - * keyoffset1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset1(String value) { - this.keyoffset1 = value; - } - - /** - * ȡkeylength1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength1() { - return keylength1; - } - - /** - * keylength1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength1(String value) { - this.keylength1 = value; - } - - /** - * ȡip1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp1() { - return ip1; - } - - /** - * ip1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp1(String value) { - this.ip1 = value; - } - - /** - * ȡmask1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask1() { - return mask1; - } - - /** - * mask1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask1(String value) { - this.mask1 = value; - } - - /** - * ȡenable1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable1() { - return enable1; - } - - /** - * enable1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable1(String value) { - this.enable1 = value; - } - - /** - * ȡcustom1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom1() { - return custom1; - } - - /** - * custom1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom1(String value) { - this.custom1 = value; - } - - /** - * ȡkeytype2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype2() { - return keytype2; - } - - /** - * keytype2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype2(String value) { - this.keytype2 = value; - } - - /** - * ȡkeyoffset2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset2() { - return keyoffset2; - } - - /** - * keyoffset2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset2(String value) { - this.keyoffset2 = value; - } - - /** - * ȡkeylength2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength2() { - return keylength2; - } - - /** - * keylength2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength2(String value) { - this.keylength2 = value; - } - - /** - * ȡip2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp2() { - return ip2; - } - - /** - * ip2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp2(String value) { - this.ip2 = value; - } - - /** - * ȡmask2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask2() { - return mask2; - } - - /** - * mask2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask2(String value) { - this.mask2 = value; - } - - /** - * ȡenable2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable2() { - return enable2; - } - - /** - * enable2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable2(String value) { - this.enable2 = value; - } - - /** - * ȡcustom2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom2() { - return custom2; - } - - /** - * custom2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom2(String value) { - this.custom2 = value; - } - - /** - * ȡkeytype3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype3() { - return keytype3; - } - - /** - * keytype3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype3(String value) { - this.keytype3 = value; - } - - /** - * ȡkeyoffset3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset3() { - return keyoffset3; - } - - /** - * keyoffset3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset3(String value) { - this.keyoffset3 = value; - } - - /** - * ȡkeylength3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength3() { - return keylength3; - } - - /** - * keylength3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength3(String value) { - this.keylength3 = value; - } - - /** - * ȡip3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp3() { - return ip3; - } - - /** - * ip3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp3(String value) { - this.ip3 = value; - } - - /** - * ȡmask3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask3() { - return mask3; - } - - /** - * mask3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask3(String value) { - this.mask3 = value; - } - - /** - * ȡenable3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable3() { - return enable3; - } - - /** - * enable3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable3(String value) { - this.enable3 = value; - } - - /** - * ȡcustom3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom3() { - return custom3; - } - - /** - * custom3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom3(String value) { - this.custom3 = value; - } - - /** - * ȡthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * thresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintOtherForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintOtherForUMCResponse.java deleted file mode 100644 index 5672de24..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintOtherForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modFingerprintOtherForUMCResponse") -public class ModFingerprintOtherForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintTcpForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintTcpForUMC.java deleted file mode 100644 index 8c7d9cac..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintTcpForUMC.java +++ /dev/null @@ -1,904 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="port1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="flag1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="port2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="flag2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="port3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="flag3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "keytype1", - "keyoffset1", - "keylength1", - "port1", - "flag1", - "ip1", - "mask1", - "enable1", - "custom1", - "keytype2", - "keyoffset2", - "keylength2", - "port2", - "flag2", - "ip2", - "mask2", - "enable2", - "custom2", - "keytype3", - "keyoffset3", - "keylength3", - "port3", - "flag3", - "ip3", - "mask3", - "enable3", - "custom3", - "threshold", - "action" -}) -@XmlRootElement(name = "modFingerprintTcpForUMC") -public class ModFingerprintTcpForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String keytype1; - @XmlElement(required = true, nillable = true) - protected String keyoffset1; - @XmlElement(required = true, nillable = true) - protected String keylength1; - @XmlElement(required = true, nillable = true) - protected String port1; - @XmlElement(required = true, nillable = true) - protected String flag1; - @XmlElement(required = true, nillable = true) - protected String ip1; - @XmlElement(required = true, nillable = true) - protected String mask1; - @XmlElement(required = true, nillable = true) - protected String enable1; - @XmlElement(required = true, nillable = true) - protected String custom1; - @XmlElement(required = true, nillable = true) - protected String keytype2; - @XmlElement(required = true, nillable = true) - protected String keyoffset2; - @XmlElement(required = true, nillable = true) - protected String keylength2; - @XmlElement(required = true, nillable = true) - protected String port2; - @XmlElement(required = true, nillable = true) - protected String flag2; - @XmlElement(required = true, nillable = true) - protected String ip2; - @XmlElement(required = true, nillable = true) - protected String mask2; - @XmlElement(required = true, nillable = true) - protected String enable2; - @XmlElement(required = true, nillable = true) - protected String custom2; - @XmlElement(required = true, nillable = true) - protected String keytype3; - @XmlElement(required = true, nillable = true) - protected String keyoffset3; - @XmlElement(required = true, nillable = true) - protected String keylength3; - @XmlElement(required = true, nillable = true) - protected String port3; - @XmlElement(required = true, nillable = true) - protected String flag3; - @XmlElement(required = true, nillable = true) - protected String ip3; - @XmlElement(required = true, nillable = true) - protected String mask3; - @XmlElement(required = true, nillable = true) - protected String enable3; - @XmlElement(required = true, nillable = true) - protected String custom3; - @XmlElement(required = true, nillable = true) - protected String threshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡkeytype1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype1() { - return keytype1; - } - - /** - * keytype1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype1(String value) { - this.keytype1 = value; - } - - /** - * ȡkeyoffset1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset1() { - return keyoffset1; - } - - /** - * keyoffset1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset1(String value) { - this.keyoffset1 = value; - } - - /** - * ȡkeylength1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength1() { - return keylength1; - } - - /** - * keylength1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength1(String value) { - this.keylength1 = value; - } - - /** - * ȡport1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort1() { - return port1; - } - - /** - * port1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort1(String value) { - this.port1 = value; - } - - /** - * ȡflag1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getFlag1() { - return flag1; - } - - /** - * flag1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFlag1(String value) { - this.flag1 = value; - } - - /** - * ȡip1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp1() { - return ip1; - } - - /** - * ip1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp1(String value) { - this.ip1 = value; - } - - /** - * ȡmask1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask1() { - return mask1; - } - - /** - * mask1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask1(String value) { - this.mask1 = value; - } - - /** - * ȡenable1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable1() { - return enable1; - } - - /** - * enable1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable1(String value) { - this.enable1 = value; - } - - /** - * ȡcustom1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom1() { - return custom1; - } - - /** - * custom1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom1(String value) { - this.custom1 = value; - } - - /** - * ȡkeytype2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype2() { - return keytype2; - } - - /** - * keytype2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype2(String value) { - this.keytype2 = value; - } - - /** - * ȡkeyoffset2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset2() { - return keyoffset2; - } - - /** - * keyoffset2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset2(String value) { - this.keyoffset2 = value; - } - - /** - * ȡkeylength2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength2() { - return keylength2; - } - - /** - * keylength2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength2(String value) { - this.keylength2 = value; - } - - /** - * ȡport2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort2() { - return port2; - } - - /** - * port2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort2(String value) { - this.port2 = value; - } - - /** - * ȡflag2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getFlag2() { - return flag2; - } - - /** - * flag2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFlag2(String value) { - this.flag2 = value; - } - - /** - * ȡip2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp2() { - return ip2; - } - - /** - * ip2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp2(String value) { - this.ip2 = value; - } - - /** - * ȡmask2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask2() { - return mask2; - } - - /** - * mask2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask2(String value) { - this.mask2 = value; - } - - /** - * ȡenable2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable2() { - return enable2; - } - - /** - * enable2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable2(String value) { - this.enable2 = value; - } - - /** - * ȡcustom2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom2() { - return custom2; - } - - /** - * custom2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom2(String value) { - this.custom2 = value; - } - - /** - * ȡkeytype3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype3() { - return keytype3; - } - - /** - * keytype3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype3(String value) { - this.keytype3 = value; - } - - /** - * ȡkeyoffset3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset3() { - return keyoffset3; - } - - /** - * keyoffset3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset3(String value) { - this.keyoffset3 = value; - } - - /** - * ȡkeylength3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength3() { - return keylength3; - } - - /** - * keylength3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength3(String value) { - this.keylength3 = value; - } - - /** - * ȡport3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort3() { - return port3; - } - - /** - * port3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort3(String value) { - this.port3 = value; - } - - /** - * ȡflag3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getFlag3() { - return flag3; - } - - /** - * flag3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFlag3(String value) { - this.flag3 = value; - } - - /** - * ȡip3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp3() { - return ip3; - } - - /** - * ip3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp3(String value) { - this.ip3 = value; - } - - /** - * ȡmask3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask3() { - return mask3; - } - - /** - * mask3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask3(String value) { - this.mask3 = value; - } - - /** - * ȡenable3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable3() { - return enable3; - } - - /** - * enable3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable3(String value) { - this.enable3 = value; - } - - /** - * ȡcustom3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom3() { - return custom3; - } - - /** - * custom3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom3(String value) { - this.custom3 = value; - } - - /** - * ȡthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * thresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintTcpForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintTcpForUMCResponse.java deleted file mode 100644 index b1ca9da2..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintTcpForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modFingerprintTcpForUMCResponse") -public class ModFingerprintTcpForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintUdpForUMC.java b/src/main/java/com/dptech/umc/ModFingerprintUdpForUMC.java deleted file mode 100644 index f2d7c2d3..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintUdpForUMC.java +++ /dev/null @@ -1,820 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="port1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="port2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keytype3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keyoffset3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="keylength3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="port3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ip3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mask3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enable3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="custom3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "name", - "keytype1", - "keyoffset1", - "keylength1", - "port1", - "ip1", - "mask1", - "enable1", - "custom1", - "keytype2", - "keyoffset2", - "keylength2", - "port2", - "ip2", - "mask2", - "enable2", - "custom2", - "keytype3", - "keyoffset3", - "keylength3", - "port3", - "ip3", - "mask3", - "enable3", - "custom3", - "threshold", - "action" -}) -@XmlRootElement(name = "modFingerprintUdpForUMC") -public class ModFingerprintUdpForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String name; - @XmlElement(required = true, nillable = true) - protected String keytype1; - @XmlElement(required = true, nillable = true) - protected String keyoffset1; - @XmlElement(required = true, nillable = true) - protected String keylength1; - @XmlElement(required = true, nillable = true) - protected String port1; - @XmlElement(required = true, nillable = true) - protected String ip1; - @XmlElement(required = true, nillable = true) - protected String mask1; - @XmlElement(required = true, nillable = true) - protected String enable1; - @XmlElement(required = true, nillable = true) - protected String custom1; - @XmlElement(required = true, nillable = true) - protected String keytype2; - @XmlElement(required = true, nillable = true) - protected String keyoffset2; - @XmlElement(required = true, nillable = true) - protected String keylength2; - @XmlElement(required = true, nillable = true) - protected String port2; - @XmlElement(required = true, nillable = true) - protected String ip2; - @XmlElement(required = true, nillable = true) - protected String mask2; - @XmlElement(required = true, nillable = true) - protected String enable2; - @XmlElement(required = true, nillable = true) - protected String custom2; - @XmlElement(required = true, nillable = true) - protected String keytype3; - @XmlElement(required = true, nillable = true) - protected String keyoffset3; - @XmlElement(required = true, nillable = true) - protected String keylength3; - @XmlElement(required = true, nillable = true) - protected String port3; - @XmlElement(required = true, nillable = true) - protected String ip3; - @XmlElement(required = true, nillable = true) - protected String mask3; - @XmlElement(required = true, nillable = true) - protected String enable3; - @XmlElement(required = true, nillable = true) - protected String custom3; - @XmlElement(required = true, nillable = true) - protected String threshold; - @XmlElement(required = true, nillable = true) - protected String action; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡnameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * nameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * ȡkeytype1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype1() { - return keytype1; - } - - /** - * keytype1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype1(String value) { - this.keytype1 = value; - } - - /** - * ȡkeyoffset1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset1() { - return keyoffset1; - } - - /** - * keyoffset1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset1(String value) { - this.keyoffset1 = value; - } - - /** - * ȡkeylength1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength1() { - return keylength1; - } - - /** - * keylength1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength1(String value) { - this.keylength1 = value; - } - - /** - * ȡport1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort1() { - return port1; - } - - /** - * port1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort1(String value) { - this.port1 = value; - } - - /** - * ȡip1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp1() { - return ip1; - } - - /** - * ip1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp1(String value) { - this.ip1 = value; - } - - /** - * ȡmask1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask1() { - return mask1; - } - - /** - * mask1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask1(String value) { - this.mask1 = value; - } - - /** - * ȡenable1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable1() { - return enable1; - } - - /** - * enable1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable1(String value) { - this.enable1 = value; - } - - /** - * ȡcustom1Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom1() { - return custom1; - } - - /** - * custom1Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom1(String value) { - this.custom1 = value; - } - - /** - * ȡkeytype2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype2() { - return keytype2; - } - - /** - * keytype2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype2(String value) { - this.keytype2 = value; - } - - /** - * ȡkeyoffset2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset2() { - return keyoffset2; - } - - /** - * keyoffset2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset2(String value) { - this.keyoffset2 = value; - } - - /** - * ȡkeylength2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength2() { - return keylength2; - } - - /** - * keylength2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength2(String value) { - this.keylength2 = value; - } - - /** - * ȡport2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort2() { - return port2; - } - - /** - * port2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort2(String value) { - this.port2 = value; - } - - /** - * ȡip2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp2() { - return ip2; - } - - /** - * ip2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp2(String value) { - this.ip2 = value; - } - - /** - * ȡmask2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask2() { - return mask2; - } - - /** - * mask2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask2(String value) { - this.mask2 = value; - } - - /** - * ȡenable2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable2() { - return enable2; - } - - /** - * enable2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable2(String value) { - this.enable2 = value; - } - - /** - * ȡcustom2Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom2() { - return custom2; - } - - /** - * custom2Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom2(String value) { - this.custom2 = value; - } - - /** - * ȡkeytype3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeytype3() { - return keytype3; - } - - /** - * keytype3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeytype3(String value) { - this.keytype3 = value; - } - - /** - * ȡkeyoffset3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyoffset3() { - return keyoffset3; - } - - /** - * keyoffset3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyoffset3(String value) { - this.keyoffset3 = value; - } - - /** - * ȡkeylength3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeylength3() { - return keylength3; - } - - /** - * keylength3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeylength3(String value) { - this.keylength3 = value; - } - - /** - * ȡport3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort3() { - return port3; - } - - /** - * port3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort3(String value) { - this.port3 = value; - } - - /** - * ȡip3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp3() { - return ip3; - } - - /** - * ip3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp3(String value) { - this.ip3 = value; - } - - /** - * ȡmask3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMask3() { - return mask3; - } - - /** - * mask3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMask3(String value) { - this.mask3 = value; - } - - /** - * ȡenable3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable3() { - return enable3; - } - - /** - * enable3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable3(String value) { - this.enable3 = value; - } - - /** - * ȡcustom3Եֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustom3() { - return custom3; - } - - /** - * custom3Եֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustom3(String value) { - this.custom3 = value; - } - - /** - * ȡthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * thresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - - /** - * ȡactionԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * actionԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModFingerprintUdpForUMCResponse.java b/src/main/java/com/dptech/umc/ModFingerprintUdpForUMCResponse.java deleted file mode 100644 index 5198b2f5..00000000 --- a/src/main/java/com/dptech/umc/ModFingerprintUdpForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modFingerprintUdpForUMCResponse") -public class ModFingerprintUdpForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMC.java b/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMC.java deleted file mode 100644 index 102c25b5..00000000 --- a/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMC.java +++ /dev/null @@ -1,130 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="detectionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "detectionName", - "ipSegment", - "ipType", - "cleaningType" -}) -@XmlRootElement(name = "modifyDetectionObjectForUMC") -public class ModifyDetectionObjectForUMC { - - @XmlElement(required = true, nillable = true) - protected String detectionName; - @XmlElement(required = true, nillable = true) - protected String ipSegment; - protected int ipType; - protected int cleaningType; - - /** - * ȡdetectionNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetectionName() { - return detectionName; - } - - /** - * detectionNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetectionName(String value) { - this.detectionName = value; - } - - /** - * ȡipSegmentԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIpSegment() { - return ipSegment; - } - - /** - * ipSegmentԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIpSegment(String value) { - this.ipSegment = value; - } - - /** - * ȡipTypeԵֵ - * - */ - public int getIpType() { - return ipType; - } - - /** - * ipTypeԵֵ - * - */ - public void setIpType(int value) { - this.ipType = value; - } - - /** - * ȡcleaningTypeԵֵ - * - */ - public int getCleaningType() { - return cleaningType; - } - - /** - * cleaningTypeԵֵ - * - */ - public void setCleaningType(int value) { - this.cleaningType = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMCResponse.java b/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMCResponse.java deleted file mode 100644 index 52cca423..00000000 --- a/src/main/java/com/dptech/umc/ModifyDetectionObjectForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modifyDetectionObjectForUMCResponse") -public class ModifyDetectionObjectForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMC.java b/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMC.java deleted file mode 100644 index 403828a1..00000000 --- a/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMC.java +++ /dev/null @@ -1,130 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="protectionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ipSegment" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ipType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cleaningType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "protectionName", - "ipSegment", - "ipType", - "cleaningType" -}) -@XmlRootElement(name = "modifyProtectionObjectForUMC") -public class ModifyProtectionObjectForUMC { - - @XmlElement(required = true, nillable = true) - protected String protectionName; - @XmlElement(required = true, nillable = true) - protected String ipSegment; - protected int ipType; - protected int cleaningType; - - /** - * ȡprotectionNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtectionName() { - return protectionName; - } - - /** - * protectionNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtectionName(String value) { - this.protectionName = value; - } - - /** - * ȡipSegmentԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIpSegment() { - return ipSegment; - } - - /** - * ipSegmentԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIpSegment(String value) { - this.ipSegment = value; - } - - /** - * ȡipTypeԵֵ - * - */ - public int getIpType() { - return ipType; - } - - /** - * ipTypeԵֵ - * - */ - public void setIpType(int value) { - this.ipType = value; - } - - /** - * ȡcleaningTypeԵֵ - * - */ - public int getCleaningType() { - return cleaningType; - } - - /** - * cleaningTypeԵֵ - * - */ - public void setCleaningType(int value) { - this.cleaningType = value; - } - -} diff --git a/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMCResponse.java b/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMCResponse.java deleted file mode 100644 index 87af0040..00000000 --- a/src/main/java/com/dptech/umc/ModifyProtectionObjectForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "modifyProtectionObjectForUMCResponse") -public class ModifyProtectionObjectForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/NtcRequestResultInfo.java b/src/main/java/com/dptech/umc/NtcRequestResultInfo.java deleted file mode 100644 index 38dfe39b..00000000 --- a/src/main/java/com/dptech/umc/NtcRequestResultInfo.java +++ /dev/null @@ -1,90 +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; - - -/** - *

NtcRequestResultInfo complex type Java ࡣ - * - *

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

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

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

ProtectionObjectDataForService complex type Java ࡣ - * - *

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

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

ProtectionStrategyTemplateForService complex type Java ࡣ - * - *

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

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

ProtectionTargetWithStrategyForService complex type Java ࡣ - * - *

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

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

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "payloadcontentenable", - "payloadThreshold", - "payloadOffsetMin", - "payloadOffsetMax" -}) -@XmlRootElement(name = "setDdosGlobalAckPayloadForUMC") -public class SetDdosGlobalAckPayloadForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String payloadcontentenable; - @XmlElement(required = true, nillable = true) - protected String payloadThreshold; - @XmlElement(required = true, nillable = true) - protected String payloadOffsetMin; - @XmlElement(required = true, nillable = true) - protected String payloadOffsetMax; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡpayloadcontentenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadcontentenable() { - return payloadcontentenable; - } - - /** - * payloadcontentenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadcontentenable(String value) { - this.payloadcontentenable = value; - } - - /** - * ȡpayloadThresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadThreshold() { - return payloadThreshold; - } - - /** - * payloadThresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadThreshold(String value) { - this.payloadThreshold = value; - } - - /** - * ȡpayloadOffsetMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadOffsetMin() { - return payloadOffsetMin; - } - - /** - * payloadOffsetMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadOffsetMin(String value) { - this.payloadOffsetMin = value; - } - - /** - * ȡpayloadOffsetMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadOffsetMax() { - return payloadOffsetMax; - } - - /** - * payloadOffsetMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadOffsetMax(String value) { - this.payloadOffsetMax = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMCResponse.java deleted file mode 100644 index 686cce97..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalAckPayloadForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalAckPayloadForUMCResponse") -public class SetDdosGlobalAckPayloadForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMC.java deleted file mode 100644 index 659a260b..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMC.java +++ /dev/null @@ -1,120 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="icmpenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="icmpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "icmpenable", - "icmpthreshold" -}) -@XmlRootElement(name = "setDdosGlobalIcmpFragForUMC") -public class SetDdosGlobalIcmpFragForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String icmpenable; - @XmlElement(required = true, nillable = true) - protected String icmpthreshold; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡicmpenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIcmpenable() { - return icmpenable; - } - - /** - * icmpenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIcmpenable(String value) { - this.icmpenable = value; - } - - /** - * ȡicmpthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getIcmpthreshold() { - return icmpthreshold; - } - - /** - * icmpthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIcmpthreshold(String value) { - this.icmpthreshold = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMCResponse.java deleted file mode 100644 index f0779d7d..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpFragForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalIcmpFragForUMCResponse") -public class SetDdosGlobalIcmpFragForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMC.java deleted file mode 100644 index ca3e7eb9..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lengthenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="minlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="maxlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "lengthenable", - "minlength", - "maxlength" -}) -@XmlRootElement(name = "setDdosGlobalIcmpLengthForUMC") -public class SetDdosGlobalIcmpLengthForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String lengthenable; - @XmlElement(required = true, nillable = true) - protected String minlength; - @XmlElement(required = true, nillable = true) - protected String maxlength; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡlengthenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getLengthenable() { - return lengthenable; - } - - /** - * lengthenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLengthenable(String value) { - this.lengthenable = value; - } - - /** - * ȡminlengthԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMinlength() { - return minlength; - } - - /** - * minlengthԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMinlength(String value) { - this.minlength = value; - } - - /** - * ȡmaxlengthԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxlength() { - return maxlength; - } - - /** - * maxlengthԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxlength(String value) { - this.maxlength = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMCResponse.java deleted file mode 100644 index 3e2d65d6..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpLengthForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalIcmpLengthForUMCResponse") -public class SetDdosGlobalIcmpLengthForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMC.java deleted file mode 100644 index c30dac6f..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMC.java +++ /dev/null @@ -1,176 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "payloadcontentenable", - "payloadThreshold", - "payloadOffsetMin", - "payloadOffsetMax" -}) -@XmlRootElement(name = "setDdosGlobalIcmpPayloadForUMC") -public class SetDdosGlobalIcmpPayloadForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String payloadcontentenable; - @XmlElement(required = true, nillable = true) - protected String payloadThreshold; - @XmlElement(required = true, nillable = true) - protected String payloadOffsetMin; - @XmlElement(required = true, nillable = true) - protected String payloadOffsetMax; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡpayloadcontentenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadcontentenable() { - return payloadcontentenable; - } - - /** - * payloadcontentenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadcontentenable(String value) { - this.payloadcontentenable = value; - } - - /** - * ȡpayloadThresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadThreshold() { - return payloadThreshold; - } - - /** - * payloadThresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadThreshold(String value) { - this.payloadThreshold = value; - } - - /** - * ȡpayloadOffsetMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadOffsetMin() { - return payloadOffsetMin; - } - - /** - * payloadOffsetMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadOffsetMin(String value) { - this.payloadOffsetMin = value; - } - - /** - * ȡpayloadOffsetMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadOffsetMax() { - return payloadOffsetMax; - } - - /** - * payloadOffsetMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadOffsetMax(String value) { - this.payloadOffsetMax = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMCResponse.java deleted file mode 100644 index 55aaefa1..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalIcmpPayloadForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalIcmpPayloadForUMCResponse") -public class SetDdosGlobalIcmpPayloadForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMC.java deleted file mode 100644 index fe4ebef2..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMC.java +++ /dev/null @@ -1,120 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="otherenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="otherthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "otherenable", - "otherthreshold" -}) -@XmlRootElement(name = "setDdosGlobalOtherFragForUMC") -public class SetDdosGlobalOtherFragForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String otherenable; - @XmlElement(required = true, nillable = true) - protected String otherthreshold; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡotherenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getOtherenable() { - return otherenable; - } - - /** - * otherenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOtherenable(String value) { - this.otherenable = value; - } - - /** - * ȡotherthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getOtherthreshold() { - return otherthreshold; - } - - /** - * otherthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOtherthreshold(String value) { - this.otherthreshold = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMCResponse.java deleted file mode 100644 index 5b84a4a3..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalOtherFragForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalOtherFragForUMCResponse") -public class SetDdosGlobalOtherFragForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMC.java deleted file mode 100644 index 66a261bb..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="enable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="threshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "enable", - "objName", - "threshold", - "type" -}) -@XmlRootElement(name = "setDdosGlobalSynFloodForUMC") -public class SetDdosGlobalSynFloodForUMC { - - @XmlElement(required = true, nillable = true) - protected String enable; - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String threshold; - @XmlElement(required = true, nillable = true) - protected String type; - - /** - * ȡenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnable() { - return enable; - } - - /** - * enableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnable(String value) { - this.enable = value; - } - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * thresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - - /** - * ȡtypeԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * typeԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMCResponse.java deleted file mode 100644 index 113635f3..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalSynFloodForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalSynFloodForUMCResponse") -public class SetDdosGlobalSynFloodForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMC.java deleted file mode 100644 index 96a857ab..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMC.java +++ /dev/null @@ -1,92 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tcpFlagenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "tcpFlagenable" -}) -@XmlRootElement(name = "setDdosGlobalTcpFlagForUMC") -public class SetDdosGlobalTcpFlagForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String tcpFlagenable; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡtcpFlagenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getTcpFlagenable() { - return tcpFlagenable; - } - - /** - * tcpFlagenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTcpFlagenable(String value) { - this.tcpFlagenable = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMCResponse.java deleted file mode 100644 index 3ec2d894..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFlagForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalTcpFlagForUMCResponse") -public class SetDdosGlobalTcpFlagForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMC.java deleted file mode 100644 index 6184b004..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMC.java +++ /dev/null @@ -1,120 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tcpenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tcpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "tcpenable", - "tcpthreshold" -}) -@XmlRootElement(name = "setDdosGlobalTcpFragForUMC") -public class SetDdosGlobalTcpFragForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String tcpenable; - @XmlElement(required = true, nillable = true) - protected String tcpthreshold; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡtcpenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getTcpenable() { - return tcpenable; - } - - /** - * tcpenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTcpenable(String value) { - this.tcpenable = value; - } - - /** - * ȡtcpthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getTcpthreshold() { - return tcpthreshold; - } - - /** - * tcpthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTcpthreshold(String value) { - this.tcpthreshold = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMCResponse.java deleted file mode 100644 index fd663eca..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpFragForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalTcpFragForUMCResponse") -public class SetDdosGlobalTcpFragForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMC.java deleted file mode 100644 index 86815cb4..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMC.java +++ /dev/null @@ -1,400 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="synenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="synMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="synMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="synackenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="synackMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="synackMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="finenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="finMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="finMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="rstenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="rstMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="rstMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "synenable", - "objName", - "synMin", - "synMax", - "synackenable", - "synackMin", - "synackMax", - "finenable", - "finMin", - "finMax", - "rstenable", - "rstMin", - "rstMax" -}) -@XmlRootElement(name = "setDdosGlobalTcpLengthForUMC") -public class SetDdosGlobalTcpLengthForUMC { - - @XmlElement(required = true, nillable = true) - protected String synenable; - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String synMin; - @XmlElement(required = true, nillable = true) - protected String synMax; - @XmlElement(required = true, nillable = true) - protected String synackenable; - @XmlElement(required = true, nillable = true) - protected String synackMin; - @XmlElement(required = true, nillable = true) - protected String synackMax; - @XmlElement(required = true, nillable = true) - protected String finenable; - @XmlElement(required = true, nillable = true) - protected String finMin; - @XmlElement(required = true, nillable = true) - protected String finMax; - @XmlElement(required = true, nillable = true) - protected String rstenable; - @XmlElement(required = true, nillable = true) - protected String rstMin; - @XmlElement(required = true, nillable = true) - protected String rstMax; - - /** - * ȡsynenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSynenable() { - return synenable; - } - - /** - * synenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSynenable(String value) { - this.synenable = value; - } - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡsynMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSynMin() { - return synMin; - } - - /** - * synMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSynMin(String value) { - this.synMin = value; - } - - /** - * ȡsynMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSynMax() { - return synMax; - } - - /** - * synMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSynMax(String value) { - this.synMax = value; - } - - /** - * ȡsynackenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSynackenable() { - return synackenable; - } - - /** - * synackenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSynackenable(String value) { - this.synackenable = value; - } - - /** - * ȡsynackMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSynackMin() { - return synackMin; - } - - /** - * synackMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSynackMin(String value) { - this.synackMin = value; - } - - /** - * ȡsynackMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getSynackMax() { - return synackMax; - } - - /** - * synackMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSynackMax(String value) { - this.synackMax = value; - } - - /** - * ȡfinenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinenable() { - return finenable; - } - - /** - * finenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinenable(String value) { - this.finenable = value; - } - - /** - * ȡfinMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinMin() { - return finMin; - } - - /** - * finMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinMin(String value) { - this.finMin = value; - } - - /** - * ȡfinMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinMax() { - return finMax; - } - - /** - * finMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinMax(String value) { - this.finMax = value; - } - - /** - * ȡrstenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getRstenable() { - return rstenable; - } - - /** - * rstenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRstenable(String value) { - this.rstenable = value; - } - - /** - * ȡrstMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getRstMin() { - return rstMin; - } - - /** - * rstMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRstMin(String value) { - this.rstMin = value; - } - - /** - * ȡrstMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getRstMax() { - return rstMax; - } - - /** - * rstMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRstMax(String value) { - this.rstMax = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMCResponse.java deleted file mode 100644 index 98741d28..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpLengthForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalTcpLengthForUMCResponse") -public class SetDdosGlobalTcpLengthForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMC.java deleted file mode 100644 index 7ffb3971..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMC.java +++ /dev/null @@ -1,120 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="statenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="chosen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "statenable", - "chosen" -}) -@XmlRootElement(name = "setDdosGlobalTcpStateForUMC") -public class SetDdosGlobalTcpStateForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String statenable; - @XmlElement(required = true, nillable = true) - protected String chosen; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡstatenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatenable() { - return statenable; - } - - /** - * statenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatenable(String value) { - this.statenable = value; - } - - /** - * ȡchosenԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getChosen() { - return chosen; - } - - /** - * chosenԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChosen(String value) { - this.chosen = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMCResponse.java deleted file mode 100644 index c760dc44..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalTcpStateForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalTcpStateForUMCResponse") -public class SetDdosGlobalTcpStateForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMC.java deleted file mode 100644 index 06639937..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMC.java +++ /dev/null @@ -1,120 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="udpenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="udpthreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "udpenable", - "udpthreshold" -}) -@XmlRootElement(name = "setDdosGlobalUdpFragForUMC") -public class SetDdosGlobalUdpFragForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String udpenable; - @XmlElement(required = true, nillable = true) - protected String udpthreshold; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡudpenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getUdpenable() { - return udpenable; - } - - /** - * udpenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUdpenable(String value) { - this.udpenable = value; - } - - /** - * ȡudpthresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getUdpthreshold() { - return udpthreshold; - } - - /** - * udpthresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUdpthreshold(String value) { - this.udpthreshold = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMCResponse.java deleted file mode 100644 index 0fe98287..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalUdpFragForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalUdpFragForUMCResponse") -public class SetDdosGlobalUdpFragForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMC.java deleted file mode 100644 index a4924256..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMC.java +++ /dev/null @@ -1,148 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lengthenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="minlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="maxlength" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "lengthenable", - "minlength", - "maxlength" -}) -@XmlRootElement(name = "setDdosGlobalUdpLengthForUMC") -public class SetDdosGlobalUdpLengthForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String lengthenable; - @XmlElement(required = true, nillable = true) - protected String minlength; - @XmlElement(required = true, nillable = true) - protected String maxlength; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡlengthenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getLengthenable() { - return lengthenable; - } - - /** - * lengthenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLengthenable(String value) { - this.lengthenable = value; - } - - /** - * ȡminlengthԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMinlength() { - return minlength; - } - - /** - * minlengthԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMinlength(String value) { - this.minlength = value; - } - - /** - * ȡmaxlengthԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxlength() { - return maxlength; - } - - /** - * maxlengthԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxlength(String value) { - this.maxlength = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMCResponse.java deleted file mode 100644 index e337ccf5..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalUdpLengthForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalUdpLengthForUMCResponse") -public class SetDdosGlobalUdpLengthForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMC.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMC.java deleted file mode 100644 index 054388eb..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMC.java +++ /dev/null @@ -1,204 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="objName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloademptyenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadcontentenable" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadThreshold" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadOffsetMin" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="payloadOffsetMax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "objName", - "payloademptyenable", - "payloadcontentenable", - "payloadThreshold", - "payloadOffsetMin", - "payloadOffsetMax" -}) -@XmlRootElement(name = "setDdosGlobalUdpPayloadForUMC") -public class SetDdosGlobalUdpPayloadForUMC { - - @XmlElement(required = true, nillable = true) - protected String objName; - @XmlElement(required = true, nillable = true) - protected String payloademptyenable; - @XmlElement(required = true, nillable = true) - protected String payloadcontentenable; - @XmlElement(required = true, nillable = true) - protected String payloadThreshold; - @XmlElement(required = true, nillable = true) - protected String payloadOffsetMin; - @XmlElement(required = true, nillable = true) - protected String payloadOffsetMax; - - /** - * ȡobjNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjName() { - return objName; - } - - /** - * objNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjName(String value) { - this.objName = value; - } - - /** - * ȡpayloademptyenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloademptyenable() { - return payloademptyenable; - } - - /** - * payloademptyenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloademptyenable(String value) { - this.payloademptyenable = value; - } - - /** - * ȡpayloadcontentenableԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadcontentenable() { - return payloadcontentenable; - } - - /** - * payloadcontentenableԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadcontentenable(String value) { - this.payloadcontentenable = value; - } - - /** - * ȡpayloadThresholdԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadThreshold() { - return payloadThreshold; - } - - /** - * payloadThresholdԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadThreshold(String value) { - this.payloadThreshold = value; - } - - /** - * ȡpayloadOffsetMinԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadOffsetMin() { - return payloadOffsetMin; - } - - /** - * payloadOffsetMinԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadOffsetMin(String value) { - this.payloadOffsetMin = value; - } - - /** - * ȡpayloadOffsetMaxԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPayloadOffsetMax() { - return payloadOffsetMax; - } - - /** - * payloadOffsetMaxԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPayloadOffsetMax(String value) { - this.payloadOffsetMax = value; - } - -} diff --git a/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMCResponse.java b/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMCResponse.java deleted file mode 100644 index e956bd82..00000000 --- a/src/main/java/com/dptech/umc/SetDdosGlobalUdpPayloadForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "setDdosGlobalUdpPayloadForUMCResponse") -public class SetDdosGlobalUdpPayloadForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartAbnormalTaskForUMC.java b/src/main/java/com/dptech/umc/StartAbnormalTaskForUMC.java deleted file mode 100644 index ec76bd29..00000000 --- a/src/main/java/com/dptech/umc/StartAbnormalTaskForUMC.java +++ /dev/null @@ -1,102 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "abnormalIp", - "attackType", - "direction" -}) -@XmlRootElement(name = "startAbnormalTaskForUMC") -public class StartAbnormalTaskForUMC { - - @XmlElement(required = true, nillable = true) - protected String abnormalIp; - protected int attackType; - protected int direction; - - /** - * ȡabnormalIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAbnormalIp() { - return abnormalIp; - } - - /** - * abnormalIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAbnormalIp(String value) { - this.abnormalIp = value; - } - - /** - * ȡattackTypeԵֵ - * - */ - public int getAttackType() { - return attackType; - } - - /** - * attackTypeԵֵ - * - */ - public void setAttackType(int value) { - this.attackType = value; - } - - /** - * ȡdirectionԵֵ - * - */ - public int getDirection() { - return direction; - } - - /** - * directionԵֵ - * - */ - public void setDirection(int value) { - this.direction = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartAbnormalTaskForUMCResponse.java b/src/main/java/com/dptech/umc/StartAbnormalTaskForUMCResponse.java deleted file mode 100644 index dce849b1..00000000 --- a/src/main/java/com/dptech/umc/StartAbnormalTaskForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "startAbnormalTaskForUMCResponse") -public class StartAbnormalTaskForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMC.java b/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMC.java deleted file mode 100644 index 0943b02f..00000000 --- a/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMC.java +++ /dev/null @@ -1,130 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cleanDeviceIps" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "abnormalIp", - "attackType", - "direction", - "cleanDeviceIps" -}) -@XmlRootElement(name = "startAbnormalTaskWithSpecificDeviceForUMC") -public class StartAbnormalTaskWithSpecificDeviceForUMC { - - @XmlElement(required = true, nillable = true) - protected String abnormalIp; - protected int attackType; - protected int direction; - @XmlElement(required = true, nillable = true) - protected String cleanDeviceIps; - - /** - * ȡabnormalIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAbnormalIp() { - return abnormalIp; - } - - /** - * abnormalIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAbnormalIp(String value) { - this.abnormalIp = value; - } - - /** - * ȡattackTypeԵֵ - * - */ - public int getAttackType() { - return attackType; - } - - /** - * attackTypeԵֵ - * - */ - public void setAttackType(int value) { - this.attackType = value; - } - - /** - * ȡdirectionԵֵ - * - */ - public int getDirection() { - return direction; - } - - /** - * directionԵֵ - * - */ - public void setDirection(int value) { - this.direction = value; - } - - /** - * ȡcleanDeviceIpsԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCleanDeviceIps() { - return cleanDeviceIps; - } - - /** - * cleanDeviceIpsԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCleanDeviceIps(String value) { - this.cleanDeviceIps = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMCResponse.java b/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMCResponse.java deleted file mode 100644 index 80f1a01e..00000000 --- a/src/main/java/com/dptech/umc/StartAbnormalTaskWithSpecificDeviceForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "startAbnormalTaskWithSpecificDeviceForUMCResponse") -public class StartAbnormalTaskWithSpecificDeviceForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMC.java b/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMC.java deleted file mode 100644 index b0d0bbf3..00000000 --- a/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "policyName" -}) -@XmlRootElement(name = "startBlackHoleStrategyForUMC") -public class StartBlackHoleStrategyForUMC { - - @XmlElement(required = true, nillable = true) - protected String policyName; - - /** - * ȡpolicyNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyName() { - return policyName; - } - - /** - * policyNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyName(String value) { - this.policyName = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMCResponse.java deleted file mode 100644 index 4967dae2..00000000 --- a/src/main/java/com/dptech/umc/StartBlackHoleStrategyForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "startBlackHoleStrategyForUMCResponse") -public class StartBlackHoleStrategyForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMC.java b/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMC.java deleted file mode 100644 index 9b4c71d9..00000000 --- a/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,92 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "policyName", - "cleaningDevices" -}) -@XmlRootElement(name = "startBypassManualTractionStrategyForUMC") -public class StartBypassManualTractionStrategyForUMC { - - @XmlElement(required = true, nillable = true) - protected String policyName; - @XmlElement(required = true, nillable = true) - protected String cleaningDevices; - - /** - * ȡpolicyNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyName() { - return policyName; - } - - /** - * policyNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyName(String value) { - this.policyName = value; - } - - /** - * ȡcleaningDevicesԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCleaningDevices() { - return cleaningDevices; - } - - /** - * cleaningDevicesԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCleaningDevices(String value) { - this.cleaningDevices = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMCResponse.java deleted file mode 100644 index c4405fe2..00000000 --- a/src/main/java/com/dptech/umc/StartBypassManualTractionStrategyForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "startBypassManualTractionStrategyForUMCResponse") -public class StartBypassManualTractionStrategyForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopAbnormalTaskForUMC.java b/src/main/java/com/dptech/umc/StopAbnormalTaskForUMC.java deleted file mode 100644 index c6c786a2..00000000 --- a/src/main/java/com/dptech/umc/StopAbnormalTaskForUMC.java +++ /dev/null @@ -1,102 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "abnormalIp", - "attackType", - "direction" -}) -@XmlRootElement(name = "stopAbnormalTaskForUMC") -public class StopAbnormalTaskForUMC { - - @XmlElement(required = true, nillable = true) - protected String abnormalIp; - protected int attackType; - protected int direction; - - /** - * ȡabnormalIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAbnormalIp() { - return abnormalIp; - } - - /** - * abnormalIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAbnormalIp(String value) { - this.abnormalIp = value; - } - - /** - * ȡattackTypeԵֵ - * - */ - public int getAttackType() { - return attackType; - } - - /** - * attackTypeԵֵ - * - */ - public void setAttackType(int value) { - this.attackType = value; - } - - /** - * ȡdirectionԵֵ - * - */ - public int getDirection() { - return direction; - } - - /** - * directionԵֵ - * - */ - public void setDirection(int value) { - this.direction = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopAbnormalTaskForUMCResponse.java b/src/main/java/com/dptech/umc/StopAbnormalTaskForUMCResponse.java deleted file mode 100644 index 5122b24c..00000000 --- a/src/main/java/com/dptech/umc/StopAbnormalTaskForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "stopAbnormalTaskForUMCResponse") -public class StopAbnormalTaskForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMC.java b/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMC.java deleted file mode 100644 index 4fca8bb7..00000000 --- a/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMC.java +++ /dev/null @@ -1,130 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="abnormalIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="attackType" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cleanDeviceIps" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "abnormalIp", - "attackType", - "direction", - "cleanDeviceIps" -}) -@XmlRootElement(name = "stopAbnormalTaskWithSpecificDeviceForUMC") -public class StopAbnormalTaskWithSpecificDeviceForUMC { - - @XmlElement(required = true, nillable = true) - protected String abnormalIp; - protected int attackType; - protected int direction; - @XmlElement(required = true, nillable = true) - protected String cleanDeviceIps; - - /** - * ȡabnormalIpԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getAbnormalIp() { - return abnormalIp; - } - - /** - * abnormalIpԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAbnormalIp(String value) { - this.abnormalIp = value; - } - - /** - * ȡattackTypeԵֵ - * - */ - public int getAttackType() { - return attackType; - } - - /** - * attackTypeԵֵ - * - */ - public void setAttackType(int value) { - this.attackType = value; - } - - /** - * ȡdirectionԵֵ - * - */ - public int getDirection() { - return direction; - } - - /** - * directionԵֵ - * - */ - public void setDirection(int value) { - this.direction = value; - } - - /** - * ȡcleanDeviceIpsԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCleanDeviceIps() { - return cleanDeviceIps; - } - - /** - * cleanDeviceIpsԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCleanDeviceIps(String value) { - this.cleanDeviceIps = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMCResponse.java b/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMCResponse.java deleted file mode 100644 index 15978229..00000000 --- a/src/main/java/com/dptech/umc/StopAbnormalTaskWithSpecificDeviceForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "stopAbnormalTaskWithSpecificDeviceForUMCResponse") -public class StopAbnormalTaskWithSpecificDeviceForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMC.java b/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMC.java deleted file mode 100644 index 89f01579..00000000 --- a/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMC.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "policyName" -}) -@XmlRootElement(name = "stopBlackHoleStrategyForUMC") -public class StopBlackHoleStrategyForUMC { - - @XmlElement(required = true, nillable = true) - protected String policyName; - - /** - * ȡpolicyNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyName() { - return policyName; - } - - /** - * policyNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyName(String value) { - this.policyName = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMCResponse.java deleted file mode 100644 index 46d5278c..00000000 --- a/src/main/java/com/dptech/umc/StopBlackHoleStrategyForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "stopBlackHoleStrategyForUMCResponse") -public class StopBlackHoleStrategyForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMC.java b/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMC.java deleted file mode 100644 index 0659c081..00000000 --- a/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMC.java +++ /dev/null @@ -1,92 +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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="policyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cleaningDevices" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "policyName", - "cleaningDevices" -}) -@XmlRootElement(name = "stopBypassManualTractionStrategyForUMC") -public class StopBypassManualTractionStrategyForUMC { - - @XmlElement(required = true, nillable = true) - protected String policyName; - @XmlElement(required = true, nillable = true) - protected String cleaningDevices; - - /** - * ȡpolicyNameԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyName() { - return policyName; - } - - /** - * policyNameԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyName(String value) { - this.policyName = value; - } - - /** - * ȡcleaningDevicesԵֵ - * - * @return - * possible object is - * {@link String } - * - */ - public String getCleaningDevices() { - return cleaningDevices; - } - - /** - * cleaningDevicesԵֵ - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCleaningDevices(String value) { - this.cleaningDevices = value; - } - -} diff --git a/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMCResponse.java b/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMCResponse.java deleted file mode 100644 index c68f9a6c..00000000 --- a/src/main/java/com/dptech/umc/StopBypassManualTractionStrategyForUMCResponse.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type Java ࡣ - * - *

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

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="out" type="{http://service.ntc.dp.com}NtcRequestResultInfo"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "out" -}) -@XmlRootElement(name = "stopBypassManualTractionStrategyForUMCResponse") -public class StopBypassManualTractionStrategyForUMCResponse { - - @XmlElement(required = true, nillable = true) - protected NtcRequestResultInfo out; - - /** - * ȡoutԵֵ - * - * @return - * possible object is - * {@link NtcRequestResultInfo } - * - */ - public NtcRequestResultInfo getOut() { - return out; - } - - /** - * outԵֵ - * - * @param value - * allowed object is - * {@link NtcRequestResultInfo } - * - */ - public void setOut(NtcRequestResultInfo value) { - this.out = value; - } - -} diff --git a/src/main/java/com/dptech/umc/package-info.java b/src/main/java/com/dptech/umc/package-info.java deleted file mode 100644 index badb40e4..00000000 --- a/src/main/java/com/dptech/umc/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "http://service.ntc.dp.com", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package com.dptech.umc; diff --git a/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java b/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java index 3c019971..4a572a2d 100644 --- a/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java +++ b/src/test/java/com/dispose/dptech/DPTechInterfaceTestCase.java @@ -1,8 +1,8 @@ -package com.cmcc.dptech; +package com.dispose.dptech; -import com.cmcc.common.ConstValue; -import com.cmcc.dispose.DeviceRouter; -import com.cmcc.dispose.DisposeProcess; +import com.dispose.common.ConstValue; +import com.dispose.dispose.DeviceRouter; +import com.dispose.dispose.DisposeEntryManager; import com.dptech.dispose.DetectionObjectDataForService; import com.dptech.dispose.ProtectionObjectDataForService; import org.junit.Assert; @@ -15,7 +15,7 @@ public class DPTechInterfaceTestCase { public void getAllDetectionObjectFromUMC(){ try { - DisposeProcess dp = DeviceRouter.deviceRouterFactory(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode(), "10.88.77.15"); + DisposeEntryManager dp = DeviceRouter.deviceRouterFactory(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode(), "10.88.77.15"); List detDevs = dp.getAllDetectionObject(); @@ -30,7 +30,7 @@ public class DPTechInterfaceTestCase { public void getAllProtectDevices(){ try { - DisposeProcess dp = DeviceRouter.deviceRouterFactory(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode(), "10.88.77.15"); + DisposeEntryManager dp = DeviceRouter.deviceRouterFactory(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode(), "10.88.77.15"); String proDevs = dp.getProtectDevices(); @@ -45,7 +45,7 @@ public class DPTechInterfaceTestCase { public void getAllProtectObjects(){ try { - DisposeProcess dp = DeviceRouter.deviceRouterFactory(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode(), "10.88.77.15"); + DisposeEntryManager dp = DeviceRouter.deviceRouterFactory(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode(), "10.88.77.15"); List proObjs = dp.getAllProtectionObject(); @@ -55,4 +55,13 @@ public class DPTechInterfaceTestCase { Assert.fail(); } } + + @Test + public void getLinkStatus(){ + + DisposeEntryManager dp = DeviceRouter.deviceRouterFactory(ConstValue.DisposeDeviceType.DPTECH_UMC.getCode(), + "10.88.77.15"); + + Assert.assertTrue(dp.getDeviceLinkStatus()); + } }