summaryrefslogtreecommitdiff
path: root/src/main/java/com/amazon/carbonado/synthetic/SyntheticKey.java
diff options
context:
space:
mode:
authorBrian S. O'Neill <bronee@gmail.com>2006-08-30 02:11:33 +0000
committerBrian S. O'Neill <bronee@gmail.com>2006-08-30 02:11:33 +0000
commit60e2cc6786962037e5c6ee09b7dc3eae38ee5db7 (patch)
tree480b4edc0d8e95e3869682d9cdafd0501dc732c9 /src/main/java/com/amazon/carbonado/synthetic/SyntheticKey.java
parent41e062b7896bfae5ecd1d75f7b99305b7b2e6ce8 (diff)
Add support for creating synthetic Storables
Diffstat (limited to 'src/main/java/com/amazon/carbonado/synthetic/SyntheticKey.java')
-rw-r--r--src/main/java/com/amazon/carbonado/synthetic/SyntheticKey.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/main/java/com/amazon/carbonado/synthetic/SyntheticKey.java b/src/main/java/com/amazon/carbonado/synthetic/SyntheticKey.java
new file mode 100644
index 0000000..ede8de8
--- /dev/null
+++ b/src/main/java/com/amazon/carbonado/synthetic/SyntheticKey.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2006 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.synthetic;
+
+/**
+ * Specification of a collection of properties which will participate in a key. Each
+ * property has its own direction specification.
+ *
+ * @author Brian S O'Neill
+ */
+public class SyntheticKey extends SyntheticPropertyList {
+ SyntheticKey() {
+ super();
+ }
+}