Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions sdk-generation-log/posmobile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "posmobile",
"project": "java",
"generatedAt": "2026-05-05T15:05:09Z",
"openapiCommitSha": "7824ebf60ac8c780120e550d6495a8f02e409859",
"automationCommitSha": "0b7ef4e0ed6a7963ab005efe76eab748250edafc",
"libraryCommitSha": "3653edbb62e06f986f9d010b6e9f0a9c5945cf6f"
}
8 changes: 8 additions & 0 deletions src/main/java/com/adyen/service/posmobile/PosMobileApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ public PosMobileApi(Client client, String baseURL) {
* @param createSessionRequest {@link CreateSessionRequest } (required)
* @return {@link CreateSessionResponse }
* @throws ApiException if fails to make API call
* @deprecated since POS Mobile API v68 Use POST
* [/auth/certificate](https://docs.adyen.com/api-explorer/softpos-configuration-api/latest/post/auth/certificate)
* to establish secure communications.
*/
@Deprecated
public CreateSessionResponse createCommunicationSession(CreateSessionRequest createSessionRequest)
throws ApiException, IOException {
return createCommunicationSession(createSessionRequest, null);
Expand All @@ -70,7 +74,11 @@ public CreateSessionResponse createCommunicationSession(CreateSessionRequest cre
* idempotency-keys (optional)
* @return {@link CreateSessionResponse }
* @throws ApiException if fails to make API call
* @deprecated since POS Mobile API v68 Use POST
* [/auth/certificate](https://docs.adyen.com/api-explorer/softpos-configuration-api/latest/post/auth/certificate)
* to establish secure communications.
*/
@Deprecated
public CreateSessionResponse createCommunicationSession(
CreateSessionRequest createSessionRequest, RequestOptions requestOptions)
throws ApiException, IOException {
Expand Down