hibernate / hibernate-models

An abstraction over "reflection" and annotations
Apache License 2.0
2 stars 5 forks source link

Investigate alternative approach to AnnotationUsage using Annotation interface subclassing #78

Closed sebersole closed 1 month ago

sebersole commented 1 month ago

In simplistic form, investigate

class EntityImpl implements jakarta.persistence.Entity {
    String name;

    @Override
    public String name() { return name; }
    public void name(String name) { this.name = name; }
}