summaryrefslogtreecommitdiff
path: root/src/main/java/com/amazon/carbonado/Nullable.java
diff options
context:
space:
mode:
authorBrian S. O'Neill <bronee@gmail.com>2008-05-25 01:18:02 +0000
committerBrian S. O'Neill <bronee@gmail.com>2008-05-25 01:18:02 +0000
commit7ac92c3956196faafc8e613b62b7278334137928 (patch)
tree910ebf8bf49a67c721a60034edc7f482da69c2f6 /src/main/java/com/amazon/carbonado/Nullable.java
parentba9be47830210ca040a7245ac0753a6efe865430 (diff)
Added comment regarding independent nullable properties.
Diffstat (limited to 'src/main/java/com/amazon/carbonado/Nullable.java')
-rw-r--r--src/main/java/com/amazon/carbonado/Nullable.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/com/amazon/carbonado/Nullable.java b/src/main/java/com/amazon/carbonado/Nullable.java
index 4ce63ec..54932e0 100644
--- a/src/main/java/com/amazon/carbonado/Nullable.java
+++ b/src/main/java/com/amazon/carbonado/Nullable.java
@@ -36,6 +36,13 @@ import java.lang.annotation.*;
* }
* </pre>
*
+ * <p>If the repository does not allow a property to be declared as nullable
+ * because the underlying schema differs, it can be also annotated as {@link
+ * Independent}. This makes it easier for a common set of Storables to interact
+ * with schemas which are slightly different. Attempting to persist null into a
+ * property for which null is not allowed will likely result in a constraint
+ * exception.
+ *
* @author Brian S O'Neill
*/
@Documented