@Retention(value=RUNTIME) @Target(value={java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.METHOD}) public @interface RiakKey
The type must be a String
.
public class MyPojo { @RiakKey public String key; } public class AnotherPojo { private String key; @RiakKey public String getKey() { return key; } @RiakKey public void setKey(String key) { this.key = key; } }
Copyright © 2014. All rights reserved.