You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2013/06/06 12:47:45 UTC

svn commit: r1490232 - in /isis/site/trunk/content: core/about.md core/wrapper.md documentation.md

Author: danhaywood
Date: Thu Jun  6 10:47:45 2013
New Revision: 1490232

URL: http://svn.apache.org/r1490232
Log:
page on integration test support and wrapper service

Modified:
    isis/site/trunk/content/core/about.md
    isis/site/trunk/content/core/wrapper.md
    isis/site/trunk/content/documentation.md

Modified: isis/site/trunk/content/core/about.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/core/about.md?rev=1490232&r1=1490231&r2=1490232&view=diff
==============================================================================
--- isis/site/trunk/content/core/about.md (original)
+++ isis/site/trunk/content/core/about.md Thu Jun  6 10:47:45 2013
@@ -10,16 +10,17 @@ Title: Core Modules
 
 ###  Services
 
-- [Initializing Services](services/initializing-services.html) [1.2.0-SNAPSHOT]
+- [Initializing Services](services/initializing-services.html)
 - [Auditing Service](services/auditing-service.html)
 - [Bookmark Service](services/bookmark-service.html)
-- [Exception Recognizers](services/exception-recognizers.html) [1.2.0-SNAPSHOT]
-- [Publishing Service](services/publishing-service.html) [1.2.0-SNAPSHOT]
+- [Exception Recognizers](services/exception-recognizers.html)
+- [Publishing Service](services/publishing-service.html)
 
 ### Development
 
-- [Unit Test Support](unittestsupport.html) [stub]
-- [Integration Test Support](integtestsupport.html) [stub]
+- [Unit Test Support](unittestsupport.html)
+- [Integration Test Support](integtestsupport.html)
+- [Wrapper Factory](wrapper.html) [stub]
 
 ###  Programming Model
 

Modified: isis/site/trunk/content/core/wrapper.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/core/wrapper.md?rev=1490232&r1=1490231&r2=1490232&view=diff
==============================================================================
--- isis/site/trunk/content/core/wrapper.md (original)
+++ isis/site/trunk/content/core/wrapper.md Thu Jun  6 10:47:45 2013
@@ -1,5 +1,18 @@
-Title: Wrapper Domain Service
+Title: Wrapper Factory
 
-The 'wrapper' domain service provides the ability for domain objects to be wrapped such that interactions between domain objects can be "as if" through the viewer. (In other words, business rule constraints are applied).
+{stub
+This is a stub.  However there is some material on the [Integration Testing](integtestsupport.html) page
+}
 
-The service is defined through the `WrapperFactory` API, defined in the core applib.
\ No newline at end of file
+The 'wrapper' factory provides the ability for domain objects to be wrapped such that interactions between domain objects can be "as if" through the viewer. (In other words, business rule constraints are applied).  This is typically used within integration tests (though could be used in production code in certain circumstances; somewhat akin to interacting through an EJB local interface).
+
+The service is defined through the `WrapperFactory` API, defined in the core applib.
+
+To use, update the `pom.xml`:
+
+<pre>
+    &lt;dependency&gt;
+        &lt;groupId&gt;org.apache.isis.core&lt;/groupId&gt;
+        &lt;artifactId&gt;isis-core-wrapper&lt;/artifactId&gt;
+    &lt;/dependency&gt;
+</pre>

Modified: isis/site/trunk/content/documentation.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/documentation.md?rev=1490232&r1=1490231&r2=1490232&view=diff
==============================================================================
--- isis/site/trunk/content/documentation.md (original)
+++ isis/site/trunk/content/documentation.md Thu Jun  6 10:47:45 2013
@@ -84,7 +84,7 @@ Guidance for committers is at the bottom
 
 - [Unit Test Support](core/unittestsupport.html)
 - [Integration Test Support](core/integtestsupport.html)
-- [Wrapper Service](core/wrapper.html) [stub]
+- [Wrapper Factory](core/wrapper.html) [stub]
 
 ###  Programming Model