juneau001 commented on code in PR #4378:
URL: https://github.com/apache/netbeans/pull/4378#discussion_r922850440
##########
enterprise/websvc.jaxwsmodel/src/org/netbeans/modules/websvc/api/jaxws/bindings/impl/BindingsQName.java:
##########
@@ -34,14 +34,15 @@ public enum BindingsQName {
HANDLER_CLASS(createHandlerQName("handler-class")),
HANDLER_NAME(createHandlerQName("handler-name")),
BINDINGS(createBindingsQName("bindings"));
-
+
public static final String JAVAEE_NS_URI =
"http://java.sun.com/xml/ns/javaee";
+ public static final String JAKARTAEE_NS_URI =
"https://jakarta.ee/xml/ns/jakartaee";
public static final String JAVAEE_NS_PREFIX = "jws";
public static final String JAXWS_NS_URI =
"http://java.sun.com/xml/ns/jaxws";
public static final String JAXWS_NS_PREFIX = "jaxws";
public static QName createHandlerQName(String localName) {
- return new QName(JAVAEE_NS_URI, localName, JAVAEE_NS_PREFIX);
+ return new QName(JAKARTAEE_NS_URI, localName, JAVAEE_NS_PREFIX);
Review Comment:
I am modifying to add the JAKARTAEE_JAXWS_NS_URI. You are correct, both the
createBindingsQName and createHandlerQName should be reflecting the same
namespace. Thanks for the review.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists