Skip to content

Commit 5bf843b

Browse files
Formatting, last pom fixes
1 parent 39e7dd1 commit 5bf843b

23 files changed

+1301
-1198
lines changed
Lines changed: 87 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,100 @@
11
package ecf5;
22

3+
import jakarta.xml.ws.Service;
4+
import jakarta.xml.ws.WebEndpoint;
5+
import jakarta.xml.ws.WebServiceClient;
6+
import jakarta.xml.ws.WebServiceFeature;
37
import java.net.MalformedURLException;
48
import java.net.URI;
59
import java.net.URL;
610
import javax.xml.namespace.QName;
7-
import jakarta.xml.ws.WebEndpoint;
8-
import jakarta.xml.ws.WebServiceClient;
9-
import jakarta.xml.ws.WebServiceFeature;
10-
import jakarta.xml.ws.Service;
1111

1212
/**
13-
* This class was generated by Apache CXF 4.0.8
14-
* 2025-11-05T15:12:41.425-05:00
15-
* Generated source version: 4.0.8
16-
*
13+
* This class was generated by Apache CXF 4.0.8 2025-11-05T15:12:41.425-05:00 Generated source
14+
* version: 4.0.8
1715
*/
18-
@WebServiceClient(name = "CourtPolicyMDEService",
19-
wsdlLocation = "file:../stage/illinois-ECF5-CourtPolicyMDEService.wsdl",
20-
targetNamespace = "https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtPolicyMDE")
16+
@WebServiceClient(
17+
name = "CourtPolicyMDEService",
18+
wsdlLocation = "file:../stage/illinois-ECF5-CourtPolicyMDEService.wsdl",
19+
targetNamespace = "https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtPolicyMDE")
2120
public class CourtPolicyMDEService extends Service {
2221

23-
public static final URL WSDL_LOCATION;
24-
25-
public static final QName SERVICE = new QName("https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtPolicyMDE", "CourtPolicyMDEService");
26-
public static final QName CourtPolicyMDE = new QName("https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtPolicyMDE", "CourtPolicyMDE");
27-
static {
28-
URL url = null;
29-
try {
30-
url = URI.create("file:../stage/illinois-ECF5-CourtPolicyMDEService.wsdl").toURL();
31-
} catch (MalformedURLException e) {
32-
java.util.logging.Logger.getLogger(CourtPolicyMDEService.class.getName())
33-
.log(java.util.logging.Level.INFO,
34-
"Can not initialize the default wsdl from {0}", "file:../stage/illinois-ECF5-CourtPolicyMDEService.wsdl");
35-
}
36-
WSDL_LOCATION = url;
37-
}
38-
39-
public CourtPolicyMDEService(URL wsdlLocation) {
40-
super(wsdlLocation, SERVICE);
41-
}
42-
43-
public CourtPolicyMDEService(URL wsdlLocation, QName serviceName) {
44-
super(wsdlLocation, serviceName);
45-
}
46-
47-
public CourtPolicyMDEService() {
48-
super(WSDL_LOCATION, SERVICE);
22+
public static final URL WSDL_LOCATION;
23+
24+
public static final QName SERVICE =
25+
new QName(
26+
"https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtPolicyMDE",
27+
"CourtPolicyMDEService");
28+
public static final QName CourtPolicyMDE =
29+
new QName(
30+
"https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtPolicyMDE",
31+
"CourtPolicyMDE");
32+
33+
static {
34+
URL url = null;
35+
try {
36+
url = URI.create("file:../stage/illinois-ECF5-CourtPolicyMDEService.wsdl").toURL();
37+
} catch (MalformedURLException e) {
38+
java.util.logging.Logger.getLogger(CourtPolicyMDEService.class.getName())
39+
.log(
40+
java.util.logging.Level.INFO,
41+
"Can not initialize the default wsdl from {0}",
42+
"file:../stage/illinois-ECF5-CourtPolicyMDEService.wsdl");
4943
}
50-
51-
public CourtPolicyMDEService(WebServiceFeature ... features) {
52-
super(WSDL_LOCATION, SERVICE, features);
53-
}
54-
55-
public CourtPolicyMDEService(URL wsdlLocation, WebServiceFeature ... features) {
56-
super(wsdlLocation, SERVICE, features);
57-
}
58-
59-
public CourtPolicyMDEService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
60-
super(wsdlLocation, serviceName, features);
61-
}
62-
63-
64-
65-
66-
/**
67-
*
68-
* @return
69-
* returns CourtPolicyMDE
70-
*/
71-
@WebEndpoint(name = "CourtPolicyMDE")
72-
public ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde.CourtPolicyMDE getCourtPolicyMDE() {
73-
return super.getPort(CourtPolicyMDE, ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde.CourtPolicyMDE.class);
74-
}
75-
76-
/**
77-
*
78-
* @param features
79-
* A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
80-
* @return
81-
* returns CourtPolicyMDE
82-
*/
83-
@WebEndpoint(name = "CourtPolicyMDE")
84-
public ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde.CourtPolicyMDE getCourtPolicyMDE(WebServiceFeature... features) {
85-
return super.getPort(CourtPolicyMDE, ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde.CourtPolicyMDE.class, features);
86-
}
87-
44+
WSDL_LOCATION = url;
45+
}
46+
47+
public CourtPolicyMDEService(URL wsdlLocation) {
48+
super(wsdlLocation, SERVICE);
49+
}
50+
51+
public CourtPolicyMDEService(URL wsdlLocation, QName serviceName) {
52+
super(wsdlLocation, serviceName);
53+
}
54+
55+
public CourtPolicyMDEService() {
56+
super(WSDL_LOCATION, SERVICE);
57+
}
58+
59+
public CourtPolicyMDEService(WebServiceFeature... features) {
60+
super(WSDL_LOCATION, SERVICE, features);
61+
}
62+
63+
public CourtPolicyMDEService(URL wsdlLocation, WebServiceFeature... features) {
64+
super(wsdlLocation, SERVICE, features);
65+
}
66+
67+
public CourtPolicyMDEService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
68+
super(wsdlLocation, serviceName, features);
69+
}
70+
71+
/**
72+
* @return returns CourtPolicyMDE
73+
*/
74+
@WebEndpoint(name = "CourtPolicyMDE")
75+
public ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde
76+
.CourtPolicyMDE
77+
getCourtPolicyMDE() {
78+
return super.getPort(
79+
CourtPolicyMDE,
80+
ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde
81+
.CourtPolicyMDE.class);
82+
}
83+
84+
/**
85+
* @param features A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy.
86+
* Supported features not in the <code>features</code> parameter will have their default
87+
* values.
88+
* @return returns CourtPolicyMDE
89+
*/
90+
@WebEndpoint(name = "CourtPolicyMDE")
91+
public ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde
92+
.CourtPolicyMDE
93+
getCourtPolicyMDE(WebServiceFeature... features) {
94+
return super.getPort(
95+
CourtPolicyMDE,
96+
ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtpolicymde
97+
.CourtPolicyMDE.class,
98+
features);
99+
}
88100
}
Lines changed: 76 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,89 +1,90 @@
11
package ecf5;
22

