sai-pullabhotla
8/26/2016 - 1:00 AM

Catatumbo - Embeddable Annotation

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 

}