Skip to content

Commit a9eaa9a

Browse files
committed
fix: standardize @author Javadoc format
- Change [@loong Wan](url) to <a href="url">Loong Wan</a> - Follow standard Javadoc @author tag format
1 parent 7a083cd commit a9eaa9a

29 files changed

Lines changed: 30 additions & 30 deletions

src/main/java/io/github/easy4j/soap/AbstractSoapVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* implementations. Subclasses supply the concrete schema loader,
3737
* envelope type and fault type for their specific SOAP version.
3838
*
39-
* @author [@Loong Wan](https://github.com/loong10k)
39+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4040
* @since 3.0.0
4141
* @see SoapVersion
4242
* @see SoapVersion11

src/main/java/io/github/easy4j/soap/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Contains XML Schema, WSDL, SOAP 1.1/1.2 envelope, encoding,
2222
* and binding namespace URIs as well as related XSI and WADL constants.
2323
*
24-
* @author [@Loong Wan](https://github.com/loong10k)
24+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
2525
* @since 3.0.0
2626
* @see io.github.easy4j.soap.SoapVersion
2727
* @see io.github.easy4j.soap.SoapVersion11

src/main/java/io/github/easy4j/soap/SoapFaultUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* When a SOAP fault is present in the response body, an {@link InvokeException}
2929
* is thrown containing the fault code and fault string from the response.
3030
*
31-
* @author [@Loong Wan](https://github.com/loong10k)
31+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3232
* @since 3.0.0
3333
* @see io.github.easy4j.soap.exception.InvokeException
3434
* @see javax.xml.soap.SOAPFault

src/main/java/io/github/easy4j/soap/SoapRequestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
* and parameter map, optionally delegating to a {@link SoapSignature} for
5757
* header/body signing.
5858
*
59-
* @author [@Loong Wan](https://github.com/loong10k)
59+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
6060
* @since 3.0.0
6161
* @see io.github.easy4j.soap.signature.SoapSignature
6262
* @see io.github.easy4j.soap.type.SoapType

src/main/java/io/github/easy4j/soap/SoapUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* SOAP version deduction, body/header extraction, and header transfer
4141
* between SOAP messages.
4242
*
43-
* @author [@Loong Wan](https://github.com/loong10k)
43+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4444
* @since 3.0.0
4545
* @see SoapVersion
4646
* @see io.github.easy4j.soap.utils.XmlUtils

src/main/java/io/github/easy4j/soap/SoapUtils2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* strategies. Also provides connection timeout configuration and
2828
* a simple {@code notNull} assertion helper.
2929
*
30-
* @author [@Loong Wan](https://github.com/loong10k)
30+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3131
* @since 3.0.0
3232
* @see SoapRequestUtils
3333
* @see io.github.easy4j.soap.handler.SoapResponseHandler

src/main/java/io/github/easy4j/soap/SoapVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* fault QNames, content type, encoding namespace, schema access,
1919
* validation logic and related metadata.
2020
*
21-
* @author [@Loong Wan](https://github.com/loong10k)
21+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
2222
* @since 3.0.0
2323
* @see SoapVersion11
2424
* @see SoapVersion12
@@ -141,7 +141,7 @@ public interface SoapVersion {
141141
/**
142142
* Utility methods for {@link SoapVersion} resolution.
143143
*
144-
* @author [@Loong Wan](https://github.com/loong10k)
144+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
145145
* @since 3.0.0
146146
*/
147147

src/main/java/io/github/easy4j/soap/SoapVersion11.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* Uses the {@code text/xml} content type and SOAP 1.1 encoding namespace.
3838
* Schema resources are loaded from SoapUI's bundled XSD files at class-load time.
3939
*
40-
* @author [@Loong Wan](https://github.com/loong10k)
40+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4141
* @since 3.0.0
4242
* @see SoapVersion12
4343
* @see Constants#SOAP11_ENVELOPE_NS

src/main/java/io/github/easy4j/soap/SoapVersion12.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* Uses the {@code application/soap+xml} content type and SOAP encoding namespace.
3838
* Schema resources are loaded from SoapUI's bundled XSD files at class-load time.
3939
*
40-
* @author [@Loong Wan](https://github.com/loong10k)
40+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4141
* @since 3.0.0
4242
* @see SoapVersion11
4343
* @see Constants#SOAP12_ENVELOPE_NS

src/main/java/io/github/easy4j/soap/exception/InvokeException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Extends {@link javax.xml.soap.SOAPException} with a fault {@code code}
2323
* and {@code msg} extracted from the SOAP Fault element.
2424
*
25-
* @author [@Loong Wan](https://github.com/loong10k)
25+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
2626
* @since 3.0.0
2727
* @see io.github.easy4j.soap.SoapFaultUtils
2828
*/

0 commit comments

Comments
 (0)