diff options
author | Denis <denis@vaadin.com> | 2016-12-19 16:52:19 +0200 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2016-12-19 16:52:19 +0200 |
commit | 03f0e0f31b3643e08ed2508a4ae760a5c058322f (patch) | |
tree | 1dc5ef40968b9c9d4af0bba89d5892594dd6c0cc /documentation/advanced | |
parent | 5121f1f38e727ccbcd8b24c27cdd91864125ed12 (diff) | |
download | vaadin-framework-03f0e0f31b3643e08ed2508a4ae760a5c058322f.tar.gz vaadin-framework-03f0e0f31b3643e08ed2508a4ae760a5c058322f.zip |
Remove jpacontainer section from the docs. (#8047)
* Remove jpacontainer section from the docs.
Diffstat (limited to 'documentation/advanced')
-rw-r--r-- | documentation/advanced/advanced-architecture.asciidoc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/documentation/advanced/advanced-architecture.asciidoc b/documentation/advanced/advanced-architecture.asciidoc index 219443b470..64b9b78add 100644 --- a/documentation/advanced/advanced-architecture.asciidoc +++ b/documentation/advanced/advanced-architecture.asciidoc @@ -42,13 +42,6 @@ domain layer, offering the domain logic as a service, which can be used by the user interface layer, as well as for other uses. In Java EE development, Enterprise JavaBeans (EJBs) are typically used for building this layer. -An __infrastructure layer__ (or __data access layer__) is often distinguished -from the data store layer, with a purpose to abstract the data store. For -example, it could involve a persistence solution such as JPA and an EJB -container. This layer becomes relevant with Vaadin when binding Vaadin -components to data with the JPAContainer, as described in -<<dummy/../../../framework/jpacontainer/jpacontainer-overview.asciidoc#jpacontainer.overview,"Vaadin -JPAContainer">>. [[advanced.architecture.mvp]] |