Codegen generates unnecessary holder
------------------------------------
Key: CXF-2678
URL: https://issues.apache.org/jira/browse/CXF-2678
Project: CXF
Issue Type: Bug
Components: Tooling
Affects Versions: 2.2.6
Environment: Windows 7
Reporter: Dennis Kieselhorst
Since 2.2.6 the codegen plugin generates unnecessary holder. The attached file
CxfUnnecessaryHolderService.wsdl can be used to reproduce it:
{code:title=2.2.5|borderStyle=solid}
public de.test.dekies.webservices.customer.CustomerLoyalityActionData
saveCxfUnnecessaryHolderData(
@WebParam(name = "CxfUnnecessaryHolderActionData", targetNamespace = "")
de.test.dekies.webservices.customer.CustomerLoyalityActionData
cxfUnnecessaryHolderActionData,
{code}
{code:title=2.2.6|borderStyle=solid}
public void saveCxfUnnecessaryHolderData(
@WebParam(mode = WebParam.Mode.INOUT, name =
"CxfUnnecessaryHolderActionData", targetNamespace = "")
javax.xml.ws.Holder<CustomerLoyalityActionData>
cxfUnnecessaryHolderActionData,
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.