@Retention(value=RUNTIME) @Target(value={FIELD,METHOD}) public @interface KeyProperty
Parameter | Required | Default | Description |
---|---|---|---|
value | no | id | The key property value. |
// The key property for User objects within the users collection is theuserName
attribute. @KeyProperty( value = "userName" ) protected Listusers = null;
public abstract String value
Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.