|
Did this page help you?Yes No Tell us about it... |
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Retention(value=RUNTIME) @Target(value=METHOD) @Deprecated public @interface DynamoDBMarshalling
Annotation to mark a property as using a custom marshaller. This is required
when storing anything other than String
s, Number
s, and
Set
s of the same to DynamoDB. Any object that can be converted into a
String representation and vice versa can be saved in this manner.
DynamoDBMarshaller
,
JsonMarshaller
Required Element Summary | |
---|---|
Class<? extends DynamoDBMarshaller<? extends Object>> |
marshallerClass
Deprecated. The class of the Marshaller that converts this property to and from a String. |
Element Detail |
---|
public abstract Class<? extends DynamoDBMarshaller<? extends Object>> marshallerClass
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |