Author: buildbot
Date: Mon May 26 17:56:03 2014
New Revision: 910019
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/mapping-blobs.html
Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon May 26 17:56:03 2014
@@ -1 +1 @@
-1597618
+1597619
Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon May 26 17:56:03 2014
@@ -1 +1 @@
-1597618
+1597619
Modified:
websites/staging/isis/trunk/content/components/objectstores/jdo/mapping-blobs.html
==============================================================================
---
websites/staging/isis/trunk/content/components/objectstores/jdo/mapping-blobs.html
(original)
+++
websites/staging/isis/trunk/content/components/objectstores/jdo/mapping-blobs.html
Mon May 26 17:56:03 2014
@@ -426,7 +426,7 @@
<p>The three <code>@javax.jdo.annotations.Column</code> annotations are
required because the mapping classes that Isis provides (<a
href="https://github.com/apache/isis/blob/isis-1.4.0/component/objectstore/jdo/jdo-datanucleus/src/main/java/org/apache/isis/objectstore/jdo/datanucleus/valuetypes/IsisBlobMapping.java#L59">IsisBlobMapping</a>
and <a
href="https://github.com/apache/isis/blob/isis-1.4.0/component/objectstore/jdo/jdo-datanucleus/src/main/java/org/apache/isis/objectstore/jdo/datanucleus/valuetypes/IsisClobMapping.java#L59">IsisClobMapping</a>)
map to 3 columns. (It is not an error to omit these <code>@Column</code>
annotations, but without them the names of the table columns are simply
suffixed <code>_0</code>, <code>_1</code>, <code>_2</code> etc.</p>
-<p>If the <code>Blob</code> or <code>Clob</code> is mandatory, then use:</p>
+<p>If the <code>Blob</code> is mandatory, then use:</p>
<pre>
@javax.jdo.annotations.Persistent(defaultFetchGroup="false", columns = {
@@ -461,7 +461,7 @@
})
private Clob doc;
- @Mandatory
+ @Optional
public Clob getDoc() {
return doc;
}