The following constructors do not compile when I import the generate sources from a wsconsume against java ee 6 apis via maven:
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
public ReportDataIntegratorBeanService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public ReportDataIntegratorBeanService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public ReportDataIntegratorBeanService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
Any ideas?