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 2014/02/11 21:41:36 UTC

svn commit: r1567369 - in /isis/site/trunk/content/components/objectstores/jdo/services: auditing-service-jdo.md exception-recognizers-jdo.md isisjdosupport-service.md publishing-service-jdo.md settings-services-jdo.md

Author: danhaywood
Date: Tue Feb 11 20:41:35 2014
New Revision: 1567369

URL: http://svn.apache.org/r1567369
Log:
fixing links

Modified:
    isis/site/trunk/content/components/objectstores/jdo/services/auditing-service-jdo.md
    isis/site/trunk/content/components/objectstores/jdo/services/exception-recognizers-jdo.md
    isis/site/trunk/content/components/objectstores/jdo/services/isisjdosupport-service.md
    isis/site/trunk/content/components/objectstores/jdo/services/publishing-service-jdo.md
    isis/site/trunk/content/components/objectstores/jdo/services/settings-services-jdo.md

Modified: isis/site/trunk/content/components/objectstores/jdo/services/auditing-service-jdo.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/components/objectstores/jdo/services/auditing-service-jdo.md?rev=1567369&r1=1567368&r2=1567369&view=diff
==============================================================================
--- isis/site/trunk/content/components/objectstores/jdo/services/auditing-service-jdo.md (original)
+++ isis/site/trunk/content/components/objectstores/jdo/services/auditing-service-jdo.md Tue Feb 11 20:41:35 2014
@@ -1,17 +1,15 @@
 Title: Auditing Service using JDO
 
-The JDO objectstore provides a simple implementation of the applib [AuditingService](../../../core/services/auditing-service.html) that simply persists the event data into a `AuditEntry` entity.
+The JDO objectstore provides a simple implementation of the applib [AuditingService](../../../../reference/services/auditing-service.html) that simply persists the event data into a `AuditEntry` entity.
 
-> Rather than using an `AuditingService`, you may prefer to use the [Publishing Service](../../../core/services/publishing-service.html), since it is considerably more flexible.  A JDO [implementation](publishing-service-jdo.html) is available.
+> Rather than using an `AuditingService`, you may prefer to use the [Publishing Service](../../../../reference/services/publishing-service.html), since it is considerably more flexible.  A JDO [implementation](./publishing-service-jdo.html) is available.
 
 ### Register the Service
 
 Register like any other service in `isis.properties`:
 
-<pre>
-isis.services=...,\
-              org.apache.isis.objectstore.jdo.applib.service.audit.AuditingServiceJdo,\
-              ...
-</pre>
+    isis.services=...,\
+                  org.apache.isis.objectstore.jdo.applib.service.audit.AuditingServiceJdo,\
+                  ...
 
 Assuming that you've also configured Isis to use the JDO objectstore, you should be good to go...

Modified: isis/site/trunk/content/components/objectstores/jdo/services/exception-recognizers-jdo.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/components/objectstores/jdo/services/exception-recognizers-jdo.md?rev=1567369&r1=1567368&r2=1567369&view=diff
==============================================================================
--- isis/site/trunk/content/components/objectstores/jdo/services/exception-recognizers-jdo.md (original)
+++ isis/site/trunk/content/components/objectstores/jdo/services/exception-recognizers-jdo.md Tue Feb 11 20:41:35 2014
@@ -1,6 +1,6 @@
 Title: Exception Recognizers
 
-The JDO objectstore provides a number of implementations of the applib [ExceptionRecognizer](../../../reference/services/exception-recognizers.html) API that will recognize SQL constraint exceptions and convert them into user-friendly error messages.  The `ExceptionRecognizerCompositeForJdoObjectStore` wraps these up into a single implementation.
+The JDO objectstore provides a number of implementations of the applib [ExceptionRecognizer](../../../../reference/services/exception-recognizers.html) API that will recognize SQL constraint exceptions and convert them into user-friendly error messages.  The `ExceptionRecognizerCompositeForJdoObjectStore` wraps these up into a single implementation.
 
 
 ### Register the Service

Modified: isis/site/trunk/content/components/objectstores/jdo/services/isisjdosupport-service.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/components/objectstores/jdo/services/isisjdosupport-service.md?rev=1567369&r1=1567368&r2=1567369&view=diff
==============================================================================
--- isis/site/trunk/content/components/objectstores/jdo/services/isisjdosupport-service.md (original)
+++ isis/site/trunk/content/components/objectstores/jdo/services/isisjdosupport-service.md Tue Feb 11 20:41:35 2014
@@ -65,12 +65,15 @@ The implementation is `IsisJdoSupportImp
 
 In the domain entity or service, add:
 
-    // {{
     private IsisJdoSupport isisJdoSupport;
     public void injectIsisJdoSupport(IsisJdoSupport isisJdoSupport) {
         this.isisJdoSupport = isisJdoSupport;
     }
-    // }}
+
+or simply (1.4.0-SNAPSHOT):
+
+    @javax.inject.Inject
+    private IsisJdoSupport isisJdoSupport;
 
 The service will then be automatically injected as normal.
                     
\ No newline at end of file

Modified: isis/site/trunk/content/components/objectstores/jdo/services/publishing-service-jdo.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/components/objectstores/jdo/services/publishing-service-jdo.md?rev=1567369&r1=1567368&r2=1567369&view=diff
==============================================================================
--- isis/site/trunk/content/components/objectstores/jdo/services/publishing-service-jdo.md (original)
+++ isis/site/trunk/content/components/objectstores/jdo/services/publishing-service-jdo.md Tue Feb 11 20:41:35 2014
@@ -1,6 +1,6 @@
 Title: Publishing Service using JDO
 
-The JDO objectstore provides a simple implementation of the applib [PublishingService](../../../core/services/publishing-service.html) that simply persists the event data into a `PublishedEvent` entity.
+The JDO objectstore provides a simple implementation of the applib [PublishingService](../../../../reference/services/publishing-service.html) that simply persists the event data into a `PublishedEvent` entity.
 
 Along with the event data, the `PublishedEvent` also includes a status property with two values: `QUEUED` and `PROCESSED`.  The service also acts as a repository to search for all unprocessed events.
 
@@ -12,10 +12,8 @@ Although a polling architecture introduc
 
 Register like any other service in `isis.properties`:
 
-<pre>
-isis.services=<i>...other services...</i>,\
-              org.apache.isis.objectstore.jdo.applib.service.publish.PublishingServiceJdo,\
-              ...
-</pre>
+    isis.services=...,\
+                  org.apache.isis.objectstore.jdo.applib.service.publish.PublishingServiceJdo,\
+                  ...
 
 Assuming that you've also configured Isis to use the JDO objectstore, you should be good to go...

Modified: isis/site/trunk/content/components/objectstores/jdo/services/settings-services-jdo.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/components/objectstores/jdo/services/settings-services-jdo.md?rev=1567369&r1=1567368&r2=1567369&view=diff
==============================================================================
--- isis/site/trunk/content/components/objectstores/jdo/services/settings-services-jdo.md (original)
+++ isis/site/trunk/content/components/objectstores/jdo/services/settings-services-jdo.md Tue Feb 11 20:41:35 2014
@@ -1,6 +1,6 @@
 Title: Settings Services using JDO
 
-The JDO objectstore provides simple implementations of the two applib [Settings Services](../../../reference/services/settings-services.html).
+The JDO objectstore provides simple implementations of the two applib [Settings Services](../../../../reference/services/settings-services.html).
 
 ## Application Settings
 
@@ -24,11 +24,9 @@ These actions can be hidden using securi
 
 Register the services as any other service, in `isis.properties`:
 
-<pre>
-isis.services=<i>...other services...</i>,\
-              org.apache.isis.objectstore.jdo.applib.service.settings.ApplicationSettingsServiceJdo,\
-             org.apache.isis.objectstore.jdo.applib.service.settings.UserSettingsServiceJdo,\
-              ...
-</pre>
+    isis.services=...,\
+                  org.apache.isis.objectstore.jdo.applib.service.settings.ApplicationSettingsServiceJdo,\
+                  org.apache.isis.objectstore.jdo.applib.service.settings.UserSettingsServiceJdo,\
+                  ...
 
 Assuming that you've also configured Isis to use the JDO objectstore, you should be good to go...