We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When using @XmlNamespace(uri="http://example.com/namespace"), is this namespace propagated to all properties that don't specifies a namespace?
@XmlNamespace(uri="http://example.com/namespace")
Where is the difference between:
/** * @XmlRoot("blog-post") * @XmlNamespace(uri="http://example.com/namespace") */ class ...{ }
and
/** * @XmlRoot("blog-post", namespace="http://example.com/namespace") */ class ...{ }
?
If they are the same thing, then the response to my question should be "yes"... is it true?
The text was updated successfully, but these errors were encountered:
see #301
Sorry, something went wrong.
No branches or pull requests
When using
@XmlNamespace(uri="http://example.com/namespace")
, is this namespace propagated to all properties that don't specifies a namespace?Where is the difference between:
and
?
If they are the same thing, then the response to my question should be "yes"... is it true?
The text was updated successfully, but these errors were encountered: