I have this model:
public class Foo{
@Field(type = FieldType.String, store = true)
String color;
}
right now it maps to the field "color" in elasticsearch document. Can I map it to another field: "shirtColor"? Maybe through an annotation?