33
import ecf5.v2024_6.https.docs_oasis_open_org.legalxml_courtfiling.ns.v5_0wsdl.courtrecordmde.CourtRecordMDE;
4+
import jakarta.xml.ws.Service;
5+
import jakarta.xml.ws.WebEndpoint;
6+
import jakarta.xml.ws.WebServiceClient;
7+
import jakarta.xml.ws.WebServiceFeature;
48
import java.net.MalformedURLException;
59
import java.net.URI;
610
import java.net.URL;
711
import javax.xml.namespace.QName;
8-
import jakarta.xml.ws.WebEndpoint;
9-
import jakarta.xml.ws.WebServiceClient;
10-
import jakarta.xml.ws.WebServiceFeature;
11-
import jakarta.xml.ws.Service;
1212

1313
/**
14-
* This class was generated by Apache CXF 4.0.8
15-
* 2025-11-05T15:23:26.656-05:00
16-
* Generated source version: 4.0.8
17-
*
14+
* This class was generated by Apache CXF 4.0.8 2025-11-05T15:23:26.656-05:00 Generated source
15+
* version: 4.0.8
1816
*/
19-
@WebServiceClient(name = "CourtRecordMDEService",
20-
wsdlLocation = "file:../stage/illinois-ECF5-CourtRecordMDEService.wsdl",
21-
targetNamespace = "https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtRecordMDE")
17+
@WebServiceClient(
18+
name = "CourtRecordMDEService",
19+
wsdlLocation = "file:../stage/illinois-ECF5-CourtRecordMDEService.wsdl",
20+
targetNamespace = "https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtRecordMDE")
2221
public class CourtRecordMDEService extends Service {
2322

24-
public static final URL WSDL_LOCATION;
25-
26-
public static final QName SERVICE = new QName("https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtRecordMDE", "CourtRecordMDEService");
27-
public static final QName CourtRecordMDE = new QName("https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtRecordMDE", "CourtRecordMDE");
28-
static {
29-
URL url = null;
30-
try {
31-
url = URI.create("file:../stage/illinois-ECF5-CourtRecordMDEService.wsdl").toURL();
32-
} catch (MalformedURLException e) {
33-
java.util.logging.Logger.getLogger(CourtRecordMDEService.class.getName())
34-
.log(java.util.logging.Level.INFO,
35-
"Can not initialize the default wsdl from {0}", "file:../stage/illinois-ECF5-CourtRecordMDEService.wsdl");
36-
}
37-
WSDL_LOCATION = url;
38-
}
39-
40-
public CourtRecordMDEService(URL wsdlLocation) {
41-
super(wsdlLocation, SERVICE);
42-
}
43-
44-
public CourtRecordMDEService(URL wsdlLocation, QName serviceName) {
45-
super(wsdlLocation, serviceName);
46-
}
47-
48-
public CourtRecordMDEService() {
49-
super(WSDL_LOCATION, SERVICE);
23+
public static final URL WSDL_LOCATION;
24+
25+
public static final QName SERVICE =
26+
new QName(
27+
"https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtRecordMDE",
28+
"CourtRecordMDEService");
29+
public static final QName CourtRecordMDE =
30+
new QName(
31+
"https://docs.oasis-open.org/legalxml-courtfiling/ns/v5.0WSDL/CourtRecordMDE",
32+
"CourtRecordMDE");
33+
34+
static {
35+
URL url = null;
36+
try {
37+
url = URI.create("file:../stage/illinois-ECF5-CourtRecordMDEService.wsdl").toURL();
38+
} catch (MalformedURLException e) {
39+
java.util.logging.Logger.getLogger(CourtRecordMDEService.class.getName())
40+
.log(
41+
java.util.logging.Level.INFO,
42+
"Can not initialize the default wsdl from {0}",
43+
"file:../stage/illinois-ECF5-CourtRecordMDEService.wsdl");
5044
}
51-
52-
public CourtRecordMDEService(WebServiceFeature ... features) {
53-
super(WSDL_LOCATION, SERVICE, features);
54-
}
55-
56-
public CourtRecordMDEService(URL wsdlLocation, WebServiceFeature ... features) {
57-
super(wsdlLocation, SERVICE, features);
58-
}
59-
60-
public CourtRecordMDEService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
61-
super(wsdlLocation, serviceName, features);
62-
}
63-
64-
65-
66-
67-
/**
68-
*
69-
* @return
70-
* returns CourtRecordMDE
71-
*/
72-
@WebEndpoint(name = "CourtRecordMDE")
73-
public CourtRecordMDE getCourtRecordMDE() {
74-
return super.getPort(CourtRecordMDE, CourtRecordMDE.class);
75-
}
76-
77-
/**
78-
*
79-
* @param features
80-
* A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
81-
* @return
82-
* returns CourtRecordMDE
83-
*/
84-
@WebEndpoint(name = "CourtRecordMDE")
85-
public CourtRecordMDE getCourtRecordMDE(WebServiceFeature... features) {
86-
return super.getPort(CourtRecordMDE, CourtRecordMDE.class, features);
87-
}
88-
45+
WSDL_LOCATION = url;
46+
}
47+
48+
public CourtRecordMDEService(URL wsdlLocation) {
49+
super(wsdlLocation, SERVICE);
50+
}
51+
52+
public CourtRecordMDEService(URL wsdlLocation, QName serviceName) {
53+
super(wsdlLocation, serviceName);
54+
}
55+
56+
public CourtRecordMDEService() {
57+
super(WSDL_LOCATION, SERVICE);
58+
}
59+
60+
public CourtRecordMDEService(WebServiceFeature... features) {
61+
super(WSDL_LOCATION, SERVICE, features);
62+
}
63+
64+
public CourtRecordMDEService(URL wsdlLocation, WebServiceFeature... features) {
65+
super(wsdlLocation, SERVICE, features);
66+
}
67+
68+
public CourtRecordMDEService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
69+
super(wsdlLocation, serviceName, features);
70+
}
71+
72+
/**
73+
* @return returns CourtRecordMDE
74+
*/
75+
@WebEndpoint(name = "CourtRecordMDE")
76+
public CourtRecordMDE getCourtRecordMDE() {
77+
return super.getPort(CourtRecordMDE, CourtRecordMDE.class);
78+
}
79+
80+
/**
81+
* @param features A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy.
82+
* Supported features not in the <code>features</code> parameter will have their default
83+
* values.
84+
* @return returns CourtRecordMDE
85+
*/
86+
@WebEndpoint(name = "CourtRecordMDE")
87+
public CourtRecordMDE getCourtRecordMDE(WebServiceFeature... features) {
88+
return super.getPort(CourtRecordMDE, CourtRecordMDE.class, features);
89+
}
8990
}

0 commit comments

Comments
 (0)