Author: danhaywood
Date: Tue Nov 18 22:33:27 2014
New Revision: 1640442
URL: http://svn.apache.org/r1640442
Log:
tutorial
Modified:
isis/site/trunk/content/tutorials/apacheconeu-2014.md
Modified: isis/site/trunk/content/tutorials/apacheconeu-2014.md
URL:
http://svn.apache.org/viewvc/isis/site/trunk/content/tutorials/apacheconeu-2014.md?rev=1640442&r1=1640441&r2=1640442&view=diff
==============================================================================
--- isis/site/trunk/content/tutorials/apacheconeu-2014.md (original)
+++ isis/site/trunk/content/tutorials/apacheconeu-2014.md Tue Nov 18 22:33:27
2014
@@ -127,7 +127,9 @@ which in yuml.me's DSL is:
</pre>
-## Domain class
+## Domain entity
+
+Most domain objects in Apache Isis applications are persistent entities.
* rename the `SimpleObject` class
* rename the `SimpleObject` class' `name` property
@@ -139,6 +141,8 @@ which in yuml.me's DSL is:
## Domain service
+Domain services either act as factories or repositories to entities, or (more
generally) can be used to "bridge across" to other domains/bounded contexts.
Most are application-scoped, but they can also be request-scoped if required.
+
* rename the `SimpleObjects` class
* review `create` action (acting as a factory)
- as per our
[docs](http://isis.apache.org/how-tos/how-to-01-160-How-to-create-or-delete-objects-within-your-code.html)
@@ -321,6 +325,20 @@ TODO
+* Bulk actions
+
+TODO
+
+
+## Performance tuning
+
+TODO
+
+* QueryResultsCache
+* Scratchpad Services
+
+
+
## Extending the Wicket UI