diff --git a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java index fbc14bec..342bebc2 100644 --- a/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java +++ b/src/main/java/com/dptech/dispose/AbnormalFlowCleaningService.java @@ -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); } }