|
12 | 12 | @Target(ElementType.FIELD)
|
13 | 13 | public @interface AerospikeEmbed {
|
14 | 14 |
|
15 |
| - enum EmbedType { |
16 |
| - LIST, |
17 |
| - MAP, |
18 |
| - DEFAULT |
19 |
| - } |
| 15 | + enum EmbedType { |
| 16 | + LIST, |
| 17 | + MAP, |
| 18 | + DEFAULT |
| 19 | + } |
20 | 20 |
|
21 |
| - EmbedType type() default EmbedType.DEFAULT; |
22 |
| - /** |
23 |
| - * The elementType is used for sub-elements. For example, if there is: |
24 |
| - * <pre> |
25 |
| - * @AerospikeBin |
26 |
| - * @AerospikeEmbed(elementType = EmbedType.LIST) |
27 |
| - * private List<Account> accounts; |
28 |
| - * </pre> |
29 |
| - * then the objects will be stored in the database as lists of lists, rather than lists of maps. |
30 |
| - */ |
31 |
| - EmbedType elementType() default EmbedType.DEFAULT; |
32 |
| - |
33 |
| - /** |
34 |
| - * Determine whether the key should be saved in the sub-object. This is used only for translating |
35 |
| - * a list of objects in Java into a map of objects which contains a list. For example:<p/> |
36 |
| - * <pre> |
37 |
| - * public class Transaction { |
38 |
| - * private String name; |
39 |
| - * private int value; |
40 |
| - * @AerospikeKey |
41 |
| - * private long time; |
42 |
| - * |
43 |
| - * public Transaction() {} |
44 |
| - * public Transaction(String name, int value, long time) { |
45 |
| - * super(); |
46 |
| - * this.name = name; |
47 |
| - * this.value = value; |
48 |
| - * this.time = time; |
49 |
| - * } |
50 |
| - * } |
51 |
| - * |
52 |
| - * ... |
53 |
| - * |
54 |
| - * @AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST) |
55 |
| - * public List<Transaction> txns; |
56 |
| - * </pre> |
57 |
| - * |
58 |
| - * Assume elements have been inserted into the list as follows: |
59 |
| - * <pre> |
60 |
| - * account.txns.add(new Transaction("details1", 100, 101)); |
61 |
| - * account.txns.add(new Transaction("details2", 200, 99)); |
62 |
| - * account.txns.add(new Transaction("details3", 300, 1010)); |
63 |
| - * </pre> |
64 |
| - * |
65 |
| - * Since these elements are stored in a map, the AerospikeKey field (time in this case) will be the key to the map. |
66 |
| - * By default, the key is then dropped from the list as it is not needed, resulting in: |
67 |
| - * <pre> |
68 |
| - * KEY_ORDERED_MAP('{99:["details2", 200], 101:["details1", 100], 1010:["details3", 300]}') |
69 |
| - * </pre> |
70 |
| - * |
71 |
| - * If it is desired for the key to be part of the list as well, this value can be set to <code>true</code>: |
72 |
| - * |
73 |
| - * <pre> |
74 |
| - * @AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST, saveKey = true) |
75 |
| - * public List<Transaction> txns; |
76 |
| - * </pre> |
77 |
| - * |
78 |
| - * This would result in: |
79 |
| - * <pre> |
80 |
| - * KEY_ORDERED_MAP('{99:["details2", 99, 200], 101:["details1", 101, 100], 1010:["details3", 1010, 300]}') |
81 |
| - * </pre> |
82 |
| - */ |
83 |
| - boolean saveKey() default false; |
| 21 | + EmbedType type() default EmbedType.DEFAULT; |
| 22 | + |
| 23 | + /** |
| 24 | + * The elementType is used for sub-elements. For example, if there is: |
| 25 | + * <pre> |
| 26 | + * @AerospikeBin |
| 27 | + * @AerospikeEmbed(elementType = EmbedType.LIST) |
| 28 | + * private List<Account> accounts; |
| 29 | + * </pre> |
| 30 | + * then the objects will be stored in the database as lists of lists, rather than lists of maps. |
| 31 | + */ |
| 32 | + EmbedType elementType() default EmbedType.DEFAULT; |
| 33 | + |
| 34 | + /** |
| 35 | + * Determine whether the key should be saved in the sub-object. This is used only for translating |
| 36 | + * a list of objects in Java into a map of objects which contains a list. For example:<p/> |
| 37 | + * <pre> |
| 38 | + * public class Transaction { |
| 39 | + * private String name; |
| 40 | + * private int value; |
| 41 | + * @AerospikeKey |
| 42 | + * private long time; |
| 43 | + * |
| 44 | + * public Transaction() {} |
| 45 | + * public Transaction(String name, int value, long time) { |
| 46 | + * super(); |
| 47 | + * this.name = name; |
| 48 | + * this.value = value; |
| 49 | + * this.time = time; |
| 50 | + * } |
| 51 | + * } |
| 52 | + * |
| 53 | + * ... |
| 54 | + * |
| 55 | + * @AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST) |
| 56 | + * public List<Transaction> txns; |
| 57 | + * </pre> |
| 58 | + * <p> |
| 59 | + * Assume elements have been inserted into the list as follows: |
| 60 | + * <pre> |
| 61 | + * account.txns.add(new Transaction("details1", 100, 101)); |
| 62 | + * account.txns.add(new Transaction("details2", 200, 99)); |
| 63 | + * account.txns.add(new Transaction("details3", 300, 1010)); |
| 64 | + * </pre> |
| 65 | + * <p> |
| 66 | + * Since these elements are stored in a map, the AerospikeKey field (time in this case) will be the key to the map. |
| 67 | + * By default, the key is then dropped from the list as it is not needed, resulting in: |
| 68 | + * <pre> |
| 69 | + * KEY_ORDERED_MAP('{99:["details2", 200], 101:["details1", 100], 1010:["details3", 300]}') |
| 70 | + * </pre> |
| 71 | + * <p> |
| 72 | + * If it is desired for the key to be part of the list as well, this value can be set to <code>true</code>: |
| 73 | + * |
| 74 | + * <pre> |
| 75 | + * @AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST, saveKey = true) |
| 76 | + * public List<Transaction> txns; |
| 77 | + * </pre> |
| 78 | + * <p> |
| 79 | + * This would result in: |
| 80 | + * <pre> |
| 81 | + * KEY_ORDERED_MAP('{99:["details2", 99, 200], 101:["details1", 101, 100], 1010:["details3", 1010, 300]}') |
| 82 | + * </pre> |
| 83 | + */ |
| 84 | + boolean saveKey() default false; |
84 | 85 | }
|
0 commit comments