Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update method documentation for SignedDataVerifier to link to Apple d… #79

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public SignedDataVerifier(Set<InputStream> rootCertificates, String bundleId, Lo

/**
* Verifies and decodes a signedTransaction obtained from the App Store Server API, an App Store Server Notification, or from a device
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwstransaction">JWSTransaction</a>
*
* @param signedTransaction The signedTransaction field
* @return The decoded transaction info after verification
Expand All @@ -80,6 +81,7 @@ public JWSTransactionDecodedPayload verifyAndDecodeTransaction(String signedTran

/**
* Verifies and decodes a signedRenewalInfo obtained from the App Store Server API, an App Store Server Notification, or from a device
* @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwsrenewalinfo">JWSRenewalInfo</a>
*
* @param signedRenewalInfo The signedRenewalInfo field
* @return The decoded renewal info after verification
Expand All @@ -95,6 +97,7 @@ public JWSRenewalInfoDecodedPayload verifyAndDecodeRenewalInfo(String signedRene

/**
* Verifies and decodes an App Store Server Notification signedPayload
* @see <a href="https://developer.apple.com/documentation/appstoreservernotifications/signedpayload">signedPayload</a>
*
* @param signedPayload The payload received by your server
* @return The decoded payload after verification
Expand Down Expand Up @@ -142,6 +145,8 @@ protected void verifyNotification(String bundleId, Long appAppleId, Environment

/**
* Verifies and decodes a signed AppTransaction
* @see <a href="https://developer.apple.com/documentation/storekit/apptransaction">AppTransaction</a>
*
* @param signedAppTransaction The signed AppTransaction
* @return The decoded AppTransaction after validation
* @throws VerificationException Thrown if the data could not be verified
Expand Down
Loading