If you are still using JAX-WS (like yesterday), they you can use the @WebParam
annotation and its name
attribute to control defaults in the generated WSDL:
public RetType doIt(@WebParam(name = "desc") String description) {
return null;
}
If you're not using JAX-WS, forget my answer. In any case, you are really, really not providing enough details to the readers on what you are doing. You need to improve the way you ask questions here on SO (and anywhere else), you need to give more information on what you are doing, on your context, on the tools you are using, provide some code (with the annotations!), etc. People can't guess all that, they don't all have a crystal ball you know. And if you are in a hurry and can't do that, I'm afraid readers won't take time to answer your questions too in the future. Good luck anyway.