Description
"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)