requestWrapperType = packageName + ".jaxws." + JavaUtils.capitalize(method.getName());
}
// JAX-WS p.37 pg.1, the annotation only affects the element name, not the type name
ParameterMetaData wrapperParameter = new ParameterMetaData(operation, xmlName, xmlType, requestWrapperType);
wrapperParameter.setAccessorFactoryCreator(new JAXBAccessorFactoryCreator());
operation.addParameter(wrapperParameter);
return wrapperParameter;
}