Changes between Version 2 and Version 3 of RESTController


Ignore:
Timestamp:
11/20/09 00:01:20 (15 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RESTController

    v2 v3  
    2121This extends the single-table [wiki:BluePrintRESTImplementation REST Implementation].
    2222
    23 A joined resource request is a request to a table ("joined resource" or "component") in dependency of a join to another table ("primary resource" or simply "resource"), e.g.:
     23A joined resource request is a request to a table ("joined resource" or "'''component'''") in dependency of a join to another table ("primary resource" or simply "'''resource'''"), e.g.:
    2424
    2525  * the list of addresses (=component) of a person (=resource).
     
    2727There are different ways how "Joined Resources" can be seen:
    2828
    29 a) as subtables of database tables
    30 b) as structured properties of object classes
    31 c) as component classes within data compounds
     29  - as subtables of database tables
     30  - as structured properties of object classes
     31  - as component classes within data compounds
    3232
    3333In this implementation, component resources can be joined 1:1 or N:1 to their primary resources, either by natural joins (same key field in both tables) or primary/foreign key matches, where the primary key is always the 'id' field in the primary table.