Skip to content

Commit 07994e8

Browse files
authored
Reformat code. (#73)
1 parent 67abcc3 commit 07994e8

File tree

134 files changed

+8398
-8271
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+8398
-8271
lines changed

src/main/java/com/aerospike/mapper/annotations/AerospikeBin.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
@Retention(RetentionPolicy.RUNTIME)
1212
@Target(ElementType.FIELD)
1313
public @interface AerospikeBin {
14-
/**
15-
* The name of the bin to use. If not specified, the field name is used for the bin name.
16-
*/
17-
String name() default "";
18-
boolean useAccessors() default false;
14+
/**
15+
* The name of the bin to use. If not specified, the field name is used for the bin name.
16+
*/
17+
String name() default "";
18+
19+
boolean useAccessors() default false;
1920
}

src/main/java/com/aerospike/mapper/annotations/AerospikeEmbed.java

+69-68
Original file line numberDiff line numberDiff line change
@@ -12,73 +12,74 @@
1212
@Target(ElementType.FIELD)
1313
public @interface AerospikeEmbed {
1414

15-
enum EmbedType {
16-
LIST,
17-
MAP,
18-
DEFAULT
19-
}
15+
enum EmbedType {
16+
LIST,
17+
MAP,
18+
DEFAULT
19+
}
2020

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-
* &#064;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-
* &#064;AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST)
55-
* public List&lt;Transaction&gt; 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-
* &#064;AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST, saveKey = true)
75-
* public List&lt;Transaction&gt; 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+
* &#064;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+
* &#064;AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST)
56+
* public List&lt;Transaction&gt; 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+
* &#064;AerospikeEmbed(type = EmbedType.MAP, elementType = EmbedType.LIST, saveKey = true)
76+
* public List&lt;Transaction&gt; 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;
8485
}

src/main/java/com/aerospike/mapper/annotations/AerospikeGetter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
@Retention(RetentionPolicy.RUNTIME)
1212
@Target(ElementType.METHOD)
1313
public @interface AerospikeGetter {
14-
/**
15-
* The name of the bin to use.
16-
*/
17-
String name();
14+
/**
15+
* The name of the bin to use.
16+
*/
17+
String name();
1818
}

src/main/java/com/aerospike/mapper/annotations/AerospikeKey.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
@Retention(RetentionPolicy.RUNTIME)
99
@Target({ElementType.FIELD, ElementType.METHOD})
1010
public @interface AerospikeKey {
11-
/**
12-
* The setter attribute is used only on Methods where the method is used to set the key on lazy object instantiation
13-
*/
14-
boolean setter() default false;
11+
/**
12+
* The setter attribute is used only on Methods where the method is used to set the key on lazy object instantiation
13+
*/
14+
boolean setter() default false;
1515
}

src/main/java/com/aerospike/mapper/annotations/AerospikeOrdinal.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
@Retention(RetentionPolicy.RUNTIME)
99
@Target({ElementType.FIELD, ElementType.METHOD})
1010
public @interface AerospikeOrdinal {
11-
int value() default 1;
11+
int value() default 1;
1212
}

src/main/java/com/aerospike/mapper/annotations/AerospikeRecord.java

+22-15
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,26 @@
88
@Retention(RetentionPolicy.RUNTIME)
99
@Target(ElementType.TYPE)
1010
public @interface AerospikeRecord {
11-
String namespace() default "";
12-
String set() default "";
13-
String shortName() default "";
14-
15-
int ttl() default 0;
16-
/**
17-
* Determine whether to add all the bins or not. If true, all bins will be added without having to map them via @AerospikeBin
18-
*/
19-
boolean mapAll() default true;
20-
int version() default 1;
21-
boolean sendKey() default false;
22-
boolean durableDelete() default false;
23-
24-
String factoryClass() default "";
25-
String factoryMethod() default "";
11+
String namespace() default "";
12+
13+
String set() default "";
14+
15+
String shortName() default "";
16+
17+
int ttl() default 0;
18+
19+
/**
20+
* Determine whether to add all the bins or not. If true, all bins will be added without having to map them via @AerospikeBin
21+
*/
22+
boolean mapAll() default true;
23+
24+
int version() default 1;
25+
26+
boolean sendKey() default false;
27+
28+
boolean durableDelete() default false;
29+
30+
String factoryClass() default "";
31+
32+
String factoryMethod() default "";
2633
}

src/main/java/com/aerospike/mapper/annotations/AerospikeReference.java

+17-16
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,22 @@
1111
@Retention(RetentionPolicy.RUNTIME)
1212
@Target(ElementType.FIELD)
1313
public @interface AerospikeReference {
14-
/**
15-
* Fields marked as being lazy references will not be read from Aerospike at runtime when the parent class is
16-
* read. Instead, a new object with just the key populated will be created
17-
*/
18-
boolean lazy() default false;
19-
/**
20-
* When a reference is to be loaded, it can either be loaded inline or it can be loaded via a batch load. The
21-
* batch load is typically significantly more efficient. Set this flag to <pre>false</pre> to prevent the batch load
22-
*/
23-
boolean batchLoad() default true;
24-
25-
enum ReferenceType {
26-
ID,
27-
DIGEST
28-
}
14+
/**
15+
* Fields marked as being lazy references will not be read from Aerospike at runtime when the parent class is
16+
* read. Instead, a new object with just the key populated will be created
17+
*/
18+
boolean lazy() default false;
2919

30-
ReferenceType type() default ReferenceType.ID;
20+
/**
21+
* When a reference is to be loaded, it can either be loaded inline or it can be loaded via a batch load. The
22+
* batch load is typically significantly more efficient. Set this flag to <pre>false</pre> to prevent the batch load
23+
*/
24+
boolean batchLoad() default true;
25+
26+
enum ReferenceType {
27+
ID,
28+
DIGEST
29+
}
30+
31+
ReferenceType type() default ReferenceType.ID;
3132
}

src/main/java/com/aerospike/mapper/annotations/AerospikeSetter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
@Retention(RetentionPolicy.RUNTIME)
1212
@Target(ElementType.METHOD)
1313
public @interface AerospikeSetter {
14-
/**
15-
* The name of the bin to use.
16-
*/
17-
String name();
14+
/**
15+
* The name of the bin to use.
16+
*/
17+
String name();
1818
}

src/main/java/com/aerospike/mapper/annotations/AerospikeVersion.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Specify the version of a record. Records without the @AerospikeVersion annotation are assumed to be version 1 of a record.
1010
* <p/>
1111
* Versions are typically used for embedded records to be stored in a list. Since a list item has no name associated with it,
12-
* the order of the attributes determines which part of the object to map the value to. By default the items are mapped
12+
* the order of the attributes determines which part of the object to map the value to. By default the items are mapped
1313
* alphabetically, but this presents issues is an item is added or removed from the object.
1414
* <p/>
1515
* For example, consider a Person object with an Account stored as a list: <p/>
@@ -21,7 +21,7 @@
2121
* &#64;AerospikeBin
2222
* private int balance
2323
* }
24-
*
24+
*
2525
* &#64;AerospikeRecord(namespace = "test", set = "people")
2626
* public class Person {
2727
* &#64;AerospikeBin
@@ -31,13 +31,13 @@
3131
* private Account account;
3232
* }
3333
* </pre>
34-
*
35-
* @author timfaulkes
3634
*
35+
* @author timfaulkes
3736
*/
3837
@Retention(RetentionPolicy.RUNTIME)
39-
@Target( {ElementType.FIELD, ElementType.METHOD})
38+
@Target({ElementType.FIELD, ElementType.METHOD})
4039
public @interface AerospikeVersion {
41-
int min() default 1;
42-
int max() default Integer.MAX_VALUE;
40+
int min() default 1;
41+
42+
int max() default Integer.MAX_VALUE;
4343
}

src/main/java/com/aerospike/mapper/annotations/ParamFrom.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
@Retention(RetentionPolicy.RUNTIME)
1212
@Target(ElementType.PARAMETER)
1313
public @interface ParamFrom {
14-
/**
15-
* The name of the bin to use.
16-
*/
17-
String value();
14+
/**
15+
* The name of the bin to use.
16+
*/
17+
String value();
1818
}

src/main/java/com/aerospike/mapper/exceptions/NotAnnotatedClass.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
public class NotAnnotatedClass extends AerospikeException {
66

7-
private static final long serialVersionUID = -4781097961894057707L;
8-
public static final int REASON_CODE = -109;
9-
public NotAnnotatedClass(String description) {
10-
super(REASON_CODE, description);
11-
}
7+
private static final long serialVersionUID = -4781097961894057707L;
8+
public static final int REASON_CODE = -109;
129

10+
public NotAnnotatedClass(String description) {
11+
super(REASON_CODE, description);
12+
}
1313
}

0 commit comments

Comments
 (0)