Merge branch 'master' of git.komect.net:DDOSAQ/phoenix_ddos_handle

This commit is contained in:
HuangXin 2020-04-30 18:00:29 +08:00
commit 8bce94e17a
1 changed files with 4 additions and 3 deletions

View File

@ -22,8 +22,9 @@ public class AbnormalFlowCleaningService extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://service.ntc.dp.com", "AbnormalFlowCleaningService");
public final static QName AbnormalFlowCleaningServiceHttpPort = new QName("http://service.ntc.dp.com",
public final static QName ABNORMAL_FLOW_CLEANING_SERVICE_HTTP_PORT= new QName("http://service.ntc.dp.com",
"AbnormalFlowCleaningServiceHttpPort");
//AbnormalFlowCleaningServiceHttpPort
static {
URL url = null;
@ -70,7 +71,7 @@ public class AbnormalFlowCleaningService extends Service {
*/
@WebEndpoint(name = "AbnormalFlowCleaningServiceHttpPort")
public AbnormalFlowCleaningServicePortType getAbnormalFlowCleaningServiceHttpPort() {
return super.getPort(AbnormalFlowCleaningServiceHttpPort, AbnormalFlowCleaningServicePortType.class);
return super.getPort(ABNORMAL_FLOW_CLEANING_SERVICE_HTTP_PORT, AbnormalFlowCleaningServicePortType.class);
}
/**
@ -80,7 +81,7 @@ public class AbnormalFlowCleaningService extends Service {
*/
@WebEndpoint(name = "AbnormalFlowCleaningServiceHttpPort")
public AbnormalFlowCleaningServicePortType getAbnormalFlowCleaningServiceHttpPort(WebServiceFeature... features) {
return super.getPort(AbnormalFlowCleaningServiceHttpPort, AbnormalFlowCleaningServicePortType.class, features);
return super.getPort(ABNORMAL_FLOW_CLEANING_SERVICE_HTTP_PORT, AbnormalFlowCleaningServicePortType.class, features);
}
}