Changes between Version 32 and Version 33 of RESTController


Ignore:
Timestamp:
04/06/10 23:24:56 (15 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RESTController

    v32 v33  
    2121== Resources ==
    2222
    23 Resources are data objects of the application, which can have attributes and methods. Attribute values are stored in the data store of the application (usually the local database), while methods are provided by the controller function of the particular resource.
     23Resources are data objects on the server.
     24
     25Resources can have attributes and methods. Attribute values are stored in the data store of the application (usually the local database), while methods are provided by the controller function of the particular resource.
    2426
    2527Attributes can be simple (=atomic types) or complex (=object types), e.g. in a "person" resource the "first_name" attribute is of an atomic type (=string), while the "address" attribute is of an object type (=pr_address). Complex attributes in S3 are also called ''Components''.
     
    2729  ''Components are stored in separate database tables which reference the primary resource record.''
    2830
    29 Resources as well as their components and methods can be addressed by URL's.
     31Resources as well as their components and methods can be addressed individually by URL's.
    3032== URL Argument Lists ==
    3133