-
Notifications
You must be signed in to change notification settings - Fork 8
Model Annotations
Tharanga edited this page Dec 29, 2016
·
1 revision
public class Movie {
@Id
@Index
private int id;
@Index
private String title;
@Index
private String director;
private int duration;
...
- @Id annotation is used to mention identity field of the model. Each model has a unique id.
- @Index annotation is used to mention index fields of the model. Searching is perform only for index fields.