I have a webservice method that takes in a java object e.g.
public String HelloThere(@QueryParam("")Name name){
...}
I would like to specify the name of the field to be display in the Name
object, how can i do that?
Class Name{
String firstName; //I want the user to pass it as fn
String lastName; //I want the user to pass it as ln
...
}
Any help, please?
--
View this message in context:
http://old.nabble.com/How-to-specify-QueryParam-name-in-a-Java-object-being-passed-in--tp26443622p26443622.html
Sent from the cxf-user mailing list archive at Nabble.com.