samples\corba\bank_ws_addressing does not compile
-------------------------------------------------
Key: CXF-2109
URL: https://issues.apache.org/jira/browse/CXF-2109
Project: CXF
Issue Type: Bug
Components: Samples
Affects Versions: 2.1.4
Reporter: Full Name
Priority: Trivial
"ant cxf.server" won't build because of invalid code in
samples\corba\bank_ws_addressing\src\cxf\server\BankImpl.java
// TODO: What is the correct implementation for this operation?
public void findAccount(javax.xml.ws.Holder<Object> accountDetails) {
}
correct code for sample
// TODO: What is the correct implementation for this operation?
public java.lang.Object findAccount(java.lang.Object accountDetails) {
Object holder = "foo";
return holder;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.