Skip to content

Commit 3f71855

Browse files
committed
Address PR review
1 parent 169d131 commit 3f71855

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -412,24 +412,23 @@ Build a feature-rich [in-person payments](https://docs.adyen.com/point-of-sale/)
412412

413413
### Using the Cloud Device API
414414

415-
For In-Person Payments integrations, the recommended solution is the [Cloud Device API](https://docs.adyen.com/api-explorer/cloud-device-api/1/overview).
415+
For In-Person Payments integrations, the recommended solution is the [Cloud device API](https://docs.adyen.com/api-explorer/cloud-device-api/1/overview).
416416

417-
Check the [Cloud Device API README](doc/CloudDeviceApi.md).
417+
Check the [Cloud device API README](doc/CloudDeviceApi.md).
418418

419419
### Using the Terminal API
420420

421421
With the [Terminal API](https://docs.adyen.com/api-explorer/terminal-api/1/overview) you can send and receive Terminal API messages in the following ways:
422422

423423
* Local communications: using your local network, your POS system sends the request directly to the IP address of the terminal, and receives the result synchronously.
424-
* Cloud communications: using the internet to access the cloud `/sync` and `/async` endpoints. You should consider adopting the [Cloud Device API](doc/CloudDeviceApi.md) instead.
424+
* Cloud communications: using the internet to access the cloud `/sync` and `/async` endpoints. You should consider adopting the [Cloud device API](doc/CloudDeviceApi.md) instead.
425425

426426

427-
Check the [Terminal API README](doc/TerminalApi.md).
427+
Check the [Terminal (Cloud) API README](doc/TerminalApi.md).
428428

429429
## Example integrations
430430
For a closer look at how our Java library works, you can clone one of our example integrations:
431431
* [Java Spring Boot example integration](https://github.com/adyen-examples/adyen-java-spring-online-payments).
432-
* [Kotlin Spring Boot example integration](https://github.com/adyen-examples/adyen-kotlin-spring-online-payments).
433432

434433
These include commented code, highlighting key features and concepts, and examples of API calls that can be made using the library.
435434

doc/CloudDeviceApi.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ import com.adyen.enums.Environment;
2828
import com.adyen.service.clouddevice.CloudDeviceApi;
2929
import com.adyen.model.clouddevice.*;
3030
import com.adyen.model.tapi.*;
31+
import java.math.BigDecimal;
32+
import java.time.OffsetDateTime;
33+
import java.time.ZoneOffset;
3134

3235
// Setup Client and Service
3336
Client client = new Client("YOUR_API_KEY", Environment.TEST);

doc/TerminalApi.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ import com.adyen.enums.Environment;
77
import com.adyen.service.TerminalCloudAPI;
88
import com.adyen.model.nexo.*;
99
import com.adyen.model.terminal.*;
10+
import java.math.BigDecimal;
11+
import java.util.GregorianCalendar;
12+
import javax.xml.datatype.DatatypeFactory;
13+
import javax.xml.datatype.XMLGregorianCalendar;
1014

1115
// Step 2: Initialize the client object
1216
Client client = new Client("YOUR_API_KEY", Environment.TEST);

0 commit comments

Comments
 (0)