@Retention(value=RUNTIME) @Target(value={FIELD,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 © 2016. All rights reserved.