@@ -62,6 +62,7 @@ public SignedDataVerifier(Set<InputStream> rootCertificates, String bundleId, Lo
6262
6363 /**
6464 * Verifies and decodes a signedTransaction obtained from the App Store Server API, an App Store Server Notification, or from a device
65+ * @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwstransaction">JWSTransaction</a>
6566 *
6667 * @param signedTransaction The signedTransaction field
6768 * @return The decoded transaction info after verification
@@ -80,6 +81,7 @@ public JWSTransactionDecodedPayload verifyAndDecodeTransaction(String signedTran
8081
8182 /**
8283 * Verifies and decodes a signedRenewalInfo obtained from the App Store Server API, an App Store Server Notification, or from a device
84+ * @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwsrenewalinfo">JWSRenewalInfo</a>
8385 *
8486 * @param signedRenewalInfo The signedRenewalInfo field
8587 * @return The decoded renewal info after verification
@@ -95,6 +97,7 @@ public JWSRenewalInfoDecodedPayload verifyAndDecodeRenewalInfo(String signedRene
9597
9698 /**
9799 * Verifies and decodes an App Store Server Notification signedPayload
100+ * @see <a href="https://developer.apple.com/documentation/appstoreservernotifications/signedpayload">signedPayload</a>
98101 *
99102 * @param signedPayload The payload received by your server
100103 * @return The decoded payload after verification
@@ -142,6 +145,8 @@ protected void verifyNotification(String bundleId, Long appAppleId, Environment
142145
143146 /**
144147 * Verifies and decodes a signed AppTransaction
148+ * @see <a href="https://developer.apple.com/documentation/storekit/apptransaction">AppTransaction</a>
149+ *
145150 * @param signedAppTransaction The signed AppTransaction
146151 * @return The decoded AppTransaction after validation
147152 * @throws VerificationException Thrown if the data could not be verified
0 commit comments