Skip to content

Commit 6ee6a05

Browse files
authoredMar 21, 2019
Fixed links to domain model
1 parent 495ecd8 commit 6ee6a05

File tree

1 file changed

+3
-3
lines changed
  • tutorials/getting-started-with-flow/02__listing-entities-in-a-grid

1 file changed

+3
-3
lines changed
 

‎tutorials/getting-started-with-flow/02__listing-entities-in-a-grid/content.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Before getting into actual web development with Vaadin Flow, we need to add the
1616

1717
Copy or download the following three Java classes from GitHub and add them to your project:
1818

19-
* https://raw.githubusercontent.com/vaadin/tutorial/vaadin10%2B/src/main/java/com/vaadin/starter/skeleton/backend/CustomerStatus.java[`CustomerStatus.java`^]: This is a simple enum type.
19+
* https://raw.githubusercontent.com/vaadin/tutorial/vaadin10%2B/src/main/java/com/vaadin/example/CustomerStatus.java[`CustomerStatus.java`^]: This is a simple enum type.
2020

21-
* https://raw.githubusercontent.com/vaadin/tutorial/vaadin10%2B/src/main/java/com/vaadin/starter/skeleton/backend/Customer.java[`Customer.java`^]: This this is the main domain object, a basic Java bean that encapsulates data about a customer.
21+
* https://raw.githubusercontent.com/vaadin/tutorial/vaadin10%2B/src/main/java/com/vaadin/example/Customer.java[`Customer.java`^]: This this is the main domain object, a basic Java bean that encapsulates data about a customer.
2222

23-
* https://raw.githubusercontent.com/vaadin/tutorial/vaadin10%2B/src/main/java/com/vaadin/starter/skeleton/backend/CustomerService.java[`CustomerService.java`^]: This is a simple service class that you can use to get and save `Customer` instances. Think of this class as the entry point to a dummy database.
23+
* https://raw.githubusercontent.com/vaadin/tutorial/vaadin10%2B/src/main/java/com/vaadin/example/CustomerService.java[`CustomerService.java`^]: This is a simple service class that you can use to get and save `Customer` instances. Think of this class as the entry point to a dummy database.
2424

2525
[TIP]
2626
A fast way to copy classes in IntelliJ IDEA is to use the clipboard. In the browser, select the content of the file and choose *Edit > Copy*. In IntelliJ IDEA, right-click `com.vaadin.example` in the *Project* view and select *Paste*. IntelliJ IDEA is smart enough to create a properly-named Java file automatically.

0 commit comments

Comments
 (0)
Please sign in to comment.