Catatumbo - Property Annotation
import com.jmethods.catatumbo.Entity;
import com.jmethods.catatumbo.Identifier;
import com.jmethods.catatumbo.Property;
@Entity
public class Person {
@Identifier(autoGenerated=false)
private String emailAddress;
@Property(name="fname")
private String firstName;
//Other members of Person go here. For example, lastName, date of birth and
//their corresponding accessor and mutator methods.
}