We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c81fd commit 2122676Copy full SHA for 2122676
spring-ws-core/src/main/java/org/springframework/ws/soap/SoapElement.java
@@ -21,6 +21,8 @@
21
import javax.xml.namespace.QName;
22
import javax.xml.transform.Source;
23
24
+import org.jspecify.annotations.Nullable;
25
+
26
/**
27
* The base interface for all elements that are contained in a SOAP message.
28
*
@@ -61,7 +63,7 @@ public interface SoapElement {
61
63
* @param name the qualified name
62
64
* @return the value, or {@code null} if there is no such attribute
65
*/
- String getAttributeValue(QName name);
66
+ @Nullable String getAttributeValue(QName name);
67
68
69
* Returns an {@code Iterator} over all of the attributes in element as {@link QName
0 commit comments