Merge branch 'master' of git.komect.net:DDOSAQ/phoenix_ddos_handle
This commit is contained in:
commit
8bce94e17a
|
@ -22,8 +22,9 @@ public class AbnormalFlowCleaningService extends Service {
|
||||||
public final static URL WSDL_LOCATION;
|
public final static URL WSDL_LOCATION;
|
||||||
|
|
||||||
public final static QName SERVICE = new QName("http://service.ntc.dp.com", "AbnormalFlowCleaningService");
|
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");
|
||||||
|
//AbnormalFlowCleaningServiceHttpPort
|
||||||
|
|
||||||
static {
|
static {
|
||||||
URL url = null;
|
URL url = null;
|
||||||
|
@ -70,7 +71,7 @@ public class AbnormalFlowCleaningService extends Service {
|
||||||
*/
|
*/
|
||||||
@WebEndpoint(name = "AbnormalFlowCleaningServiceHttpPort")
|
@WebEndpoint(name = "AbnormalFlowCleaningServiceHttpPort")
|
||||||
public AbnormalFlowCleaningServicePortType getAbnormalFlowCleaningServiceHttpPort() {
|
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")
|
@WebEndpoint(name = "AbnormalFlowCleaningServiceHttpPort")
|
||||||
public AbnormalFlowCleaningServicePortType getAbnormalFlowCleaningServiceHttpPort(WebServiceFeature... features) {
|
public AbnormalFlowCleaningServicePortType getAbnormalFlowCleaningServiceHttpPort(WebServiceFeature... features) {
|
||||||
return super.getPort(AbnormalFlowCleaningServiceHttpPort, AbnormalFlowCleaningServicePortType.class, features);
|
return super.getPort(ABNORMAL_FLOW_CLEANING_SERVICE_HTTP_PORT, AbnormalFlowCleaningServicePortType.class, features);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue