You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by bu...@apache.org on 2013/06/08 10:42:16 UTC

svn commit: r864834 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/components/objectstores/jdo/settings-services-jdo.html content/core/services/about.html content/core/services/settings-services.html

Author: buildbot
Date: Sat Jun  8 08:42:16 2013
New Revision: 864834

Log:
Staging update by buildbot for isis

Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/components/objectstores/jdo/settings-services-jdo.html
    websites/staging/isis/trunk/content/core/services/about.html
    websites/staging/isis/trunk/content/core/services/settings-services.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Jun  8 08:42:16 2013
@@ -1 +1 @@
-1490755
+1490934

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Jun  8 08:42:16 2013
@@ -1 +1 @@
-1490755
+1490934

Modified: websites/staging/isis/trunk/content/components/objectstores/jdo/settings-services-jdo.html
==============================================================================
--- websites/staging/isis/trunk/content/components/objectstores/jdo/settings-services-jdo.html (original)
+++ websites/staging/isis/trunk/content/components/objectstores/jdo/settings-services-jdo.html Sat Jun  8 08:42:16 2013
@@ -252,11 +252,11 @@
 </h1>
 </div>
 
-<p>The JDO objectstore provides simple implementations of the two applib <a href="../../../core/services/settings-services.html">SettingsServices</a>.</p>
+<p>The JDO objectstore provides simple implementations of the two applib <a href="../../../core/services/settings-services.html">Settings Services</a>.</p>
 
 <h2>Application Settings</h2>
 
-<p>In the case of <code>ApplicationSettingsService</code>, the service is implemented by <code>ApplicationSettingsServiceJdo</code>, with the <code>ApplicationSetting</code> interface is implemented by a <code>ApplicationSettingsJdo</code> entity.</p>
+<p>In the case of <code>ApplicationSettingsService</code>, the service is implemented by <code>ApplicationSettingsServiceJdo</code>, with the <code>ApplicationSetting</code> interface implemented by a <code>ApplicationSettingsJdo</code> entity.</p>
 
 <p>The service also provides the ability to create list all existing settings, create new settings (of whichever datatype), update settings, and to delete settings.</p>
 
@@ -264,7 +264,7 @@
 
 <h2>User Settings</h2>
 
-<p>In the case of <code>UserSettingsService</code>, the service is implemented by <code>UserSettingsServiceJdo</code>, with the <code>UserSetting</code> interface is implemented by a <code>UserSettingsJdo</code> entity.</p>
+<p>In the case of <code>UserSettingsService</code>, the service is implemented by <code>UserSettingsServiceJdo</code>, with the <code>UserSetting</code> interface implemented by a <code>UserSettingsJdo</code> entity.</p>
 
 <p>As for application settings, the user settings service also provides the ability to create list all existing settings, create new settings (of whichever datatype), update settings, and to delete settings.</p>
 
@@ -277,7 +277,7 @@
 <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,\
+             org.apache.isis.objectstore.jdo.applib.service.settings.UserSettingsServiceJdo,\
               ...
 </pre>
 

Modified: websites/staging/isis/trunk/content/core/services/about.html
==============================================================================
--- websites/staging/isis/trunk/content/core/services/about.html (original)
+++ websites/staging/isis/trunk/content/core/services/about.html Sat Jun  8 08:42:16 2013
@@ -260,6 +260,7 @@
 <li><a href="bookmark-service.html">Bookmark Service</a></li>
 <li><a href="exception-recognizers.html">Exception Recognizers</a></li>
 <li><a href="publishing-service.html">Publishing Service</a></li>
+<li><a href="settings-services.html">Settings Services</a> [1.3.0-SNAPSHOT]</li>
 </ul>
 
 

Modified: websites/staging/isis/trunk/content/core/services/settings-services.html
==============================================================================
--- websites/staging/isis/trunk/content/core/services/settings-services.html (original)
+++ websites/staging/isis/trunk/content/core/services/settings-services.html Sat Jun  8 08:42:16 2013
@@ -254,7 +254,7 @@
 
 <p>The <code>ApplicationSettingsService</code> and the <code>UserSettingsService</code> are two similar services that provide the ability to store either configuration settings.  With <code>ApplicationSettingsService</code> these settings have global scope; for the <code>UserSettingsService</code> the settings are stored per user.</p>
 
-<p>The core applib defines only interfaces and some convenience abstract classes.  The JDO objectstore provides an [implementation](../../components/objectstores/jdo/, alternatively you could write your own implementation.</p>
+<p>The core applib defines only interfaces and some convenience abstract classes.  The JDO objectstore provides an <a href="../../components/objectstores/jdo/settings-services-jdo.html">implementation</a>, alternatively you could write your own implementation.</p>
 
 <h2>ApplicationSettingsService</h2>
 
@@ -291,9 +291,7 @@
 <p>The API defined by <code>UserSettingsService</code> is:</p>
 
 <pre><code>public interface UserSettingsService {
-    UserSetting find(
-        @Named("User") String user, 
-        @Named("Key") String key);
+    UserSetting find(@Named("User") String user, @Named("Key") String key);
 }
 </code></pre>