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 2014/02/11 00:50:14 UTC

svn commit: r897293 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/how-tos/how-to-01-160-How-to-create-or-delete-objects-within-your-code.html

Author: buildbot
Date: Mon Feb 10 23:50:14 2014
New Revision: 897293

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/how-tos/how-to-01-160-How-to-create-or-delete-objects-within-your-code.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 10 23:50:14 2014
@@ -1 +1 @@
-1566864
+1566866

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 10 23:50:14 2014
@@ -1 +1 @@
-1566864
+1566866

Modified: websites/staging/isis/trunk/content/how-tos/how-to-01-160-How-to-create-or-delete-objects-within-your-code.html
==============================================================================
--- websites/staging/isis/trunk/content/how-tos/how-to-01-160-How-to-create-or-delete-objects-within-your-code.html (original)
+++ websites/staging/isis/trunk/content/how-tos/how-to-01-160-How-to-create-or-delete-objects-within-your-code.html Mon Feb 10 23:50:14 2014
@@ -284,7 +284,7 @@ important that the framework is made awa
 object - in order that it may be persisted to the object store, and in
 order that any services that the new object needs are injected into it.</p>
 
-<p>Just specifying <code>new Customer()</code>, for example, will create a <code>Customer</code> object, but that object will <em>not</em> be known to the framework.  Such an object <em>can</em> be persisted by the framework.  However any services will not be injected into the object until such time.  Also, the <a href="how-to-03-017-How-to-specify-default-value-of-an-object-property.html">default value for any properties</a> will not be setup, nor will the <a href="how-to-07-070-How-to-hook-into-the-object-lifecycle-using-callbacks.html">created callback</a> be called.</p>
+<p>Just specifying <code>new Customer()</code>, for example, will create a <code>Customer</code> object, but that object will <em>not</em> be known to the framework.  Such an object <em>can</em> be persisted by the framework.  However any services will not be injected into the object until such time.  Also, the <a href="how-to-03-017-How-to-specify-default-value-of-an-object-property.html">default value for any properties</a> will not be setup, nor will the <a href="../reference/object-lifecycle-callbacks.html">created callback</a> be called.</p>
 
 <p>Therefore, the recommended way to instantiate an object is to do so through the framework.  However, since we do
 not want to couple our domain objects too closely to Isis, we use the