Catatumbo - Embeddable Annotation
import com.jmethods.catatumbo.Embeddable;
import com.jmethods.catatumbo.Property;
@Embeddable
public class Address {
@Property(indexed = false)
private String street;
private String city;
private String state;
private String zip;
//Getters and Setters for the above fields
}