Suppose you have a QName that represents a type in an .xsd document. How can I find out the name of the class that it would unmarshal into?
For example, I've got a QName: {http://www.domain.com/service/things.xsd}customer
This gets unmarshalled into a com.domain.service.things.Customer.
Is there a way I can do this without parsing the QName string representation?
Edit:
I've got a some .xsd's defined that are being used to create Java classes. I want to select one of these Java classes dynamically based on a QName that is being passed in as a String on an HTML form.
Edit2:
Since these classes' names are being automatically generated, somewhere there must be a method that generates their names from a QName.