Skip to content

Commit

Permalink
Fixed content by grammar rules
Browse files Browse the repository at this point in the history
  • Loading branch information
RuslanPopenko committed Aug 10, 2016
1 parent 8df30ca commit 6914a93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions docs/basic_concepts/data_access.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
Data Access Layer
=================

Data access layer in iVIS implemented using JPA standard
(ORM provider Hibernate).
Data access layer in iVIS is implemented using standard JPA (using Hibernate as ORM provider).

All tables present as mapping of entities.
Tables have prefix "dbo_" that means database object,
All entities are mapped to the corresponding tables. All tables (except authorization ones) have prefix "dbo_" that means "database object".
Except of authorization tables
(it relate with ideological considerations).

Expand All @@ -17,11 +15,11 @@ JPA classes located in *com.imcode.entities* of ivis-core module in iVIS project

**JPA entities diagram** :download:`download <../images/jpaEntitiesDiagram.png>`.

Relations in DB also implement by JPA standard.
Relations in DB also are implement by standard JPA.

.. note::

embeddables have not got id. Because they can not exist without entity
Embedded entities don't have id and cann't exist without parent entity.

LIST OF ALL TABLES AND DESCRIPTION
----------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/basic_concepts/security_subsystem.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Security Subsystem
==================

iVIS use `OAuth 2.0 <https://tools.ietf.org/html/rfc6749>`_ protocol
(`Spring Security <http://projects.spring.io/spring-security/>`_ provider)
iVIS uses `OAuth 2.0 <https://tools.ietf.org/html/rfc6749>`_ protocol
(implemented by standard `Spring Security <http://projects.spring.io/spring-security/>`_ provider)

The provider role in OAuth 2.0 is actually split between Authorization Service and Resource Service,
and these reside in the iVIS with Spring Security OAuth.
Expand Down

0 comments on commit 6914a93

Please sign in to comment.