summaryrefslogtreecommitdiff
path: root/src/test/java/com/amazon/carbonado/stored
diff options
context:
space:
mode:
authorBrian S. O'Neill <bronee@gmail.com>2008-07-25 06:13:20 +0000
committerBrian S. O'Neill <bronee@gmail.com>2008-07-25 06:13:20 +0000
commit799ead1e727d9abe87d55d890644c409b337f524 (patch)
treea8936526fb896c147a3922c370549093ff882e28 /src/test/java/com/amazon/carbonado/stored
parentc991e3fc885200737682f088969845f43c0c4f4c (diff)
Complete BigDecimal support -- ensure that failed update rolls back normalization.
Diffstat (limited to 'src/test/java/com/amazon/carbonado/stored')
-rw-r--r--src/test/java/com/amazon/carbonado/stored/WithBigDecimalVersioned.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/test/java/com/amazon/carbonado/stored/WithBigDecimalVersioned.java b/src/test/java/com/amazon/carbonado/stored/WithBigDecimalVersioned.java
new file mode 100644
index 0000000..01ccfc7
--- /dev/null
+++ b/src/test/java/com/amazon/carbonado/stored/WithBigDecimalVersioned.java
@@ -0,0 +1,43 @@
+/*
+ * Copyright 2008 Amazon Technologies, Inc. or its affiliates.
+ * Amazon, Amazon.com and Carbonado are trademarks or registered trademarks
+ * of Amazon Technologies, Inc. or its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.amazon.carbonado.stored;
+
+import java.math.BigDecimal;
+
+import com.amazon.carbonado.*;
+
+/**
+ *
+ *
+ * @author Brian S O'Neill
+ */
+@PrimaryKey("id")
+@Indexes(@Index("number"))
+public interface WithBigDecimalVersioned extends Storable {
+ int getId();
+ void setId(int id);
+
+ @Nullable
+ BigDecimal getNumber();
+ void setNumber(BigDecimal number);
+
+ @Version
+ int getVersion();
+ void setVersion(int version);
+}